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-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .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-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upoYbAtFZN {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upoYbAtFZN H1 {
  text-align: center;
}
.cid-uDmvelGjwn {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmvelGjwn .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmvelGjwn .video-block {
    width: 100% !important;
  }
}
.cid-upp2iV5xMQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upp1hc0a6c {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upp1hc0a6c .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upp1hc0a6c .text-block {
  position: relative;
  z-index: 0;
}
.cid-upp1hc0a6c .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upp1hc0a6c .box {
  left: 20%;
}
.cid-upp1hc0a6c .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upp1hc0a6c .mbr-section-text,
.cid-upp1hc0a6c .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upp1hc0a6c .text-box {
    display: none;
  }
  .cid-upp1hc0a6c .mbr-section-title,
  .cid-upp1hc0a6c .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upp1hc0a6c .box {
    display: none;
  }
  .cid-upp1hc0a6c .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upp1hc0a6c .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upp1hc0a6c .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upp1hc0a6c .mbr-section-text {
  color: #c1c1c1;
}
.cid-upp1hc0a6c .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upp1hc0a6c .mbr-section-text DIV {
  text-align: center;
}
.cid-upp2dd7VFO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upp5BDk2Se {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upp5BDk2Se h2 {
  text-align: left;
}
.cid-upp5BDk2Se h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upp5BDk2Se p {
  color: #767676;
  text-align: left;
}
.cid-upp5BDk2Se .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upp5BDk2Se .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upp5BDk2Se .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upp5BDk2Se .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upp5BDk2Se .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upp5BDk2Se .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upp5BDk2Se .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upp5BDk2Se .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upp5BDk2Se .card-img span {
    font-size: 40px !important;
  }
}
.cid-upp5BDk2Se H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upp5BDk2Se P {
  color: #ffffff;
  text-align: left;
}
.cid-upp5BDk2Se H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uppdArpJVN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uppdArpJVN H1 {
  color: #000000;
}
.cid-uxf3CKvC7I {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxf3CKvC7I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxf3CKvC7I .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxf3CKvC7I .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxf3CKvC7I .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxf3CKvC7I .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxf3CKvC7I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxf3CKvC7I .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxf3CKvC7I .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxf3CKvC7I .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxf3CKvC7I .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxf3CKvC7I .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-uxf3CKvC7I .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxf3CKvC7I .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxf3CKvC7I .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxf3CKvC7I .mbr-text,
.cid-uxf3CKvC7I .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxf3DtWymH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxf3DtWymH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxf3DtWymH .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxf3DtWymH .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxf3DtWymH .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxf3DtWymH .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxf3DtWymH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxf3DtWymH .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxf3DtWymH .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxf3DtWymH .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxf3DtWymH .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxf3DtWymH .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-uxf3DtWymH .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxf3DtWymH .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxf3DtWymH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxf3DtWymH .mbr-text,
.cid-uxf3DtWymH .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-uxf3F6CjW4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxf3F6CjW4 h2 {
  text-align: left;
}
.cid-uxf3F6CjW4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxf3F6CjW4 p {
  color: #767676;
  text-align: left;
}
.cid-uxf3F6CjW4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxf3F6CjW4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxf3F6CjW4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxf3F6CjW4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxf3F6CjW4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxf3F6CjW4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxf3F6CjW4 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxf3F6CjW4 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxf3F6CjW4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxf3F6CjW4 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxf3F6CjW4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upoYbCStm2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upoYbCStm2 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upoYbCStm2 .text-block {
  position: relative;
  z-index: 0;
}
.cid-upoYbCStm2 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upoYbCStm2 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upoYbCStm2 .box {
  right: 20%;
}
.cid-upoYbCStm2 .text-box {
  right: 0;
}
.cid-upoYbCStm2 .mbr-section-title,
.cid-upoYbCStm2 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upoYbCStm2 .text-box {
    display: none;
  }
  .cid-upoYbCStm2 .mbr-section-title,
  .cid-upoYbCStm2 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upoYbCStm2 .box {
    display: none;
  }
  .cid-upoYbCStm2 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upoYbCStm2 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upoYbCStm2 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upoYbCStm2 .mbr-section-text {
  color: #c1c1c1;
}
.cid-upoYbCStm2 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upoYbCStm2 .mbr-section-text DIV {
  text-align: center;
}
.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-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-upp3v5MFmt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upp3v5MFmt .mbr-fallback-image.disabled {
  display: none;
}
.cid-upp3v5MFmt .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-upp3v5MFmt .container {
    padding: 0 16px;
  }
}
.cid-upp3v5MFmt .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upp3v5MFmt .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upp3v5MFmt .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upp3v5MFmt .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upp3v5MFmt .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upp3v5MFmt .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upp3v5MFmt .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upp3v5MFmt .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upp3v5MFmt .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upp3v5MFmt .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-upp3v5MFmt .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upp3v5MFmt .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upp3v5MFmt .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upp3v5MFmt .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upp3v5MFmt .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upp3v5MFmt .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upp3v5MFmt .dragArea.row .form-group .form-control:hover,
.cid-upp3v5MFmt .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upp3v5MFmt .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upp3v5MFmt .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upp3v5MFmt .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upp3v5MFmt .mbr-title {
  color: #ffffff;
}
.cid-upp3v5MFmt .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upp3v5MFmt .mbr-section-subtitle {
  color: #08323C;
}
.cid-upp3v5MFmt .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upp3v5MFmt .list {
  color: #08323C;
}
.cid-upp3v5MFmt label {
  color: #08323C;
}
.cid-upp3v5MFmt H3 {
  color: #000000;
}
.cid-upp3v5MFmt P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upuwu8ZuNN {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuwu8ZuNN H1 {
  text-align: center;
}
.cid-uDmwxREaTd {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmwxREaTd .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmwxREaTd .video-block {
    width: 100% !important;
  }
}
.cid-upuwu9rRuv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuwu9Ms0g {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upuwu9Ms0g .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upuwu9Ms0g .text-block {
  position: relative;
  z-index: 0;
}
.cid-upuwu9Ms0g .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upuwu9Ms0g .box {
  left: 20%;
}
.cid-upuwu9Ms0g .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upuwu9Ms0g .mbr-section-text,
.cid-upuwu9Ms0g .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upuwu9Ms0g .text-box {
    display: none;
  }
  .cid-upuwu9Ms0g .mbr-section-title,
  .cid-upuwu9Ms0g .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upuwu9Ms0g .box {
    display: none;
  }
  .cid-upuwu9Ms0g .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upuwu9Ms0g .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upuwu9Ms0g .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upuwu9Ms0g .mbr-section-text {
  color: #c1c1c1;
}
.cid-upuwu9Ms0g .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upuwu9Ms0g .mbr-section-text DIV {
  text-align: center;
}
.cid-upuBRYSWTu {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuBRYSWTu H1 {
  text-align: center;
}
.cid-upuwua251A {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuwuafVHg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuwuafVHg h2 {
  text-align: left;
}
.cid-upuwuafVHg h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upuwuafVHg p {
  color: #767676;
  text-align: left;
}
.cid-upuwuafVHg .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upuwuafVHg .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upuwuafVHg .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upuwuafVHg .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upuwuafVHg .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upuwuafVHg .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upuwuafVHg .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upuwuafVHg .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upuwuafVHg .card-img span {
    font-size: 40px !important;
  }
}
.cid-upuwuafVHg H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upuwuafVHg P {
  color: #ffffff;
  text-align: left;
}
.cid-upuwuafVHg H2 {
  color: #ffffff;
  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-upuwuaBfoy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upuwuaBfoy H1 {
  color: #000000;
}
.cid-upwdn0yqmc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upwdn0yqmc .mbr-fallback-image.disabled {
  display: none;
}
.cid-upwdn0yqmc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upwdn0yqmc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upwdn0yqmc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upwdn0yqmc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upwdn0yqmc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upwdn0yqmc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upwdn0yqmc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upwdn0yqmc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upwdn0yqmc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upwdn0yqmc .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-upwdn0yqmc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upwdn0yqmc .image-wrapper {
    padding: 1rem;
  }
}
.cid-upwdn0yqmc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upwdn0yqmc .mbr-text,
.cid-upwdn0yqmc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upwdnPknJM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upwdnPknJM .mbr-fallback-image.disabled {
  display: none;
}
.cid-upwdnPknJM .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upwdnPknJM .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upwdnPknJM .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upwdnPknJM .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upwdnPknJM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upwdnPknJM .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upwdnPknJM .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upwdnPknJM .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upwdnPknJM .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upwdnPknJM .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-upwdnPknJM .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upwdnPknJM .image-wrapper {
    padding: 1rem;
  }
}
.cid-upwdnPknJM .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upwdnPknJM .mbr-text,
.cid-upwdnPknJM .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8BNxBpbT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8BNxBpbT 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-upuwubRO8M {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upuwubRO8M .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upuwubRO8M .text-block {
  position: relative;
  z-index: 0;
}
.cid-upuwubRO8M .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upuwubRO8M .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upuwubRO8M .box {
  right: 20%;
}
.cid-upuwubRO8M .text-box {
  right: 0;
}
.cid-upuwubRO8M .mbr-section-title,
.cid-upuwubRO8M .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upuwubRO8M .text-box {
    display: none;
  }
  .cid-upuwubRO8M .mbr-section-title,
  .cid-upuwubRO8M .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upuwubRO8M .box {
    display: none;
  }
  .cid-upuwubRO8M .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upuwubRO8M .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upuwubRO8M .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upuwubRO8M .mbr-section-text {
  color: #c1c1c1;
}
.cid-upuwubRO8M .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upuwubRO8M .mbr-section-text DIV {
  text-align: center;
}
.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-upuwud48HB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upuwud48HB .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuwud48HB .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-upuwud48HB .container {
    padding: 0 16px;
  }
}
.cid-upuwud48HB .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upuwud48HB .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upuwud48HB .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upuwud48HB .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upuwud48HB .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upuwud48HB .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upuwud48HB .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upuwud48HB .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upuwud48HB .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upuwud48HB .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-upuwud48HB .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upuwud48HB .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upuwud48HB .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upuwud48HB .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upuwud48HB .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upuwud48HB .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upuwud48HB .dragArea.row .form-group .form-control:hover,
.cid-upuwud48HB .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upuwud48HB .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upuwud48HB .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upuwud48HB .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upuwud48HB .mbr-title {
  color: #ffffff;
}
.cid-upuwud48HB .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upuwud48HB .mbr-section-subtitle {
  color: #08323C;
}
.cid-upuwud48HB .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upuwud48HB .list {
  color: #08323C;
}
.cid-upuwud48HB label {
  color: #08323C;
}
.cid-upuwud48HB H3 {
  color: #000000;
}
.cid-upuwud48HB P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upuF4kerBA {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuF4kerBA H1 {
  text-align: center;
}
.cid-uDmx2hK9p9 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmx2hK9p9 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmx2hK9p9 .video-block {
    width: 100% !important;
  }
}
.cid-upuF4kwhkO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuF4kNjDS {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upuF4kNjDS .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upuF4kNjDS .text-block {
  position: relative;
  z-index: 0;
}
.cid-upuF4kNjDS .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upuF4kNjDS .box {
  left: 20%;
}
.cid-upuF4kNjDS .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upuF4kNjDS .mbr-section-text,
.cid-upuF4kNjDS .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upuF4kNjDS .text-box {
    display: none;
  }
  .cid-upuF4kNjDS .mbr-section-title,
  .cid-upuF4kNjDS .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upuF4kNjDS .box {
    display: none;
  }
  .cid-upuF4kNjDS .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upuF4kNjDS .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upuF4kNjDS .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upuF4kNjDS .mbr-section-text {
  color: #c1c1c1;
}
.cid-upuF4kNjDS .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upuF4kNjDS .mbr-section-text DIV {
  text-align: center;
}
.cid-upuF4l23NX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuF4l23NX H1 {
  text-align: center;
}
.cid-upuF4lfssQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuF4lsJAv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuF4lsJAv h2 {
  text-align: left;
}
.cid-upuF4lsJAv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upuF4lsJAv p {
  color: #767676;
  text-align: left;
}
.cid-upuF4lsJAv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upuF4lsJAv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upuF4lsJAv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upuF4lsJAv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upuF4lsJAv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upuF4lsJAv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upuF4lsJAv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upuF4lsJAv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upuF4lsJAv .card-img span {
    font-size: 40px !important;
  }
}
.cid-upuF4lsJAv H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upuF4lsJAv P {
  color: #ffffff;
  text-align: left;
}
.cid-upuF4lsJAv H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upuF4lOyMG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upuF4lOyMG H1 {
  color: #000000;
}
.cid-upuF4m1fVp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upuF4m1fVp .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuF4m1fVp .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upuF4m1fVp .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upuF4m1fVp .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upuF4m1fVp .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upuF4m1fVp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuF4m1fVp .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upuF4m1fVp .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upuF4m1fVp .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upuF4m1fVp .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upuF4m1fVp .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-upuF4m1fVp .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upuF4m1fVp .image-wrapper {
    padding: 1rem;
  }
}
.cid-upuF4m1fVp .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upuF4m1fVp .mbr-text,
.cid-upuF4m1fVp .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upuF4mtQCE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upuF4mtQCE H1 {
  color: #000000;
}
.cid-uxffQZeHY5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxffQZeHY5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxffQZeHY5 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxffQZeHY5 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxffQZeHY5 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxffQZeHY5 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxffQZeHY5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxffQZeHY5 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxffQZeHY5 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxffQZeHY5 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxffQZeHY5 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxffQZeHY5 .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-uxffQZeHY5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxffQZeHY5 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxffQZeHY5 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxffQZeHY5 .mbr-text,
.cid-uxffQZeHY5 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxffRD9L76 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxffRD9L76 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxffRD9L76 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxffRD9L76 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxffRD9L76 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxffRD9L76 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxffRD9L76 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxffRD9L76 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxffRD9L76 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxffRD9L76 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxffRD9L76 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxffRD9L76 .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-uxffRD9L76 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxffRD9L76 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxffRD9L76 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxffRD9L76 .mbr-text,
.cid-uxffRD9L76 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwhGRXejLG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwhGRXejLG H1 {
  color: #000000;
}
.cid-uwhGPV7WBM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwhGPV7WBM h2 {
  text-align: left;
}
.cid-uwhGPV7WBM h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwhGPV7WBM p {
  color: #767676;
  text-align: left;
}
.cid-uwhGPV7WBM .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwhGPV7WBM .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwhGPV7WBM .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwhGPV7WBM .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwhGPV7WBM .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwhGPV7WBM .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwhGPV7WBM .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwhGPV7WBM .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwhGPV7WBM .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwhGPV7WBM .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwhGPV7WBM .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwhGQNulcA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwhGQNulcA H1 {
  color: #000000;
}
.cid-upuF4nGc3L {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upuF4nGc3L .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upuF4nGc3L .text-block {
  position: relative;
  z-index: 0;
}
.cid-upuF4nGc3L .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upuF4nGc3L .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upuF4nGc3L .box {
  right: 20%;
}
.cid-upuF4nGc3L .text-box {
  right: 0;
}
.cid-upuF4nGc3L .mbr-section-title,
.cid-upuF4nGc3L .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upuF4nGc3L .text-box {
    display: none;
  }
  .cid-upuF4nGc3L .mbr-section-title,
  .cid-upuF4nGc3L .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upuF4nGc3L .box {
    display: none;
  }
  .cid-upuF4nGc3L .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upuF4nGc3L .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upuF4nGc3L .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upuF4nGc3L .mbr-section-text {
  color: #c1c1c1;
}
.cid-upuF4nGc3L .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upuF4nGc3L .mbr-section-text DIV {
  text-align: center;
}
.cid-upuF4nWA3m {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuF4oc4sl {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upuF4oc4sl h2 {
  text-align: left;
}
.cid-upuF4oc4sl h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upuF4oc4sl p {
  color: #767676;
  text-align: left;
}
.cid-upuF4oc4sl .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upuF4oc4sl .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upuF4oc4sl .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upuF4oc4sl .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upuF4oc4sl .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upuF4oc4sl .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upuF4oc4sl .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upuF4oc4sl .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upuF4oc4sl .card-img span {
    font-size: 40px !important;
  }
}
.cid-upuF4oc4sl .mbr-text {
  color: #232323;
}
.cid-upuF4ouZI4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upuF4ouZI4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuF4ouZI4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuF4ouZI4 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upuF4ouZI4 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upuF4ouZI4 .container {
    padding: 0 26px;
  }
}
.cid-upuF4ouZI4 .row {
  justify-content: center;
}
.cid-upuF4ouZI4 .item {
  margin-bottom: 32px;
}
.cid-upuF4ouZI4 .item a {
  display: block;
}
.cid-upuF4ouZI4 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upuF4ouZI4 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upuF4ouZI4 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upuF4ouZI4 .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-upuF4ouZI4 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upuF4ouZI4 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upuF4ouZI4 .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-upuF4ouZI4 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upuF4ouZI4 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upuF4ouZI4 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upuF4ouZI4 .item-title {
  color: #ffffff;
}
.cid-upuF4ouZI4 .mbr-date {
  color: #cacaca;
}
.cid-upuF4ouZI4 .mbr-desc {
  color: #cacaca;
}
.cid-upuF4oL1FP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upuF4oL1FP .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuF4oL1FP .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-upuF4oL1FP .container {
    padding: 0 16px;
  }
}
.cid-upuF4oL1FP .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upuF4oL1FP .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upuF4oL1FP .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upuF4oL1FP .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upuF4oL1FP .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upuF4oL1FP .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upuF4oL1FP .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upuF4oL1FP .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upuF4oL1FP .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upuF4oL1FP .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-upuF4oL1FP .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upuF4oL1FP .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upuF4oL1FP .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upuF4oL1FP .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upuF4oL1FP .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upuF4oL1FP .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upuF4oL1FP .dragArea.row .form-group .form-control:hover,
.cid-upuF4oL1FP .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upuF4oL1FP .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upuF4oL1FP .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upuF4oL1FP .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upuF4oL1FP .mbr-title {
  color: #ffffff;
}
.cid-upuF4oL1FP .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upuF4oL1FP .mbr-section-subtitle {
  color: #08323C;
}
.cid-upuF4oL1FP .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upuF4oL1FP .list {
  color: #08323C;
}
.cid-upuF4oL1FP label {
  color: #08323C;
}
.cid-upuF4oL1FP H3 {
  color: #000000;
}
.cid-upuF4oL1FP P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upuHx4wGr7 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuHx4wGr7 H1 {
  text-align: center;
}
.cid-uDmxuDz3ZE {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmxuDz3ZE .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmxuDz3ZE .video-block {
    width: 100% !important;
  }
}
.cid-upuHx4ROvy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuHx57syU {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upuHx57syU .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upuHx57syU .text-block {
  position: relative;
  z-index: 0;
}
.cid-upuHx57syU .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upuHx57syU .box {
  left: 20%;
}
.cid-upuHx57syU .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upuHx57syU .mbr-section-text,
.cid-upuHx57syU .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upuHx57syU .text-box {
    display: none;
  }
  .cid-upuHx57syU .mbr-section-title,
  .cid-upuHx57syU .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upuHx57syU .box {
    display: none;
  }
  .cid-upuHx57syU .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upuHx57syU .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upuHx57syU .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upuHx57syU .mbr-section-text {
  color: #c1c1c1;
}
.cid-upuHx57syU .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upuHx57syU .mbr-section-text DIV {
  text-align: center;
}
.cid-upuHx5nyQ2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuHx5nyQ2 H1 {
  text-align: center;
}
.cid-upuHx5BxNl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuHx5PEUj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuHx5PEUj h2 {
  text-align: left;
}
.cid-upuHx5PEUj h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upuHx5PEUj p {
  color: #767676;
  text-align: left;
}
.cid-upuHx5PEUj .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upuHx5PEUj .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upuHx5PEUj .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upuHx5PEUj .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upuHx5PEUj .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upuHx5PEUj .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upuHx5PEUj .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upuHx5PEUj .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upuHx5PEUj .card-img span {
    font-size: 40px !important;
  }
}
.cid-upuHx5PEUj H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upuHx5PEUj P {
  color: #ffffff;
  text-align: left;
}
.cid-upuHx5PEUj H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upuHx69aLl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upuHx69aLl H1 {
  color: #000000;
}
.cid-upuHx6nMbn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upuHx6nMbn .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuHx6nMbn .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upuHx6nMbn .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upuHx6nMbn .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upuHx6nMbn .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upuHx6nMbn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuHx6nMbn .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upuHx6nMbn .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upuHx6nMbn .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upuHx6nMbn .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upuHx6nMbn .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-upuHx6nMbn .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upuHx6nMbn .image-wrapper {
    padding: 1rem;
  }
}
.cid-upuHx6nMbn .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upuHx6nMbn .mbr-text,
.cid-upuHx6nMbn .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upuHx6O6Tv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upuHx6O6Tv H1 {
  color: #000000;
}
.cid-uxfimiT5lB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfimiT5lB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfimiT5lB .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfimiT5lB .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfimiT5lB .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfimiT5lB .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfimiT5lB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfimiT5lB .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfimiT5lB .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfimiT5lB .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfimiT5lB .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfimiT5lB .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-uxfimiT5lB .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfimiT5lB .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfimiT5lB .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfimiT5lB .mbr-text,
.cid-uxfimiT5lB .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfimYgwo6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfimYgwo6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfimYgwo6 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfimYgwo6 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfimYgwo6 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfimYgwo6 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfimYgwo6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfimYgwo6 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfimYgwo6 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfimYgwo6 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfimYgwo6 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfimYgwo6 .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-uxfimYgwo6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfimYgwo6 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfimYgwo6 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfimYgwo6 .mbr-text,
.cid-uxfimYgwo6 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0BWuugWc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0BWuugWc H1 {
  color: #000000;
}
.cid-uw0C6IHPgw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uw0C6IHPgw h2 {
  text-align: left;
}
.cid-uw0C6IHPgw h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0C6IHPgw p {
  color: #767676;
  text-align: left;
}
.cid-uw0C6IHPgw .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0C6IHPgw .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0C6IHPgw .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0C6IHPgw .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0C6IHPgw .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0C6IHPgw .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0C6IHPgw .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uw0C6IHPgw .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uw0C6IHPgw .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uw0C6IHPgw .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uw0C6IHPgw .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0BViznKO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0BViznKO H1 {
  color: #000000;
}
.cid-upuHx86Idu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upuHx86Idu .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upuHx86Idu .text-block {
  position: relative;
  z-index: 0;
}
.cid-upuHx86Idu .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upuHx86Idu .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upuHx86Idu .box {
  right: 20%;
}
.cid-upuHx86Idu .text-box {
  right: 0;
}
.cid-upuHx86Idu .mbr-section-title,
.cid-upuHx86Idu .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upuHx86Idu .text-box {
    display: none;
  }
  .cid-upuHx86Idu .mbr-section-title,
  .cid-upuHx86Idu .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upuHx86Idu .box {
    display: none;
  }
  .cid-upuHx86Idu .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upuHx86Idu .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upuHx86Idu .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upuHx86Idu .mbr-section-text {
  color: #c1c1c1;
}
.cid-upuHx86Idu .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upuHx86Idu .mbr-section-text DIV {
  text-align: center;
}
.cid-upuHx8mfbe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuHx8CdOu {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upuHx8CdOu h2 {
  text-align: left;
}
.cid-upuHx8CdOu h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upuHx8CdOu p {
  color: #767676;
  text-align: left;
}
.cid-upuHx8CdOu .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upuHx8CdOu .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upuHx8CdOu .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upuHx8CdOu .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upuHx8CdOu .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upuHx8CdOu .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upuHx8CdOu .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upuHx8CdOu .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upuHx8CdOu .card-img span {
    font-size: 40px !important;
  }
}
.cid-upuHx8CdOu .mbr-text {
  color: #232323;
}
.cid-upuHx8Sa1R {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upuHx8Sa1R .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuHx8Sa1R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuHx8Sa1R .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upuHx8Sa1R .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upuHx8Sa1R .container {
    padding: 0 26px;
  }
}
.cid-upuHx8Sa1R .row {
  justify-content: center;
}
.cid-upuHx8Sa1R .item {
  margin-bottom: 32px;
}
.cid-upuHx8Sa1R .item a {
  display: block;
}
.cid-upuHx8Sa1R .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upuHx8Sa1R .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upuHx8Sa1R .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upuHx8Sa1R .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-upuHx8Sa1R .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upuHx8Sa1R .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upuHx8Sa1R .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-upuHx8Sa1R .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upuHx8Sa1R .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upuHx8Sa1R .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upuHx8Sa1R .item-title {
  color: #ffffff;
}
.cid-upuHx8Sa1R .mbr-date {
  color: #cacaca;
}
.cid-upuHx8Sa1R .mbr-desc {
  color: #cacaca;
}
.cid-upuHx9aSja {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upuHx9aSja .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuHx9aSja .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-upuHx9aSja .container {
    padding: 0 16px;
  }
}
.cid-upuHx9aSja .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upuHx9aSja .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upuHx9aSja .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upuHx9aSja .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upuHx9aSja .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upuHx9aSja .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upuHx9aSja .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upuHx9aSja .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upuHx9aSja .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upuHx9aSja .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-upuHx9aSja .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upuHx9aSja .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upuHx9aSja .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upuHx9aSja .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upuHx9aSja .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upuHx9aSja .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upuHx9aSja .dragArea.row .form-group .form-control:hover,
.cid-upuHx9aSja .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upuHx9aSja .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upuHx9aSja .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upuHx9aSja .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upuHx9aSja .mbr-title {
  color: #ffffff;
}
.cid-upuHx9aSja .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upuHx9aSja .mbr-section-subtitle {
  color: #08323C;
}
.cid-upuHx9aSja .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upuHx9aSja .list {
  color: #08323C;
}
.cid-upuHx9aSja label {
  color: #08323C;
}
.cid-upuHx9aSja H3 {
  color: #000000;
}
.cid-upuHx9aSja P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upuPaImUsV {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuPaImUsV H1 {
  text-align: center;
}
.cid-uDmxVrHaap {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmxVrHaap .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmxVrHaap .video-block {
    width: 100% !important;
  }
}
.cid-upuPaIHDF4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuPaIWV33 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upuPaIWV33 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upuPaIWV33 .text-block {
  position: relative;
  z-index: 0;
}
.cid-upuPaIWV33 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upuPaIWV33 .box {
  left: 20%;
}
.cid-upuPaIWV33 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upuPaIWV33 .mbr-section-text,
.cid-upuPaIWV33 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upuPaIWV33 .text-box {
    display: none;
  }
  .cid-upuPaIWV33 .mbr-section-title,
  .cid-upuPaIWV33 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upuPaIWV33 .box {
    display: none;
  }
  .cid-upuPaIWV33 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upuPaIWV33 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upuPaIWV33 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upuPaIWV33 .mbr-section-text {
  color: #c1c1c1;
}
.cid-upuPaIWV33 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upuPaIWV33 .mbr-section-text DIV {
  text-align: center;
}
.cid-upuPaJdGWm {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuPaJdGWm H1 {
  text-align: center;
}
.cid-upuPaJuvbG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuPaJKUSc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuPaJKUSc h2 {
  text-align: left;
}
.cid-upuPaJKUSc h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upuPaJKUSc p {
  color: #767676;
  text-align: left;
}
.cid-upuPaJKUSc .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upuPaJKUSc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upuPaJKUSc .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upuPaJKUSc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upuPaJKUSc .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upuPaJKUSc .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upuPaJKUSc .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upuPaJKUSc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upuPaJKUSc .card-img span {
    font-size: 40px !important;
  }
}
.cid-upuPaJKUSc H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upuPaJKUSc P {
  color: #ffffff;
  text-align: left;
}
.cid-upuPaJKUSc H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxfkHXC5NV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxfkHXC5NV H1 {
  color: #000000;
}
.cid-uxfkIXAAmo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfkIXAAmo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfkIXAAmo .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfkIXAAmo .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfkIXAAmo .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfkIXAAmo .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfkIXAAmo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfkIXAAmo .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfkIXAAmo .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfkIXAAmo .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfkIXAAmo .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfkIXAAmo .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-uxfkIXAAmo .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfkIXAAmo .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfkIXAAmo .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfkIXAAmo .mbr-text,
.cid-uxfkIXAAmo .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upuPaKNeIN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upuPaKNeIN H1 {
  color: #000000;
}
.cid-uxfkJBcKgx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfkJBcKgx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfkJBcKgx .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfkJBcKgx .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfkJBcKgx .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfkJBcKgx .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfkJBcKgx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfkJBcKgx .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfkJBcKgx .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfkJBcKgx .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfkJBcKgx .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfkJBcKgx .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-uxfkJBcKgx .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfkJBcKgx .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfkJBcKgx .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfkJBcKgx .mbr-text,
.cid-uxfkJBcKgx .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfkKtY8K2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfkKtY8K2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfkKtY8K2 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfkKtY8K2 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfkKtY8K2 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfkKtY8K2 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfkKtY8K2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfkKtY8K2 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfkKtY8K2 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfkKtY8K2 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfkKtY8K2 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfkKtY8K2 .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-uxfkKtY8K2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfkKtY8K2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfkKtY8K2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfkKtY8K2 .mbr-text,
.cid-uxfkKtY8K2 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upuPaLs22I {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upuPaLs22I H1 {
  color: #000000;
}
.cid-uvQ0Rvjhgh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvQ0Rvjhgh h2 {
  text-align: left;
}
.cid-uvQ0Rvjhgh h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvQ0Rvjhgh p {
  color: #767676;
  text-align: left;
}
.cid-uvQ0Rvjhgh .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvQ0Rvjhgh .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvQ0Rvjhgh .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvQ0Rvjhgh .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvQ0Rvjhgh .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvQ0Rvjhgh .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvQ0Rvjhgh .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvQ0Rvjhgh .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvQ0Rvjhgh .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvQ0Rvjhgh .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvQ0Rvjhgh .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvQ0HCRZ6j {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvQ0HCRZ6j H1 {
  color: #000000;
}
.cid-upuPaM67c9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upuPaM67c9 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upuPaM67c9 .text-block {
  position: relative;
  z-index: 0;
}
.cid-upuPaM67c9 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upuPaM67c9 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upuPaM67c9 .box {
  right: 20%;
}
.cid-upuPaM67c9 .text-box {
  right: 0;
}
.cid-upuPaM67c9 .mbr-section-title,
.cid-upuPaM67c9 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upuPaM67c9 .text-box {
    display: none;
  }
  .cid-upuPaM67c9 .mbr-section-title,
  .cid-upuPaM67c9 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upuPaM67c9 .box {
    display: none;
  }
  .cid-upuPaM67c9 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upuPaM67c9 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upuPaM67c9 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upuPaM67c9 .mbr-section-text {
  color: #c1c1c1;
}
.cid-upuPaM67c9 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upuPaM67c9 .mbr-section-text DIV {
  text-align: center;
}
.cid-upuPaMqFBC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuPaMGapL {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upuPaMGapL h2 {
  text-align: left;
}
.cid-upuPaMGapL h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upuPaMGapL p {
  color: #767676;
  text-align: left;
}
.cid-upuPaMGapL .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upuPaMGapL .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upuPaMGapL .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upuPaMGapL .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upuPaMGapL .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upuPaMGapL .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upuPaMGapL .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upuPaMGapL .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upuPaMGapL .card-img span {
    font-size: 40px !important;
  }
}
.cid-upuPaMGapL .mbr-text {
  color: #232323;
}
.cid-upuPaN0X6T {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upuPaN0X6T .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuPaN0X6T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuPaN0X6T .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upuPaN0X6T .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upuPaN0X6T .container {
    padding: 0 26px;
  }
}
.cid-upuPaN0X6T .row {
  justify-content: center;
}
.cid-upuPaN0X6T .item {
  margin-bottom: 32px;
}
.cid-upuPaN0X6T .item a {
  display: block;
}
.cid-upuPaN0X6T .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upuPaN0X6T .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upuPaN0X6T .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upuPaN0X6T .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-upuPaN0X6T .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upuPaN0X6T .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upuPaN0X6T .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-upuPaN0X6T .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upuPaN0X6T .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upuPaN0X6T .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upuPaN0X6T .item-title {
  color: #ffffff;
}
.cid-upuPaN0X6T .mbr-date {
  color: #cacaca;
}
.cid-upuPaN0X6T .mbr-desc {
  color: #cacaca;
}
.cid-upuPaNi9P1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upuPaNi9P1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuPaNi9P1 .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-upuPaNi9P1 .container {
    padding: 0 16px;
  }
}
.cid-upuPaNi9P1 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upuPaNi9P1 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upuPaNi9P1 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upuPaNi9P1 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upuPaNi9P1 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upuPaNi9P1 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upuPaNi9P1 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upuPaNi9P1 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upuPaNi9P1 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upuPaNi9P1 .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-upuPaNi9P1 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upuPaNi9P1 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upuPaNi9P1 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upuPaNi9P1 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upuPaNi9P1 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upuPaNi9P1 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upuPaNi9P1 .dragArea.row .form-group .form-control:hover,
.cid-upuPaNi9P1 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upuPaNi9P1 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upuPaNi9P1 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upuPaNi9P1 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upuPaNi9P1 .mbr-title {
  color: #ffffff;
}
.cid-upuPaNi9P1 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upuPaNi9P1 .mbr-section-subtitle {
  color: #08323C;
}
.cid-upuPaNi9P1 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upuPaNi9P1 .list {
  color: #08323C;
}
.cid-upuPaNi9P1 label {
  color: #08323C;
}
.cid-upuPaNi9P1 H3 {
  color: #000000;
}
.cid-upuPaNi9P1 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upuSN2NCi3 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuSN2NCi3 H1 {
  text-align: center;
}
.cid-uDmymBm37g {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmymBm37g .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmymBm37g .video-block {
    width: 100% !important;
  }
}
.cid-upuSN3cICX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuSN3w4Vh {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upuSN3w4Vh .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upuSN3w4Vh .text-block {
  position: relative;
  z-index: 0;
}
.cid-upuSN3w4Vh .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upuSN3w4Vh .box {
  left: 20%;
}
.cid-upuSN3w4Vh .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upuSN3w4Vh .mbr-section-text,
.cid-upuSN3w4Vh .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upuSN3w4Vh .text-box {
    display: none;
  }
  .cid-upuSN3w4Vh .mbr-section-title,
  .cid-upuSN3w4Vh .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upuSN3w4Vh .box {
    display: none;
  }
  .cid-upuSN3w4Vh .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upuSN3w4Vh .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upuSN3w4Vh .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upuSN3w4Vh .mbr-section-text {
  color: #c1c1c1;
}
.cid-upuSN3w4Vh .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upuSN3w4Vh .mbr-section-text DIV {
  text-align: center;
}
.cid-upuSN3RFob {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuSN3RFob H1 {
  text-align: center;
}
.cid-upuSN472V8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuSN4nrpJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuSN4nrpJ h2 {
  text-align: left;
}
.cid-upuSN4nrpJ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upuSN4nrpJ p {
  color: #767676;
  text-align: left;
}
.cid-upuSN4nrpJ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upuSN4nrpJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upuSN4nrpJ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upuSN4nrpJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upuSN4nrpJ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upuSN4nrpJ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upuSN4nrpJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upuSN4nrpJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upuSN4nrpJ .card-img span {
    font-size: 40px !important;
  }
}
.cid-upuSN4nrpJ H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upuSN4nrpJ P {
  color: #ffffff;
  text-align: left;
}
.cid-upuSN4nrpJ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upuSN4KcGA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upuSN4KcGA H1 {
  color: #000000;
}
.cid-upuSN50VaU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upuSN50VaU .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuSN50VaU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upuSN50VaU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upuSN50VaU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upuSN50VaU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upuSN50VaU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuSN50VaU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upuSN50VaU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upuSN50VaU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upuSN50VaU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upuSN50VaU .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-upuSN50VaU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upuSN50VaU .image-wrapper {
    padding: 1rem;
  }
}
.cid-upuSN50VaU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upuSN50VaU .mbr-text,
.cid-upuSN50VaU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upuSN5rDdv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upuSN5rDdv H1 {
  color: #000000;
}
.cid-uy70l67Xfp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uy70l67Xfp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy70l67Xfp .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uy70l67Xfp .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uy70l67Xfp .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uy70l67Xfp .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uy70l67Xfp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy70l67Xfp .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uy70l67Xfp .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uy70l67Xfp .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uy70l67Xfp .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uy70l67Xfp .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-uy70l67Xfp .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uy70l67Xfp .image-wrapper {
    padding: 1rem;
  }
}
.cid-uy70l67Xfp .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uy70l67Xfp .mbr-text,
.cid-uy70l67Xfp .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uy70lFWuOx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uy70lFWuOx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy70lFWuOx .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uy70lFWuOx .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uy70lFWuOx .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uy70lFWuOx .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uy70lFWuOx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy70lFWuOx .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uy70lFWuOx .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uy70lFWuOx .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uy70lFWuOx .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uy70lFWuOx .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-uy70lFWuOx .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uy70lFWuOx .image-wrapper {
    padding: 1rem;
  }
}
.cid-uy70lFWuOx .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uy70lFWuOx .mbr-text,
.cid-uy70lFWuOx .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwta92dvBx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwta92dvBx H1 {
  color: #000000;
}
.cid-uwta6o920m {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwta6o920m h2 {
  text-align: left;
}
.cid-uwta6o920m h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwta6o920m p {
  color: #767676;
  text-align: left;
}
.cid-uwta6o920m .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwta6o920m .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwta6o920m .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwta6o920m .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwta6o920m .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwta6o920m .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwta6o920m .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwta6o920m .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwta6o920m .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwta6o920m .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwta6o920m .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwta74I4FB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwta74I4FB H1 {
  color: #000000;
}
.cid-upuSN6VoTH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upuSN6VoTH .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upuSN6VoTH .text-block {
  position: relative;
  z-index: 0;
}
.cid-upuSN6VoTH .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upuSN6VoTH .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upuSN6VoTH .box {
  right: 20%;
}
.cid-upuSN6VoTH .text-box {
  right: 0;
}
.cid-upuSN6VoTH .mbr-section-title,
.cid-upuSN6VoTH .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upuSN6VoTH .text-box {
    display: none;
  }
  .cid-upuSN6VoTH .mbr-section-title,
  .cid-upuSN6VoTH .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upuSN6VoTH .box {
    display: none;
  }
  .cid-upuSN6VoTH .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upuSN6VoTH .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upuSN6VoTH .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upuSN6VoTH .mbr-section-text {
  color: #c1c1c1;
}
.cid-upuSN6VoTH .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upuSN6VoTH .mbr-section-text DIV {
  text-align: center;
}
.cid-upuSN7eIJI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuSN7yX1s {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upuSN7yX1s h2 {
  text-align: left;
}
.cid-upuSN7yX1s h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upuSN7yX1s p {
  color: #767676;
  text-align: left;
}
.cid-upuSN7yX1s .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upuSN7yX1s .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upuSN7yX1s .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upuSN7yX1s .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upuSN7yX1s .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upuSN7yX1s .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upuSN7yX1s .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upuSN7yX1s .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upuSN7yX1s .card-img span {
    font-size: 40px !important;
  }
}
.cid-upuSN7yX1s .mbr-text {
  color: #232323;
}
.cid-upuSN7RC3c {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upuSN7RC3c .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuSN7RC3c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuSN7RC3c .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upuSN7RC3c .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upuSN7RC3c .container {
    padding: 0 26px;
  }
}
.cid-upuSN7RC3c .row {
  justify-content: center;
}
.cid-upuSN7RC3c .item {
  margin-bottom: 32px;
}
.cid-upuSN7RC3c .item a {
  display: block;
}
.cid-upuSN7RC3c .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upuSN7RC3c .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upuSN7RC3c .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upuSN7RC3c .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-upuSN7RC3c .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upuSN7RC3c .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upuSN7RC3c .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-upuSN7RC3c .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upuSN7RC3c .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upuSN7RC3c .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upuSN7RC3c .item-title {
  color: #ffffff;
}
.cid-upuSN7RC3c .mbr-date {
  color: #cacaca;
}
.cid-upuSN7RC3c .mbr-desc {
  color: #cacaca;
}
.cid-upuSN8fiCU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upuSN8fiCU .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuSN8fiCU .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-upuSN8fiCU .container {
    padding: 0 16px;
  }
}
.cid-upuSN8fiCU .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upuSN8fiCU .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upuSN8fiCU .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upuSN8fiCU .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upuSN8fiCU .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upuSN8fiCU .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upuSN8fiCU .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upuSN8fiCU .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upuSN8fiCU .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upuSN8fiCU .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-upuSN8fiCU .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upuSN8fiCU .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upuSN8fiCU .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upuSN8fiCU .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upuSN8fiCU .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upuSN8fiCU .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upuSN8fiCU .dragArea.row .form-group .form-control:hover,
.cid-upuSN8fiCU .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upuSN8fiCU .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upuSN8fiCU .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upuSN8fiCU .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upuSN8fiCU .mbr-title {
  color: #ffffff;
}
.cid-upuSN8fiCU .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upuSN8fiCU .mbr-section-subtitle {
  color: #08323C;
}
.cid-upuSN8fiCU .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upuSN8fiCU .list {
  color: #08323C;
}
.cid-upuSN8fiCU label {
  color: #08323C;
}
.cid-upuSN8fiCU H3 {
  color: #000000;
}
.cid-upuSN8fiCU P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upuUYT3hsQ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuUYT3hsQ H1 {
  text-align: center;
}
.cid-uDmyEklpqi {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmyEklpqi .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmyEklpqi .video-block {
    width: 100% !important;
  }
}
.cid-upuUYTrjU2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuUYTJ9y8 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upuUYTJ9y8 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upuUYTJ9y8 .text-block {
  position: relative;
  z-index: 0;
}
.cid-upuUYTJ9y8 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upuUYTJ9y8 .box {
  left: 20%;
}
.cid-upuUYTJ9y8 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upuUYTJ9y8 .mbr-section-text,
.cid-upuUYTJ9y8 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upuUYTJ9y8 .text-box {
    display: none;
  }
  .cid-upuUYTJ9y8 .mbr-section-title,
  .cid-upuUYTJ9y8 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upuUYTJ9y8 .box {
    display: none;
  }
  .cid-upuUYTJ9y8 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upuUYTJ9y8 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upuUYTJ9y8 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upuUYTJ9y8 .mbr-section-text {
  color: #c1c1c1;
}
.cid-upuUYTJ9y8 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upuUYTJ9y8 .mbr-section-text DIV {
  text-align: center;
}
.cid-upuUYU3jOj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuUYU3jOj H1 {
  text-align: center;
}
.cid-upuUYUzXg8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuUYUShRI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuUYUShRI h2 {
  text-align: left;
}
.cid-upuUYUShRI h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upuUYUShRI p {
  color: #767676;
  text-align: left;
}
.cid-upuUYUShRI .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upuUYUShRI .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upuUYUShRI .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upuUYUShRI .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upuUYUShRI .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upuUYUShRI .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upuUYUShRI .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upuUYUShRI .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upuUYUShRI .card-img span {
    font-size: 40px !important;
  }
}
.cid-upuUYUShRI H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upuUYUShRI P {
  color: #ffffff;
  text-align: left;
}
.cid-upuUYUShRI H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upuUYVedEo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upuUYVedEo H1 {
  color: #000000;
}
.cid-uy717QEzT8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uy717QEzT8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy717QEzT8 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uy717QEzT8 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uy717QEzT8 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uy717QEzT8 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uy717QEzT8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy717QEzT8 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uy717QEzT8 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uy717QEzT8 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uy717QEzT8 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uy717QEzT8 .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-uy717QEzT8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uy717QEzT8 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uy717QEzT8 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uy717QEzT8 .mbr-text,
.cid-uy717QEzT8 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upuUYW67vm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upuUYW67vm H1 {
  color: #000000;
}
.cid-uxfpJ9p6sc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfpJ9p6sc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfpJ9p6sc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfpJ9p6sc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfpJ9p6sc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfpJ9p6sc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfpJ9p6sc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfpJ9p6sc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfpJ9p6sc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfpJ9p6sc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfpJ9p6sc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfpJ9p6sc .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-uxfpJ9p6sc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfpJ9p6sc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfpJ9p6sc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfpJ9p6sc .mbr-text,
.cid-uxfpJ9p6sc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfpJNZ4VT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfpJNZ4VT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfpJNZ4VT .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfpJNZ4VT .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfpJNZ4VT .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfpJNZ4VT .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfpJNZ4VT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfpJNZ4VT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfpJNZ4VT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfpJNZ4VT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfpJNZ4VT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfpJNZ4VT .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-uxfpJNZ4VT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfpJNZ4VT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfpJNZ4VT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfpJNZ4VT .mbr-text,
.cid-uxfpJNZ4VT .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux7TrCeROr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7TrCeROr H1 {
  color: #000000;
}
.cid-ux7TpFDwbg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux7TpFDwbg h2 {
  text-align: left;
}
.cid-ux7TpFDwbg h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux7TpFDwbg p {
  color: #767676;
  text-align: left;
}
.cid-ux7TpFDwbg .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux7TpFDwbg .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux7TpFDwbg .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux7TpFDwbg .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux7TpFDwbg .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux7TpFDwbg .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux7TpFDwbg .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux7TpFDwbg .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux7TpFDwbg .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux7TpFDwbg .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux7TpFDwbg .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux7TqsuFWb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7TqsuFWb H1 {
  color: #000000;
}
.cid-upuUYXVlRP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upuUYXVlRP .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upuUYXVlRP .text-block {
  position: relative;
  z-index: 0;
}
.cid-upuUYXVlRP .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upuUYXVlRP .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upuUYXVlRP .box {
  right: 20%;
}
.cid-upuUYXVlRP .text-box {
  right: 0;
}
.cid-upuUYXVlRP .mbr-section-title,
.cid-upuUYXVlRP .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upuUYXVlRP .text-box {
    display: none;
  }
  .cid-upuUYXVlRP .mbr-section-title,
  .cid-upuUYXVlRP .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upuUYXVlRP .box {
    display: none;
  }
  .cid-upuUYXVlRP .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upuUYXVlRP .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upuUYXVlRP .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upuUYXVlRP .mbr-section-text {
  color: #c1c1c1;
}
.cid-upuUYXVlRP .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upuUYXVlRP .mbr-section-text DIV {
  text-align: center;
}
.cid-upuUYYfcyX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuUYYxMDh {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upuUYYxMDh h2 {
  text-align: left;
}
.cid-upuUYYxMDh h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upuUYYxMDh p {
  color: #767676;
  text-align: left;
}
.cid-upuUYYxMDh .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upuUYYxMDh .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upuUYYxMDh .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upuUYYxMDh .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upuUYYxMDh .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upuUYYxMDh .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upuUYYxMDh .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upuUYYxMDh .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upuUYYxMDh .card-img span {
    font-size: 40px !important;
  }
}
.cid-upuUYYxMDh .mbr-text {
  color: #232323;
}
.cid-ux7TyjvsZD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7TyjvsZD H1 {
  color: #000000;
}
.cid-upuUYYTv3S {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upuUYYTv3S .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuUYYTv3S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuUYYTv3S .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upuUYYTv3S .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upuUYYTv3S .container {
    padding: 0 26px;
  }
}
.cid-upuUYYTv3S .row {
  justify-content: center;
}
.cid-upuUYYTv3S .item {
  margin-bottom: 32px;
}
.cid-upuUYYTv3S .item a {
  display: block;
}
.cid-upuUYYTv3S .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upuUYYTv3S .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upuUYYTv3S .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upuUYYTv3S .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-upuUYYTv3S .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upuUYYTv3S .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upuUYYTv3S .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-upuUYYTv3S .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upuUYYTv3S .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upuUYYTv3S .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upuUYYTv3S .item-title {
  color: #ffffff;
}
.cid-upuUYYTv3S .mbr-date {
  color: #cacaca;
}
.cid-upuUYYTv3S .mbr-desc {
  color: #cacaca;
}
.cid-upuUYZe3b1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upuUYZe3b1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuUYZe3b1 .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-upuUYZe3b1 .container {
    padding: 0 16px;
  }
}
.cid-upuUYZe3b1 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upuUYZe3b1 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upuUYZe3b1 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upuUYZe3b1 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upuUYZe3b1 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upuUYZe3b1 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upuUYZe3b1 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upuUYZe3b1 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upuUYZe3b1 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upuUYZe3b1 .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-upuUYZe3b1 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upuUYZe3b1 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upuUYZe3b1 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upuUYZe3b1 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upuUYZe3b1 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upuUYZe3b1 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upuUYZe3b1 .dragArea.row .form-group .form-control:hover,
.cid-upuUYZe3b1 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upuUYZe3b1 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upuUYZe3b1 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upuUYZe3b1 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upuUYZe3b1 .mbr-title {
  color: #ffffff;
}
.cid-upuUYZe3b1 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upuUYZe3b1 .mbr-section-subtitle {
  color: #08323C;
}
.cid-upuUYZe3b1 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upuUYZe3b1 .list {
  color: #08323C;
}
.cid-upuUYZe3b1 label {
  color: #08323C;
}
.cid-upuUYZe3b1 H3 {
  color: #000000;
}
.cid-upuUYZe3b1 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upuXyUbe6N {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuXyUbe6N H1 {
  text-align: center;
}
.cid-uDmyUdsojG {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmyUdsojG .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmyUdsojG .video-block {
    width: 100% !important;
  }
}
.cid-upuXyUzOap {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuXyUTUyR {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upuXyUTUyR .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upuXyUTUyR .text-block {
  position: relative;
  z-index: 0;
}
.cid-upuXyUTUyR .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upuXyUTUyR .box {
  left: 20%;
}
.cid-upuXyUTUyR .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upuXyUTUyR .mbr-section-text,
.cid-upuXyUTUyR .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upuXyUTUyR .text-box {
    display: none;
  }
  .cid-upuXyUTUyR .mbr-section-title,
  .cid-upuXyUTUyR .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upuXyUTUyR .box {
    display: none;
  }
  .cid-upuXyUTUyR .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upuXyUTUyR .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upuXyUTUyR .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upuXyUTUyR .mbr-section-text {
  color: #c1c1c1;
}
.cid-upuXyUTUyR .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upuXyUTUyR .mbr-section-text DIV {
  text-align: center;
}
.cid-upuXyVcWho {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuXyVcWho H1 {
  text-align: center;
}
.cid-upuXyVwAq8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuXyVNhyJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upuXyVNhyJ h2 {
  text-align: left;
}
.cid-upuXyVNhyJ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upuXyVNhyJ p {
  color: #767676;
  text-align: left;
}
.cid-upuXyVNhyJ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upuXyVNhyJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upuXyVNhyJ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upuXyVNhyJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upuXyVNhyJ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upuXyVNhyJ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upuXyVNhyJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upuXyVNhyJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upuXyVNhyJ .card-img span {
    font-size: 40px !important;
  }
}
.cid-upuXyVNhyJ H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upuXyVNhyJ P {
  color: #ffffff;
  text-align: left;
}
.cid-upuXyVNhyJ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upuXyWeLq8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upuXyWeLq8 H1 {
  color: #000000;
}
.cid-upuXyWxX0r {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upuXyWxX0r .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuXyWxX0r .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upuXyWxX0r .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upuXyWxX0r .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upuXyWxX0r .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upuXyWxX0r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuXyWxX0r .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upuXyWxX0r .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upuXyWxX0r .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upuXyWxX0r .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upuXyWxX0r .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-upuXyWxX0r .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upuXyWxX0r .image-wrapper {
    padding: 1rem;
  }
}
.cid-upuXyWxX0r .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upuXyWxX0r .mbr-text,
.cid-upuXyWxX0r .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upuXyX0vEj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upuXyX0vEj H1 {
  color: #000000;
}
.cid-uxftA9PcPe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxftA9PcPe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxftA9PcPe .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxftA9PcPe .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxftA9PcPe .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxftA9PcPe .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxftA9PcPe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxftA9PcPe .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxftA9PcPe .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxftA9PcPe .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxftA9PcPe .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxftA9PcPe .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-uxftA9PcPe .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxftA9PcPe .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxftA9PcPe .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxftA9PcPe .mbr-text,
.cid-uxftA9PcPe .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxftAM6URp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxftAM6URp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxftAM6URp .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxftAM6URp .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxftAM6URp .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxftAM6URp .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxftAM6URp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxftAM6URp .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxftAM6URp .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxftAM6URp .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxftAM6URp .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxftAM6URp .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-uxftAM6URp .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxftAM6URp .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxftAM6URp .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxftAM6URp .mbr-text,
.cid-uxftAM6URp .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw04qmtOVG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw04qmtOVG H1 {
  color: #000000;
}
.cid-uw04wTg5RY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uw04wTg5RY h2 {
  text-align: left;
}
.cid-uw04wTg5RY h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw04wTg5RY p {
  color: #767676;
  text-align: left;
}
.cid-uw04wTg5RY .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw04wTg5RY .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw04wTg5RY .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw04wTg5RY .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw04wTg5RY .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw04wTg5RY .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw04wTg5RY .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uw04wTg5RY .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uw04wTg5RY .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uw04wTg5RY .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uw04wTg5RY .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw04oZenge {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw04oZenge H1 {
  color: #000000;
}
.cid-upuXyYvQ9y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upuXyYvQ9y .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upuXyYvQ9y .text-block {
  position: relative;
  z-index: 0;
}
.cid-upuXyYvQ9y .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upuXyYvQ9y .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upuXyYvQ9y .box {
  right: 20%;
}
.cid-upuXyYvQ9y .text-box {
  right: 0;
}
.cid-upuXyYvQ9y .mbr-section-title,
.cid-upuXyYvQ9y .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upuXyYvQ9y .text-box {
    display: none;
  }
  .cid-upuXyYvQ9y .mbr-section-title,
  .cid-upuXyYvQ9y .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upuXyYvQ9y .box {
    display: none;
  }
  .cid-upuXyYvQ9y .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upuXyYvQ9y .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upuXyYvQ9y .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upuXyYvQ9y .mbr-section-text {
  color: #c1c1c1;
}
.cid-upuXyYvQ9y .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upuXyYvQ9y .mbr-section-text DIV {
  text-align: center;
}
.cid-upuXyYVnTu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upuXyZdE4I {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upuXyZdE4I h2 {
  text-align: left;
}
.cid-upuXyZdE4I h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upuXyZdE4I p {
  color: #767676;
  text-align: left;
}
.cid-upuXyZdE4I .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upuXyZdE4I .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upuXyZdE4I .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upuXyZdE4I .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upuXyZdE4I .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upuXyZdE4I .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upuXyZdE4I .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upuXyZdE4I .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upuXyZdE4I .card-img span {
    font-size: 40px !important;
  }
}
.cid-upuXyZdE4I .mbr-text {
  color: #232323;
}
.cid-upuXyZydcC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upuXyZydcC .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuXyZydcC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuXyZydcC .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upuXyZydcC .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upuXyZydcC .container {
    padding: 0 26px;
  }
}
.cid-upuXyZydcC .row {
  justify-content: center;
}
.cid-upuXyZydcC .item {
  margin-bottom: 32px;
}
.cid-upuXyZydcC .item a {
  display: block;
}
.cid-upuXyZydcC .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upuXyZydcC .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upuXyZydcC .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upuXyZydcC .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-upuXyZydcC .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upuXyZydcC .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upuXyZydcC .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-upuXyZydcC .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upuXyZydcC .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upuXyZydcC .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upuXyZydcC .item-title {
  color: #ffffff;
}
.cid-upuXyZydcC .mbr-date {
  color: #cacaca;
}
.cid-upuXyZydcC .mbr-desc {
  color: #cacaca;
}
.cid-upuXyZUxcT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upuXyZUxcT .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuXyZUxcT .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-upuXyZUxcT .container {
    padding: 0 16px;
  }
}
.cid-upuXyZUxcT .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upuXyZUxcT .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upuXyZUxcT .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upuXyZUxcT .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upuXyZUxcT .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upuXyZUxcT .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upuXyZUxcT .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upuXyZUxcT .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upuXyZUxcT .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upuXyZUxcT .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-upuXyZUxcT .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upuXyZUxcT .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upuXyZUxcT .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upuXyZUxcT .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upuXyZUxcT .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upuXyZUxcT .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upuXyZUxcT .dragArea.row .form-group .form-control:hover,
.cid-upuXyZUxcT .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upuXyZUxcT .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upuXyZUxcT .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upuXyZUxcT .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upuXyZUxcT .mbr-title {
  color: #ffffff;
}
.cid-upuXyZUxcT .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upuXyZUxcT .mbr-section-subtitle {
  color: #08323C;
}
.cid-upuXyZUxcT .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upuXyZUxcT .list {
  color: #08323C;
}
.cid-upuXyZUxcT label {
  color: #08323C;
}
.cid-upuXyZUxcT H3 {
  color: #000000;
}
.cid-upuXyZUxcT P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upv0joWFSJ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upv0joWFSJ H1 {
  text-align: center;
}
.cid-uDmzLbRcWX {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmzLbRcWX .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmzLbRcWX .video-block {
    width: 100% !important;
  }
}
.cid-upv0jppZCY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upv0jpKQvb {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upv0jpKQvb .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upv0jpKQvb .text-block {
  position: relative;
  z-index: 0;
}
.cid-upv0jpKQvb .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upv0jpKQvb .box {
  left: 20%;
}
.cid-upv0jpKQvb .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upv0jpKQvb .mbr-section-text,
.cid-upv0jpKQvb .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upv0jpKQvb .text-box {
    display: none;
  }
  .cid-upv0jpKQvb .mbr-section-title,
  .cid-upv0jpKQvb .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upv0jpKQvb .box {
    display: none;
  }
  .cid-upv0jpKQvb .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upv0jpKQvb .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upv0jpKQvb .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upv0jpKQvb .mbr-section-text {
  color: #c1c1c1;
}
.cid-upv0jpKQvb .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upv0jpKQvb .mbr-section-text DIV {
  text-align: center;
}
.cid-upv0jq21Ke {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upv0jq21Ke H1 {
  text-align: center;
}
.cid-upv0jqkhZi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upv0jqB3HB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upv0jqB3HB h2 {
  text-align: left;
}
.cid-upv0jqB3HB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upv0jqB3HB p {
  color: #767676;
  text-align: left;
}
.cid-upv0jqB3HB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upv0jqB3HB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upv0jqB3HB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upv0jqB3HB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upv0jqB3HB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upv0jqB3HB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upv0jqB3HB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upv0jqB3HB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upv0jqB3HB .card-img span {
    font-size: 40px !important;
  }
}
.cid-upv0jqB3HB H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upv0jqB3HB P {
  color: #ffffff;
  text-align: left;
}
.cid-upv0jqB3HB H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upv0jr1UT4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upv0jr1UT4 H1 {
  color: #000000;
}
.cid-upv0jrjBZW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upv0jrjBZW .mbr-fallback-image.disabled {
  display: none;
}
.cid-upv0jrjBZW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upv0jrjBZW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upv0jrjBZW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upv0jrjBZW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upv0jrjBZW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upv0jrjBZW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upv0jrjBZW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upv0jrjBZW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upv0jrjBZW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upv0jrjBZW .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-upv0jrjBZW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upv0jrjBZW .image-wrapper {
    padding: 1rem;
  }
}
.cid-upv0jrjBZW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upv0jrjBZW .mbr-text,
.cid-upv0jrjBZW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upv0jrRPH6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upv0jrRPH6 H1 {
  color: #000000;
}
.cid-uxfIkTLzSx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfIkTLzSx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfIkTLzSx .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfIkTLzSx .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfIkTLzSx .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfIkTLzSx .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfIkTLzSx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfIkTLzSx .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfIkTLzSx .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfIkTLzSx .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfIkTLzSx .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfIkTLzSx .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-uxfIkTLzSx .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfIkTLzSx .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfIkTLzSx .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfIkTLzSx .mbr-text,
.cid-uxfIkTLzSx .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfIlMcup3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfIlMcup3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfIlMcup3 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfIlMcup3 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfIlMcup3 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfIlMcup3 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfIlMcup3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfIlMcup3 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfIlMcup3 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfIlMcup3 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfIlMcup3 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfIlMcup3 .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-uxfIlMcup3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfIlMcup3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfIlMcup3 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfIlMcup3 .mbr-text,
.cid-uxfIlMcup3 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvVvDP63Cu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvVvDP63Cu H1 {
  color: #000000;
}
.cid-uvVvI63rOE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvVvI63rOE h2 {
  text-align: left;
}
.cid-uvVvI63rOE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVvI63rOE p {
  color: #767676;
  text-align: left;
}
.cid-uvVvI63rOE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVvI63rOE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVvI63rOE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVvI63rOE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVvI63rOE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVvI63rOE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVvI63rOE .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvVvI63rOE .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvVvI63rOE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvVvI63rOE .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvVvI63rOE .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVvL0Sx4H {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvVvL0Sx4H H1 {
  color: #000000;
}
.cid-upv0jtkQ7l {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upv0jtkQ7l .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upv0jtkQ7l .text-block {
  position: relative;
  z-index: 0;
}
.cid-upv0jtkQ7l .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upv0jtkQ7l .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upv0jtkQ7l .box {
  right: 20%;
}
.cid-upv0jtkQ7l .text-box {
  right: 0;
}
.cid-upv0jtkQ7l .mbr-section-title,
.cid-upv0jtkQ7l .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upv0jtkQ7l .text-box {
    display: none;
  }
  .cid-upv0jtkQ7l .mbr-section-title,
  .cid-upv0jtkQ7l .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upv0jtkQ7l .box {
    display: none;
  }
  .cid-upv0jtkQ7l .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upv0jtkQ7l .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upv0jtkQ7l .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upv0jtkQ7l .mbr-section-text {
  color: #c1c1c1;
}
.cid-upv0jtkQ7l .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upv0jtkQ7l .mbr-section-text DIV {
  text-align: center;
}
.cid-upv0jtGUKb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upv0jtZrFb {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upv0jtZrFb h2 {
  text-align: left;
}
.cid-upv0jtZrFb h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upv0jtZrFb p {
  color: #767676;
  text-align: left;
}
.cid-upv0jtZrFb .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upv0jtZrFb .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upv0jtZrFb .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upv0jtZrFb .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upv0jtZrFb .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upv0jtZrFb .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upv0jtZrFb .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upv0jtZrFb .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upv0jtZrFb .card-img span {
    font-size: 40px !important;
  }
}
.cid-upv0jtZrFb .mbr-text {
  color: #232323;
}
.cid-upv0juj3Zc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upv0juj3Zc .mbr-fallback-image.disabled {
  display: none;
}
.cid-upv0juj3Zc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upv0juj3Zc .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upv0juj3Zc .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upv0juj3Zc .container {
    padding: 0 26px;
  }
}
.cid-upv0juj3Zc .row {
  justify-content: center;
}
.cid-upv0juj3Zc .item {
  margin-bottom: 32px;
}
.cid-upv0juj3Zc .item a {
  display: block;
}
.cid-upv0juj3Zc .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upv0juj3Zc .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upv0juj3Zc .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upv0juj3Zc .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-upv0juj3Zc .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upv0juj3Zc .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upv0juj3Zc .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-upv0juj3Zc .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upv0juj3Zc .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upv0juj3Zc .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upv0juj3Zc .item-title {
  color: #ffffff;
}
.cid-upv0juj3Zc .mbr-date {
  color: #cacaca;
}
.cid-upv0juj3Zc .mbr-desc {
  color: #cacaca;
}
.cid-upv0juHGIa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upv0juHGIa .mbr-fallback-image.disabled {
  display: none;
}
.cid-upv0juHGIa .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-upv0juHGIa .container {
    padding: 0 16px;
  }
}
.cid-upv0juHGIa .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upv0juHGIa .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upv0juHGIa .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upv0juHGIa .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upv0juHGIa .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upv0juHGIa .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upv0juHGIa .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upv0juHGIa .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upv0juHGIa .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upv0juHGIa .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-upv0juHGIa .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upv0juHGIa .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upv0juHGIa .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upv0juHGIa .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upv0juHGIa .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upv0juHGIa .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upv0juHGIa .dragArea.row .form-group .form-control:hover,
.cid-upv0juHGIa .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upv0juHGIa .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upv0juHGIa .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upv0juHGIa .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upv0juHGIa .mbr-title {
  color: #ffffff;
}
.cid-upv0juHGIa .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upv0juHGIa .mbr-section-subtitle {
  color: #08323C;
}
.cid-upv0juHGIa .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upv0juHGIa .list {
  color: #08323C;
}
.cid-upv0juHGIa label {
  color: #08323C;
}
.cid-upv0juHGIa H3 {
  color: #000000;
}
.cid-upv0juHGIa P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upv349oIdA {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upv349oIdA H1 {
  text-align: center;
}
.cid-uDmA0mJKDG {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmA0mJKDG .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmA0mJKDG .video-block {
    width: 100% !important;
  }
}
.cid-upv349Nlb4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upv34a6Xko {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upv34a6Xko .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upv34a6Xko .text-block {
  position: relative;
  z-index: 0;
}
.cid-upv34a6Xko .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upv34a6Xko .box {
  left: 20%;
}
.cid-upv34a6Xko .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upv34a6Xko .mbr-section-text,
.cid-upv34a6Xko .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upv34a6Xko .text-box {
    display: none;
  }
  .cid-upv34a6Xko .mbr-section-title,
  .cid-upv34a6Xko .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upv34a6Xko .box {
    display: none;
  }
  .cid-upv34a6Xko .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upv34a6Xko .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upv34a6Xko .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upv34a6Xko .mbr-section-text {
  color: #c1c1c1;
}
.cid-upv34a6Xko .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upv34a6Xko .mbr-section-text DIV {
  text-align: center;
}
.cid-upv34aveEx {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upv34aveEx H1 {
  text-align: center;
}
.cid-upv34aOZsR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upv34b8xK5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upv34b8xK5 h2 {
  text-align: left;
}
.cid-upv34b8xK5 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upv34b8xK5 p {
  color: #767676;
  text-align: left;
}
.cid-upv34b8xK5 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upv34b8xK5 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upv34b8xK5 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upv34b8xK5 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upv34b8xK5 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upv34b8xK5 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upv34b8xK5 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upv34b8xK5 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upv34b8xK5 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upv34b8xK5 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upv34b8xK5 P {
  color: #ffffff;
  text-align: left;
}
.cid-upv34b8xK5 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxgjzp44Jr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxgjzp44Jr H1 {
  color: #000000;
}
.cid-uxgjAtnAEG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgjAtnAEG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgjAtnAEG .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgjAtnAEG .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgjAtnAEG .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgjAtnAEG .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgjAtnAEG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgjAtnAEG .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgjAtnAEG .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgjAtnAEG .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgjAtnAEG .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgjAtnAEG .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-uxgjAtnAEG .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgjAtnAEG .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgjAtnAEG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgjAtnAEG .mbr-text,
.cid-uxgjAtnAEG .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upv34cnKAw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upv34cnKAw H1 {
  color: #000000;
}
.cid-uxgjFT2RO9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgjFT2RO9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgjFT2RO9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgjFT2RO9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgjFT2RO9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgjFT2RO9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgjFT2RO9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgjFT2RO9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgjFT2RO9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgjFT2RO9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgjFT2RO9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgjFT2RO9 .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-uxgjFT2RO9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgjFT2RO9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgjFT2RO9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgjFT2RO9 .mbr-text,
.cid-uxgjFT2RO9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgjGBuRaC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgjGBuRaC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgjGBuRaC .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgjGBuRaC .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgjGBuRaC .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgjGBuRaC .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgjGBuRaC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgjGBuRaC .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgjGBuRaC .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgjGBuRaC .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgjGBuRaC .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgjGBuRaC .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-uxgjGBuRaC .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgjGBuRaC .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgjGBuRaC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgjGBuRaC .mbr-text,
.cid-uxgjGBuRaC .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upv34dakmd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upv34dakmd H1 {
  color: #000000;
}
.cid-uvTZy1mc6N {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvTZy1mc6N h2 {
  text-align: left;
}
.cid-uvTZy1mc6N h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTZy1mc6N p {
  color: #767676;
  text-align: left;
}
.cid-uvTZy1mc6N .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTZy1mc6N .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTZy1mc6N .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTZy1mc6N .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTZy1mc6N .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTZy1mc6N .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTZy1mc6N .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvTZy1mc6N .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvTZy1mc6N .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvTZy1mc6N .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvTZy1mc6N .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTZRIcUQ0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvTZRIcUQ0 H1 {
  color: #000000;
}
.cid-upv34dTzro {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upv34dTzro .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upv34dTzro .text-block {
  position: relative;
  z-index: 0;
}
.cid-upv34dTzro .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upv34dTzro .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upv34dTzro .box {
  right: 20%;
}
.cid-upv34dTzro .text-box {
  right: 0;
}
.cid-upv34dTzro .mbr-section-title,
.cid-upv34dTzro .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upv34dTzro .text-box {
    display: none;
  }
  .cid-upv34dTzro .mbr-section-title,
  .cid-upv34dTzro .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upv34dTzro .box {
    display: none;
  }
  .cid-upv34dTzro .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upv34dTzro .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upv34dTzro .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upv34dTzro .mbr-section-text {
  color: #c1c1c1;
}
.cid-upv34dTzro .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upv34dTzro .mbr-section-text DIV {
  text-align: center;
}
.cid-upv34egaeT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upv34eD9S8 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upv34eD9S8 h2 {
  text-align: left;
}
.cid-upv34eD9S8 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upv34eD9S8 p {
  color: #767676;
  text-align: left;
}
.cid-upv34eD9S8 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upv34eD9S8 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upv34eD9S8 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upv34eD9S8 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upv34eD9S8 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upv34eD9S8 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upv34eD9S8 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upv34eD9S8 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upv34eD9S8 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upv34eD9S8 .mbr-text {
  color: #232323;
}
.cid-upv34eZLPa {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upv34eZLPa .mbr-fallback-image.disabled {
  display: none;
}
.cid-upv34eZLPa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upv34eZLPa .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upv34eZLPa .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upv34eZLPa .container {
    padding: 0 26px;
  }
}
.cid-upv34eZLPa .row {
  justify-content: center;
}
.cid-upv34eZLPa .item {
  margin-bottom: 32px;
}
.cid-upv34eZLPa .item a {
  display: block;
}
.cid-upv34eZLPa .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upv34eZLPa .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upv34eZLPa .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upv34eZLPa .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-upv34eZLPa .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upv34eZLPa .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upv34eZLPa .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-upv34eZLPa .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upv34eZLPa .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upv34eZLPa .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upv34eZLPa .item-title {
  color: #ffffff;
}
.cid-upv34eZLPa .mbr-date {
  color: #cacaca;
}
.cid-upv34eZLPa .mbr-desc {
  color: #cacaca;
}
.cid-upv34fpU9H {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upv34fpU9H .mbr-fallback-image.disabled {
  display: none;
}
.cid-upv34fpU9H .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-upv34fpU9H .container {
    padding: 0 16px;
  }
}
.cid-upv34fpU9H .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upv34fpU9H .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upv34fpU9H .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upv34fpU9H .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upv34fpU9H .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upv34fpU9H .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upv34fpU9H .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upv34fpU9H .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upv34fpU9H .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upv34fpU9H .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-upv34fpU9H .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upv34fpU9H .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upv34fpU9H .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upv34fpU9H .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upv34fpU9H .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upv34fpU9H .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upv34fpU9H .dragArea.row .form-group .form-control:hover,
.cid-upv34fpU9H .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upv34fpU9H .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upv34fpU9H .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upv34fpU9H .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upv34fpU9H .mbr-title {
  color: #ffffff;
}
.cid-upv34fpU9H .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upv34fpU9H .mbr-section-subtitle {
  color: #08323C;
}
.cid-upv34fpU9H .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upv34fpU9H .list {
  color: #08323C;
}
.cid-upv34fpU9H label {
  color: #08323C;
}
.cid-upv34fpU9H H3 {
  color: #000000;
}
.cid-upv34fpU9H P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upv8DkokQV {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upv8DkokQV H1 {
  text-align: center;
}
.cid-uDmAPvQigo {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmAPvQigo .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmAPvQigo .video-block {
    width: 100% !important;
  }
}
.cid-upv8DkWN3H {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upv8DliEZo {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upv8DliEZo .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upv8DliEZo .text-block {
  position: relative;
  z-index: 0;
}
.cid-upv8DliEZo .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upv8DliEZo .box {
  left: 20%;
}
.cid-upv8DliEZo .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upv8DliEZo .mbr-section-text,
.cid-upv8DliEZo .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upv8DliEZo .text-box {
    display: none;
  }
  .cid-upv8DliEZo .mbr-section-title,
  .cid-upv8DliEZo .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upv8DliEZo .box {
    display: none;
  }
  .cid-upv8DliEZo .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upv8DliEZo .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upv8DliEZo .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upv8DliEZo .mbr-section-text {
  color: #c1c1c1;
}
.cid-upv8DliEZo .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upv8DliEZo .mbr-section-text DIV {
  text-align: center;
}
.cid-upv8DlCZeo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upv8DlCZeo H1 {
  text-align: center;
}
.cid-upv8DlVJo0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upv8Dmd76O {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upv8Dmd76O h2 {
  text-align: left;
}
.cid-upv8Dmd76O h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upv8Dmd76O p {
  color: #767676;
  text-align: left;
}
.cid-upv8Dmd76O .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upv8Dmd76O .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upv8Dmd76O .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upv8Dmd76O .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upv8Dmd76O .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upv8Dmd76O .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upv8Dmd76O .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upv8Dmd76O .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upv8Dmd76O .card-img span {
    font-size: 40px !important;
  }
}
.cid-upv8Dmd76O H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upv8Dmd76O P {
  color: #ffffff;
  text-align: left;
}
.cid-upv8Dmd76O H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upv8DmCjLD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upv8DmCjLD H1 {
  color: #000000;
}
.cid-uvmJiJYiaf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uvmJiJYiaf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvmJiJYiaf .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uvmJiJYiaf .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uvmJiJYiaf .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uvmJiJYiaf .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uvmJiJYiaf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvmJiJYiaf .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uvmJiJYiaf .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uvmJiJYiaf .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uvmJiJYiaf .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uvmJiJYiaf .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-uvmJiJYiaf .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uvmJiJYiaf .image-wrapper {
    padding: 1rem;
  }
}
.cid-uvmJiJYiaf .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uvmJiJYiaf .mbr-text,
.cid-uvmJiJYiaf .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upv8Dnu1Nh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upv8Dnu1Nh H1 {
  color: #000000;
}
.cid-uxgnhWK2fX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgnhWK2fX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgnhWK2fX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgnhWK2fX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgnhWK2fX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgnhWK2fX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgnhWK2fX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgnhWK2fX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgnhWK2fX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgnhWK2fX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgnhWK2fX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgnhWK2fX .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-uxgnhWK2fX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgnhWK2fX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgnhWK2fX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgnhWK2fX .mbr-text,
.cid-uxgnhWK2fX .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgniAfetX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgniAfetX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgniAfetX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgniAfetX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgniAfetX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgniAfetX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgniAfetX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgniAfetX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgniAfetX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgniAfetX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgniAfetX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgniAfetX .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-uxgniAfetX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgniAfetX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgniAfetX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgniAfetX .mbr-text,
.cid-uxgniAfetX .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upv8DolHfw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upv8DolHfw H1 {
  color: #000000;
}
.cid-upv8DoIhXw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-upv8DoIhXw h2 {
  text-align: left;
}
.cid-upv8DoIhXw h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upv8DoIhXw p {
  color: #767676;
  text-align: left;
}
.cid-upv8DoIhXw .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upv8DoIhXw .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upv8DoIhXw .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upv8DoIhXw .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upv8DoIhXw .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upv8DoIhXw .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upv8DoIhXw .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-upv8DoIhXw .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-upv8DoIhXw .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-upv8DoIhXw .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-upv8DoIhXw .card-img span {
    font-size: 40px !important;
  }
}
.cid-upv8Dp6T9e {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upv8Dp6T9e .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upv8Dp6T9e .text-block {
  position: relative;
  z-index: 0;
}
.cid-upv8Dp6T9e .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upv8Dp6T9e .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upv8Dp6T9e .box {
  right: 20%;
}
.cid-upv8Dp6T9e .text-box {
  right: 0;
}
.cid-upv8Dp6T9e .mbr-section-title,
.cid-upv8Dp6T9e .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upv8Dp6T9e .text-box {
    display: none;
  }
  .cid-upv8Dp6T9e .mbr-section-title,
  .cid-upv8Dp6T9e .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upv8Dp6T9e .box {
    display: none;
  }
  .cid-upv8Dp6T9e .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upv8Dp6T9e .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upv8Dp6T9e .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upv8Dp6T9e .mbr-section-text {
  color: #c1c1c1;
}
.cid-upv8Dp6T9e .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upv8Dp6T9e .mbr-section-text DIV {
  text-align: center;
}
.cid-upv8Dptg9h {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upv8DpNMiU {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upv8DpNMiU h2 {
  text-align: left;
}
.cid-upv8DpNMiU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upv8DpNMiU p {
  color: #767676;
  text-align: left;
}
.cid-upv8DpNMiU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upv8DpNMiU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upv8DpNMiU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upv8DpNMiU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upv8DpNMiU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upv8DpNMiU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upv8DpNMiU .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upv8DpNMiU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upv8DpNMiU .card-img span {
    font-size: 40px !important;
  }
}
.cid-upv8DpNMiU .mbr-text {
  color: #232323;
}
.cid-upv8Dq987T {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upv8Dq987T .mbr-fallback-image.disabled {
  display: none;
}
.cid-upv8Dq987T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upv8Dq987T .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upv8Dq987T .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upv8Dq987T .container {
    padding: 0 26px;
  }
}
.cid-upv8Dq987T .row {
  justify-content: center;
}
.cid-upv8Dq987T .item {
  margin-bottom: 32px;
}
.cid-upv8Dq987T .item a {
  display: block;
}
.cid-upv8Dq987T .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upv8Dq987T .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upv8Dq987T .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upv8Dq987T .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-upv8Dq987T .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upv8Dq987T .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upv8Dq987T .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-upv8Dq987T .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upv8Dq987T .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upv8Dq987T .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upv8Dq987T .item-title {
  color: #ffffff;
}
.cid-upv8Dq987T .mbr-date {
  color: #cacaca;
}
.cid-upv8Dq987T .mbr-desc {
  color: #cacaca;
}
.cid-upv8Dqv2WI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upv8Dqv2WI .mbr-fallback-image.disabled {
  display: none;
}
.cid-upv8Dqv2WI .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-upv8Dqv2WI .container {
    padding: 0 16px;
  }
}
.cid-upv8Dqv2WI .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upv8Dqv2WI .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upv8Dqv2WI .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upv8Dqv2WI .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upv8Dqv2WI .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upv8Dqv2WI .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upv8Dqv2WI .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upv8Dqv2WI .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upv8Dqv2WI .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upv8Dqv2WI .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-upv8Dqv2WI .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upv8Dqv2WI .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upv8Dqv2WI .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upv8Dqv2WI .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upv8Dqv2WI .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upv8Dqv2WI .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upv8Dqv2WI .dragArea.row .form-group .form-control:hover,
.cid-upv8Dqv2WI .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upv8Dqv2WI .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upv8Dqv2WI .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upv8Dqv2WI .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upv8Dqv2WI .mbr-title {
  color: #ffffff;
}
.cid-upv8Dqv2WI .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upv8Dqv2WI .mbr-section-subtitle {
  color: #08323C;
}
.cid-upv8Dqv2WI .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upv8Dqv2WI .list {
  color: #08323C;
}
.cid-upv8Dqv2WI label {
  color: #08323C;
}
.cid-upv8Dqv2WI H3 {
  color: #000000;
}
.cid-upv8Dqv2WI P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upvcz0HSpC {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvcz0HSpC H1 {
  text-align: center;
}
.cid-uDmLM2TZUl {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmLM2TZUl .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmLM2TZUl .video-block {
    width: 100% !important;
  }
}
.cid-upvcz17nF6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvcz1sfhE {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upvcz1sfhE .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvcz1sfhE .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvcz1sfhE .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvcz1sfhE .box {
  left: 20%;
}
.cid-upvcz1sfhE .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upvcz1sfhE .mbr-section-text,
.cid-upvcz1sfhE .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upvcz1sfhE .text-box {
    display: none;
  }
  .cid-upvcz1sfhE .mbr-section-title,
  .cid-upvcz1sfhE .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvcz1sfhE .box {
    display: none;
  }
  .cid-upvcz1sfhE .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvcz1sfhE .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvcz1sfhE .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvcz1sfhE .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvcz1sfhE .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvcz1sfhE .mbr-section-text DIV {
  text-align: center;
}
.cid-upvcz1MYjA {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvcz1MYjA H1 {
  text-align: center;
}
.cid-upvcz25Vn6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvcz2p88O {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvcz2p88O h2 {
  text-align: left;
}
.cid-upvcz2p88O h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvcz2p88O p {
  color: #767676;
  text-align: left;
}
.cid-upvcz2p88O .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvcz2p88O .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvcz2p88O .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvcz2p88O .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvcz2p88O .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvcz2p88O .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvcz2p88O .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvcz2p88O .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvcz2p88O .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvcz2p88O H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upvcz2p88O P {
  color: #ffffff;
  text-align: left;
}
.cid-upvcz2p88O H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upvcz2O6qL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvcz2O6qL H1 {
  color: #000000;
}
.cid-upvcz38oMg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upvcz38oMg .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvcz38oMg .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upvcz38oMg .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upvcz38oMg .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upvcz38oMg .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upvcz38oMg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvcz38oMg .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upvcz38oMg .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upvcz38oMg .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upvcz38oMg .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upvcz38oMg .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-upvcz38oMg .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upvcz38oMg .image-wrapper {
    padding: 1rem;
  }
}
.cid-upvcz38oMg .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upvcz38oMg .mbr-text,
.cid-upvcz38oMg .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upvcz3LvER {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvcz3LvER H1 {
  color: #000000;
}
.cid-uxkjKDDyGu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkjKDDyGu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkjKDDyGu .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkjKDDyGu .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkjKDDyGu .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkjKDDyGu .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkjKDDyGu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkjKDDyGu .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkjKDDyGu .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkjKDDyGu .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkjKDDyGu .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkjKDDyGu .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-uxkjKDDyGu .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkjKDDyGu .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkjKDDyGu .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkjKDDyGu .mbr-text,
.cid-uxkjKDDyGu .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkjLjWKt3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkjLjWKt3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkjLjWKt3 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkjLjWKt3 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkjLjWKt3 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkjLjWKt3 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkjLjWKt3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkjLjWKt3 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkjLjWKt3 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkjLjWKt3 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkjLjWKt3 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkjLjWKt3 .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-uxkjLjWKt3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkjLjWKt3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkjLjWKt3 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkjLjWKt3 .mbr-text,
.cid-uxkjLjWKt3 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux83perXFh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux83perXFh H1 {
  color: #000000;
}
.cid-ux83ntz0RM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux83ntz0RM h2 {
  text-align: left;
}
.cid-ux83ntz0RM h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux83ntz0RM p {
  color: #767676;
  text-align: left;
}
.cid-ux83ntz0RM .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux83ntz0RM .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux83ntz0RM .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux83ntz0RM .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux83ntz0RM .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux83ntz0RM .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux83ntz0RM .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux83ntz0RM .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux83ntz0RM .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux83ntz0RM .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux83ntz0RM .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux83o7NYx7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux83o7NYx7 H1 {
  color: #000000;
}
.cid-upvcz5nr74 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upvcz5nr74 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvcz5nr74 .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvcz5nr74 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvcz5nr74 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upvcz5nr74 .box {
  right: 20%;
}
.cid-upvcz5nr74 .text-box {
  right: 0;
}
.cid-upvcz5nr74 .mbr-section-title,
.cid-upvcz5nr74 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upvcz5nr74 .text-box {
    display: none;
  }
  .cid-upvcz5nr74 .mbr-section-title,
  .cid-upvcz5nr74 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvcz5nr74 .box {
    display: none;
  }
  .cid-upvcz5nr74 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvcz5nr74 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvcz5nr74 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvcz5nr74 .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvcz5nr74 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvcz5nr74 .mbr-section-text DIV {
  text-align: center;
}
.cid-upvcz5IAB7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvcz62E05 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upvcz62E05 h2 {
  text-align: left;
}
.cid-upvcz62E05 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvcz62E05 p {
  color: #767676;
  text-align: left;
}
.cid-upvcz62E05 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvcz62E05 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvcz62E05 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvcz62E05 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvcz62E05 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvcz62E05 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvcz62E05 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvcz62E05 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvcz62E05 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvcz62E05 .mbr-text {
  color: #232323;
}
.cid-ux83kWBDPg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux83kWBDPg H1 {
  color: #000000;
}
.cid-upvcz6qkxN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upvcz6qkxN .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvcz6qkxN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvcz6qkxN .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upvcz6qkxN .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upvcz6qkxN .container {
    padding: 0 26px;
  }
}
.cid-upvcz6qkxN .row {
  justify-content: center;
}
.cid-upvcz6qkxN .item {
  margin-bottom: 32px;
}
.cid-upvcz6qkxN .item a {
  display: block;
}
.cid-upvcz6qkxN .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upvcz6qkxN .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upvcz6qkxN .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upvcz6qkxN .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-upvcz6qkxN .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upvcz6qkxN .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upvcz6qkxN .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-upvcz6qkxN .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upvcz6qkxN .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upvcz6qkxN .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upvcz6qkxN .item-title {
  color: #ffffff;
}
.cid-upvcz6qkxN .mbr-date {
  color: #cacaca;
}
.cid-upvcz6qkxN .mbr-desc {
  color: #cacaca;
}
.cid-upvcz6MIee {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upvcz6MIee .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvcz6MIee .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-upvcz6MIee .container {
    padding: 0 16px;
  }
}
.cid-upvcz6MIee .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upvcz6MIee .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvcz6MIee .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upvcz6MIee .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvcz6MIee .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upvcz6MIee .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upvcz6MIee .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upvcz6MIee .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upvcz6MIee .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upvcz6MIee .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-upvcz6MIee .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upvcz6MIee .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upvcz6MIee .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upvcz6MIee .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upvcz6MIee .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upvcz6MIee .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upvcz6MIee .dragArea.row .form-group .form-control:hover,
.cid-upvcz6MIee .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upvcz6MIee .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upvcz6MIee .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upvcz6MIee .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upvcz6MIee .mbr-title {
  color: #ffffff;
}
.cid-upvcz6MIee .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upvcz6MIee .mbr-section-subtitle {
  color: #08323C;
}
.cid-upvcz6MIee .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upvcz6MIee .list {
  color: #08323C;
}
.cid-upvcz6MIee label {
  color: #08323C;
}
.cid-upvcz6MIee H3 {
  color: #000000;
}
.cid-upvcz6MIee P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upvesaMRas {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvesaMRas H1 {
  text-align: center;
}
.cid-uDmMbl5B3j {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmMbl5B3j .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmMbl5B3j .video-block {
    width: 100% !important;
  }
}
.cid-upvesbdTiF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvesbzBid {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upvesbzBid .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvesbzBid .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvesbzBid .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvesbzBid .box {
  left: 20%;
}
.cid-upvesbzBid .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upvesbzBid .mbr-section-text,
.cid-upvesbzBid .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upvesbzBid .text-box {
    display: none;
  }
  .cid-upvesbzBid .mbr-section-title,
  .cid-upvesbzBid .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvesbzBid .box {
    display: none;
  }
  .cid-upvesbzBid .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvesbzBid .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvesbzBid .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvesbzBid .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvesbzBid .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvesbzBid .mbr-section-text DIV {
  text-align: center;
}
.cid-upvesbVWB9 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvesbVWB9 H1 {
  text-align: center;
}
.cid-upvescfXhy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvescBmuh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvescBmuh h2 {
  text-align: left;
}
.cid-upvescBmuh h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvescBmuh p {
  color: #767676;
  text-align: left;
}
.cid-upvescBmuh .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvescBmuh .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvescBmuh .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvescBmuh .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvescBmuh .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvescBmuh .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvescBmuh .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvescBmuh .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvescBmuh .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvescBmuh H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upvescBmuh P {
  color: #ffffff;
  text-align: left;
}
.cid-upvescBmuh H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upvesd1EVs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvesd1EVs H1 {
  color: #000000;
}
.cid-upvesdnam1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upvesdnam1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvesdnam1 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upvesdnam1 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upvesdnam1 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upvesdnam1 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upvesdnam1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvesdnam1 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upvesdnam1 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upvesdnam1 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upvesdnam1 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upvesdnam1 .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-upvesdnam1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upvesdnam1 .image-wrapper {
    padding: 1rem;
  }
}
.cid-upvesdnam1 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upvesdnam1 .mbr-text,
.cid-upvesdnam1 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upvesdWjGW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvesdWjGW H1 {
  color: #000000;
}
.cid-uxkI2LpPOI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkI2LpPOI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkI2LpPOI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkI2LpPOI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkI2LpPOI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkI2LpPOI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkI2LpPOI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkI2LpPOI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkI2LpPOI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkI2LpPOI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkI2LpPOI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkI2LpPOI .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-uxkI2LpPOI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkI2LpPOI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkI2LpPOI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkI2LpPOI .mbr-text,
.cid-uxkI2LpPOI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkI3xeBtb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkI3xeBtb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkI3xeBtb .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkI3xeBtb .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkI3xeBtb .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkI3xeBtb .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkI3xeBtb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkI3xeBtb .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkI3xeBtb .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkI3xeBtb .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkI3xeBtb .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkI3xeBtb .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-uxkI3xeBtb .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkI3xeBtb .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkI3xeBtb .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkI3xeBtb .mbr-text,
.cid-uxkI3xeBtb .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwEEnGo5KD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwEEnGo5KD H1 {
  color: #000000;
}
.cid-uwEElRslhD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwEElRslhD h2 {
  text-align: left;
}
.cid-uwEElRslhD h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwEElRslhD p {
  color: #767676;
  text-align: left;
}
.cid-uwEElRslhD .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwEElRslhD .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwEElRslhD .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwEElRslhD .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwEElRslhD .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwEElRslhD .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwEElRslhD .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwEElRslhD .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwEElRslhD .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwEElRslhD .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwEElRslhD .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwEEmzIInZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwEEmzIInZ H1 {
  color: #000000;
}
.cid-upvesfArIx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upvesfArIx .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvesfArIx .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvesfArIx .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvesfArIx .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upvesfArIx .box {
  right: 20%;
}
.cid-upvesfArIx .text-box {
  right: 0;
}
.cid-upvesfArIx .mbr-section-title,
.cid-upvesfArIx .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upvesfArIx .text-box {
    display: none;
  }
  .cid-upvesfArIx .mbr-section-title,
  .cid-upvesfArIx .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvesfArIx .box {
    display: none;
  }
  .cid-upvesfArIx .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvesfArIx .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvesfArIx .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvesfArIx .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvesfArIx .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvesfArIx .mbr-section-text DIV {
  text-align: center;
}
.cid-upvesfWPZ7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvesgh7hE {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upvesgh7hE h2 {
  text-align: left;
}
.cid-upvesgh7hE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvesgh7hE p {
  color: #767676;
  text-align: left;
}
.cid-upvesgh7hE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvesgh7hE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvesgh7hE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvesgh7hE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvesgh7hE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvesgh7hE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvesgh7hE .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvesgh7hE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvesgh7hE .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvesgh7hE .mbr-text {
  color: #232323;
}
.cid-upvesgFNZ2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upvesgFNZ2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvesgFNZ2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvesgFNZ2 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upvesgFNZ2 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upvesgFNZ2 .container {
    padding: 0 26px;
  }
}
.cid-upvesgFNZ2 .row {
  justify-content: center;
}
.cid-upvesgFNZ2 .item {
  margin-bottom: 32px;
}
.cid-upvesgFNZ2 .item a {
  display: block;
}
.cid-upvesgFNZ2 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upvesgFNZ2 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upvesgFNZ2 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upvesgFNZ2 .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-upvesgFNZ2 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upvesgFNZ2 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upvesgFNZ2 .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-upvesgFNZ2 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upvesgFNZ2 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upvesgFNZ2 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upvesgFNZ2 .item-title {
  color: #ffffff;
}
.cid-upvesgFNZ2 .mbr-date {
  color: #cacaca;
}
.cid-upvesgFNZ2 .mbr-desc {
  color: #cacaca;
}
.cid-upvesh2QOx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upvesh2QOx .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvesh2QOx .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-upvesh2QOx .container {
    padding: 0 16px;
  }
}
.cid-upvesh2QOx .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upvesh2QOx .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvesh2QOx .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upvesh2QOx .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvesh2QOx .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upvesh2QOx .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upvesh2QOx .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upvesh2QOx .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upvesh2QOx .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upvesh2QOx .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-upvesh2QOx .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upvesh2QOx .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upvesh2QOx .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upvesh2QOx .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upvesh2QOx .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upvesh2QOx .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upvesh2QOx .dragArea.row .form-group .form-control:hover,
.cid-upvesh2QOx .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upvesh2QOx .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upvesh2QOx .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upvesh2QOx .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upvesh2QOx .mbr-title {
  color: #ffffff;
}
.cid-upvesh2QOx .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upvesh2QOx .mbr-section-subtitle {
  color: #08323C;
}
.cid-upvesh2QOx .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upvesh2QOx .list {
  color: #08323C;
}
.cid-upvesh2QOx label {
  color: #08323C;
}
.cid-upvesh2QOx H3 {
  color: #000000;
}
.cid-upvesh2QOx P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upvgoMnJuv {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvgoMnJuv H1 {
  text-align: center;
}
.cid-uDmIXOk53s {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmIXOk53s .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmIXOk53s .video-block {
    width: 100% !important;
  }
}
.cid-upvgoMQBDz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvgoNb3sM {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upvgoNb3sM .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvgoNb3sM .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvgoNb3sM .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvgoNb3sM .box {
  left: 20%;
}
.cid-upvgoNb3sM .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upvgoNb3sM .mbr-section-text,
.cid-upvgoNb3sM .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upvgoNb3sM .text-box {
    display: none;
  }
  .cid-upvgoNb3sM .mbr-section-title,
  .cid-upvgoNb3sM .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvgoNb3sM .box {
    display: none;
  }
  .cid-upvgoNb3sM .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvgoNb3sM .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvgoNb3sM .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvgoNb3sM .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvgoNb3sM .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvgoNb3sM .mbr-section-text DIV {
  text-align: center;
}
.cid-upvgoNxX9f {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvgoNxX9f H1 {
  text-align: center;
}
.cid-upvgoNTDtm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvgoOcVEC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvgoOcVEC h2 {
  text-align: left;
}
.cid-upvgoOcVEC h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvgoOcVEC p {
  color: #767676;
  text-align: left;
}
.cid-upvgoOcVEC .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvgoOcVEC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvgoOcVEC .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvgoOcVEC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvgoOcVEC .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvgoOcVEC .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvgoOcVEC .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvgoOcVEC .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvgoOcVEC .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvgoOcVEC H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upvgoOcVEC P {
  color: #ffffff;
  text-align: left;
}
.cid-upvgoOcVEC H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upvgoOCcvm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvgoOCcvm H1 {
  color: #000000;
}
.cid-uvOFykUTRI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uvOFykUTRI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOFykUTRI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uvOFykUTRI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uvOFykUTRI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uvOFykUTRI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uvOFykUTRI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOFykUTRI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uvOFykUTRI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uvOFykUTRI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uvOFykUTRI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uvOFykUTRI .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-uvOFykUTRI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOFykUTRI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uvOFykUTRI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uvOFykUTRI .mbr-text,
.cid-uvOFykUTRI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPNkLU62A {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uvPNkLU62A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPNkLU62A .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uvPNkLU62A .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uvPNkLU62A .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uvPNkLU62A .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uvPNkLU62A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvPNkLU62A .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uvPNkLU62A .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uvPNkLU62A .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uvPNkLU62A .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uvPNkLU62A .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-uvPNkLU62A .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPNkLU62A .image-wrapper {
    padding: 1rem;
  }
}
.cid-uvPNkLU62A .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uvPNkLU62A .mbr-text,
.cid-uvPNkLU62A .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upvgoPuMWv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvgoPuMWv H1 {
  color: #000000;
}
.cid-uzGtVEWPZN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGtVEWPZN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGtVEWPZN .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGtVEWPZN .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGtVEWPZN .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGtVEWPZN .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGtVEWPZN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGtVEWPZN .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGtVEWPZN .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGtVEWPZN .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGtVEWPZN .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGtVEWPZN .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-uzGtVEWPZN .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGtVEWPZN .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGtVEWPZN .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGtVEWPZN .mbr-text,
.cid-uzGtVEWPZN .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGtWeZWPS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGtWeZWPS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGtWeZWPS .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGtWeZWPS .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGtWeZWPS .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGtWeZWPS .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGtWeZWPS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGtWeZWPS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGtWeZWPS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGtWeZWPS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGtWeZWPS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGtWeZWPS .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-uzGtWeZWPS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGtWeZWPS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGtWeZWPS .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGtWeZWPS .mbr-text,
.cid-uzGtWeZWPS .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upvgoQpgIn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upvgoQpgIn H1 {
  color: #000000;
}
.cid-uxkaS7rGqm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxkaS7rGqm h2 {
  text-align: left;
}
.cid-uxkaS7rGqm h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxkaS7rGqm p {
  color: #767676;
  text-align: left;
}
.cid-uxkaS7rGqm .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxkaS7rGqm .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxkaS7rGqm .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxkaS7rGqm .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxkaS7rGqm .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxkaS7rGqm .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxkaS7rGqm .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxkaS7rGqm .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxkaS7rGqm .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxkaS7rGqm .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxkaS7rGqm .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvgoRfLaS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upvgoRfLaS .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvgoRfLaS .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvgoRfLaS .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvgoRfLaS .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upvgoRfLaS .box {
  right: 20%;
}
.cid-upvgoRfLaS .text-box {
  right: 0;
}
.cid-upvgoRfLaS .mbr-section-title,
.cid-upvgoRfLaS .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upvgoRfLaS .text-box {
    display: none;
  }
  .cid-upvgoRfLaS .mbr-section-title,
  .cid-upvgoRfLaS .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvgoRfLaS .box {
    display: none;
  }
  .cid-upvgoRfLaS .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvgoRfLaS .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvgoRfLaS .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvgoRfLaS .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvgoRfLaS .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvgoRfLaS .mbr-section-text DIV {
  text-align: center;
}
.cid-upvgoREQ62 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvgoS1EpW {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upvgoS1EpW h2 {
  text-align: left;
}
.cid-upvgoS1EpW h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvgoS1EpW p {
  color: #767676;
  text-align: left;
}
.cid-upvgoS1EpW .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvgoS1EpW .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvgoS1EpW .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvgoS1EpW .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvgoS1EpW .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvgoS1EpW .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvgoS1EpW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvgoS1EpW .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvgoS1EpW .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvgoS1EpW .mbr-text {
  color: #232323;
}
.cid-upvgoSoN1q {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upvgoSoN1q .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvgoSoN1q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvgoSoN1q .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upvgoSoN1q .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upvgoSoN1q .container {
    padding: 0 26px;
  }
}
.cid-upvgoSoN1q .row {
  justify-content: center;
}
.cid-upvgoSoN1q .item {
  margin-bottom: 32px;
}
.cid-upvgoSoN1q .item a {
  display: block;
}
.cid-upvgoSoN1q .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upvgoSoN1q .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upvgoSoN1q .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upvgoSoN1q .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-upvgoSoN1q .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upvgoSoN1q .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upvgoSoN1q .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-upvgoSoN1q .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upvgoSoN1q .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upvgoSoN1q .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upvgoSoN1q .item-title {
  color: #ffffff;
}
.cid-upvgoSoN1q .mbr-date {
  color: #cacaca;
}
.cid-upvgoSoN1q .mbr-desc {
  color: #cacaca;
}
.cid-upvgoSNv9H {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upvgoSNv9H .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvgoSNv9H .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-upvgoSNv9H .container {
    padding: 0 16px;
  }
}
.cid-upvgoSNv9H .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upvgoSNv9H .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvgoSNv9H .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upvgoSNv9H .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvgoSNv9H .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upvgoSNv9H .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upvgoSNv9H .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upvgoSNv9H .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upvgoSNv9H .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upvgoSNv9H .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-upvgoSNv9H .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upvgoSNv9H .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upvgoSNv9H .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upvgoSNv9H .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upvgoSNv9H .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upvgoSNv9H .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upvgoSNv9H .dragArea.row .form-group .form-control:hover,
.cid-upvgoSNv9H .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upvgoSNv9H .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upvgoSNv9H .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upvgoSNv9H .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upvgoSNv9H .mbr-title {
  color: #ffffff;
}
.cid-upvgoSNv9H .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upvgoSNv9H .mbr-section-subtitle {
  color: #08323C;
}
.cid-upvgoSNv9H .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upvgoSNv9H .list {
  color: #08323C;
}
.cid-upvgoSNv9H label {
  color: #08323C;
}
.cid-upvgoSNv9H H3 {
  color: #000000;
}
.cid-upvgoSNv9H P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upvFjsWcg8 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvFjsWcg8 H1 {
  text-align: center;
}
.cid-uDmMouo79J {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmMouo79J .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmMouo79J .video-block {
    width: 100% !important;
  }
}
.cid-upvFjtnetl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvFjtLsKn {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upvFjtLsKn .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvFjtLsKn .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvFjtLsKn .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvFjtLsKn .box {
  left: 20%;
}
.cid-upvFjtLsKn .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upvFjtLsKn .mbr-section-text,
.cid-upvFjtLsKn .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upvFjtLsKn .text-box {
    display: none;
  }
  .cid-upvFjtLsKn .mbr-section-title,
  .cid-upvFjtLsKn .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvFjtLsKn .box {
    display: none;
  }
  .cid-upvFjtLsKn .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvFjtLsKn .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvFjtLsKn .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvFjtLsKn .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvFjtLsKn .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvFjtLsKn .mbr-section-text DIV {
  text-align: center;
}
.cid-upvFju6vfz {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvFju6vfz H1 {
  text-align: center;
}
.cid-upvFjusSWC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvFjuP35O {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvFjuP35O h2 {
  text-align: left;
}
.cid-upvFjuP35O h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvFjuP35O p {
  color: #767676;
  text-align: left;
}
.cid-upvFjuP35O .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvFjuP35O .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvFjuP35O .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvFjuP35O .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvFjuP35O .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvFjuP35O .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvFjuP35O .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvFjuP35O .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvFjuP35O .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvFjuP35O H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upvFjuP35O P {
  color: #ffffff;
  text-align: left;
}
.cid-upvFjuP35O H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upvFjwGyx5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvFjwGyx5 H1 {
  color: #000000;
}
.cid-uxkJiZKfEQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkJiZKfEQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkJiZKfEQ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkJiZKfEQ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkJiZKfEQ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkJiZKfEQ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkJiZKfEQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkJiZKfEQ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkJiZKfEQ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkJiZKfEQ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkJiZKfEQ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkJiZKfEQ .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-uxkJiZKfEQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkJiZKfEQ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkJiZKfEQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkJiZKfEQ .mbr-text,
.cid-uxkJiZKfEQ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkJjIbVBt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkJjIbVBt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkJjIbVBt .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkJjIbVBt .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkJjIbVBt .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkJjIbVBt .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkJjIbVBt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkJjIbVBt .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkJjIbVBt .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkJjIbVBt .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkJjIbVBt .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkJjIbVBt .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-uxkJjIbVBt .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkJjIbVBt .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkJjIbVBt .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkJjIbVBt .mbr-text,
.cid-uxkJjIbVBt .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upvFjxxQN3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upvFjxxQN3 H1 {
  color: #000000;
}
.cid-uxkJkUL08z {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxkJkUL08z h2 {
  text-align: left;
}
.cid-uxkJkUL08z h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxkJkUL08z p {
  color: #767676;
  text-align: left;
}
.cid-uxkJkUL08z .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxkJkUL08z .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxkJkUL08z .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxkJkUL08z .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxkJkUL08z .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxkJkUL08z .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxkJkUL08z .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxkJkUL08z .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxkJkUL08z .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxkJkUL08z .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxkJkUL08z .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxkJlACJQS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxkJlACJQS H1 {
  color: #000000;
}
.cid-upvFjykUWX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upvFjykUWX .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvFjykUWX .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvFjykUWX .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvFjykUWX .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upvFjykUWX .box {
  right: 20%;
}
.cid-upvFjykUWX .text-box {
  right: 0;
}
.cid-upvFjykUWX .mbr-section-title,
.cid-upvFjykUWX .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upvFjykUWX .text-box {
    display: none;
  }
  .cid-upvFjykUWX .mbr-section-title,
  .cid-upvFjykUWX .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvFjykUWX .box {
    display: none;
  }
  .cid-upvFjykUWX .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvFjykUWX .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvFjykUWX .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvFjykUWX .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvFjykUWX .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvFjykUWX .mbr-section-text DIV {
  text-align: center;
}
.cid-upvFjyI1fb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvFjz4AD9 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upvFjz4AD9 h2 {
  text-align: left;
}
.cid-upvFjz4AD9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvFjz4AD9 p {
  color: #767676;
  text-align: left;
}
.cid-upvFjz4AD9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvFjz4AD9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvFjz4AD9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvFjz4AD9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvFjz4AD9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvFjz4AD9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvFjz4AD9 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvFjz4AD9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvFjz4AD9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvFjz4AD9 .mbr-text {
  color: #232323;
}
.cid-upvFjzuZ2E {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upvFjzuZ2E .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvFjzuZ2E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvFjzuZ2E .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upvFjzuZ2E .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upvFjzuZ2E .container {
    padding: 0 26px;
  }
}
.cid-upvFjzuZ2E .row {
  justify-content: center;
}
.cid-upvFjzuZ2E .item {
  margin-bottom: 32px;
}
.cid-upvFjzuZ2E .item a {
  display: block;
}
.cid-upvFjzuZ2E .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upvFjzuZ2E .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upvFjzuZ2E .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upvFjzuZ2E .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-upvFjzuZ2E .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upvFjzuZ2E .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upvFjzuZ2E .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-upvFjzuZ2E .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upvFjzuZ2E .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upvFjzuZ2E .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upvFjzuZ2E .item-title {
  color: #ffffff;
}
.cid-upvFjzuZ2E .mbr-date {
  color: #cacaca;
}
.cid-upvFjzuZ2E .mbr-desc {
  color: #cacaca;
}
.cid-upvFjzS694 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upvFjzS694 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvFjzS694 .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-upvFjzS694 .container {
    padding: 0 16px;
  }
}
.cid-upvFjzS694 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upvFjzS694 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvFjzS694 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upvFjzS694 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvFjzS694 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upvFjzS694 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upvFjzS694 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upvFjzS694 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upvFjzS694 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upvFjzS694 .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-upvFjzS694 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upvFjzS694 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upvFjzS694 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upvFjzS694 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upvFjzS694 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upvFjzS694 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upvFjzS694 .dragArea.row .form-group .form-control:hover,
.cid-upvFjzS694 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upvFjzS694 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upvFjzS694 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upvFjzS694 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upvFjzS694 .mbr-title {
  color: #ffffff;
}
.cid-upvFjzS694 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upvFjzS694 .mbr-section-subtitle {
  color: #08323C;
}
.cid-upvFjzS694 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upvFjzS694 .list {
  color: #08323C;
}
.cid-upvFjzS694 label {
  color: #08323C;
}
.cid-upvFjzS694 H3 {
  color: #000000;
}
.cid-upvFjzS694 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upvGNfgf0y {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvGNfgf0y H1 {
  text-align: center;
}
.cid-uDmMNufVQB {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmMNufVQB .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmMNufVQB .video-block {
    width: 100% !important;
  }
}
.cid-upvGNfRzAL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvGNgi0qf {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upvGNgi0qf .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvGNgi0qf .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvGNgi0qf .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvGNgi0qf .box {
  left: 20%;
}
.cid-upvGNgi0qf .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upvGNgi0qf .mbr-section-text,
.cid-upvGNgi0qf .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upvGNgi0qf .text-box {
    display: none;
  }
  .cid-upvGNgi0qf .mbr-section-title,
  .cid-upvGNgi0qf .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvGNgi0qf .box {
    display: none;
  }
  .cid-upvGNgi0qf .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvGNgi0qf .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvGNgi0qf .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvGNgi0qf .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvGNgi0qf .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvGNgi0qf .mbr-section-text DIV {
  text-align: center;
}
.cid-upvGNgMzKE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvGNgMzKE H1 {
  text-align: center;
}
.cid-upvGNhctPS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvGNhE6im {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvGNhE6im h2 {
  text-align: left;
}
.cid-upvGNhE6im h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvGNhE6im p {
  color: #767676;
  text-align: left;
}
.cid-upvGNhE6im .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvGNhE6im .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvGNhE6im .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvGNhE6im .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvGNhE6im .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvGNhE6im .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvGNhE6im .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvGNhE6im .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvGNhE6im .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvGNhE6im H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upvGNhE6im P {
  color: #ffffff;
  text-align: left;
}
.cid-upvGNhE6im H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upvGNibKDS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvGNibKDS H1 {
  color: #000000;
}
.cid-upvGNiD0An {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upvGNiD0An .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvGNiD0An .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upvGNiD0An .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upvGNiD0An .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upvGNiD0An .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upvGNiD0An .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvGNiD0An .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upvGNiD0An .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upvGNiD0An .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upvGNiD0An .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upvGNiD0An .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-upvGNiD0An .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upvGNiD0An .image-wrapper {
    padding: 1rem;
  }
}
.cid-upvGNiD0An .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upvGNiD0An .mbr-text,
.cid-upvGNiD0An .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upvHcdeipe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtqZJSCnV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwtqZJSCnV H1 {
  color: #000000;
}
.cid-uxkMXIJP7l {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkMXIJP7l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkMXIJP7l .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkMXIJP7l .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkMXIJP7l .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkMXIJP7l .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkMXIJP7l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkMXIJP7l .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkMXIJP7l .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkMXIJP7l .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkMXIJP7l .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkMXIJP7l .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-uxkMXIJP7l .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkMXIJP7l .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkMXIJP7l .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkMXIJP7l .mbr-text,
.cid-uxkMXIJP7l .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkMYrxK9Y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkMYrxK9Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkMYrxK9Y .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkMYrxK9Y .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkMYrxK9Y .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkMYrxK9Y .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkMYrxK9Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkMYrxK9Y .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkMYrxK9Y .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkMYrxK9Y .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkMYrxK9Y .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkMYrxK9Y .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-uxkMYrxK9Y .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkMYrxK9Y .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkMYrxK9Y .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkMYrxK9Y .mbr-text,
.cid-uxkMYrxK9Y .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtqikaDoi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtqikaDoi H1 {
  color: #000000;
}
.cid-uwtqfIUjYK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwtqfIUjYK h2 {
  text-align: left;
}
.cid-uwtqfIUjYK h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtqfIUjYK p {
  color: #767676;
  text-align: left;
}
.cid-uwtqfIUjYK .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtqfIUjYK .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtqfIUjYK .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtqfIUjYK .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtqfIUjYK .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtqfIUjYK .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtqfIUjYK .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwtqfIUjYK .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwtqfIUjYK .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwtqfIUjYK .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwtqfIUjYK .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtqgjbIDd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtqgjbIDd H1 {
  color: #000000;
}
.cid-upvGNlmyNv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upvGNlmyNv .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvGNlmyNv .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvGNlmyNv .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvGNlmyNv .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upvGNlmyNv .box {
  right: 20%;
}
.cid-upvGNlmyNv .text-box {
  right: 0;
}
.cid-upvGNlmyNv .mbr-section-title,
.cid-upvGNlmyNv .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upvGNlmyNv .text-box {
    display: none;
  }
  .cid-upvGNlmyNv .mbr-section-title,
  .cid-upvGNlmyNv .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvGNlmyNv .box {
    display: none;
  }
  .cid-upvGNlmyNv .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvGNlmyNv .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvGNlmyNv .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvGNlmyNv .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvGNlmyNv .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvGNlmyNv .mbr-section-text DIV {
  text-align: center;
}
.cid-upvGNlVlte {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvGNmnvpp {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upvGNmnvpp h2 {
  text-align: left;
}
.cid-upvGNmnvpp h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvGNmnvpp p {
  color: #767676;
  text-align: left;
}
.cid-upvGNmnvpp .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvGNmnvpp .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvGNmnvpp .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvGNmnvpp .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvGNmnvpp .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvGNmnvpp .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvGNmnvpp .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvGNmnvpp .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvGNmnvpp .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvGNmnvpp .mbr-text {
  color: #232323;
}
.cid-upvGNmSPAP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upvGNmSPAP .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvGNmSPAP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvGNmSPAP .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upvGNmSPAP .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upvGNmSPAP .container {
    padding: 0 26px;
  }
}
.cid-upvGNmSPAP .row {
  justify-content: center;
}
.cid-upvGNmSPAP .item {
  margin-bottom: 32px;
}
.cid-upvGNmSPAP .item a {
  display: block;
}
.cid-upvGNmSPAP .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upvGNmSPAP .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upvGNmSPAP .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upvGNmSPAP .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-upvGNmSPAP .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upvGNmSPAP .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upvGNmSPAP .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-upvGNmSPAP .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upvGNmSPAP .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upvGNmSPAP .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upvGNmSPAP .item-title {
  color: #ffffff;
}
.cid-upvGNmSPAP .mbr-date {
  color: #cacaca;
}
.cid-upvGNmSPAP .mbr-desc {
  color: #cacaca;
}
.cid-upvGNnmpWb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upvGNnmpWb .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvGNnmpWb .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-upvGNnmpWb .container {
    padding: 0 16px;
  }
}
.cid-upvGNnmpWb .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upvGNnmpWb .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvGNnmpWb .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upvGNnmpWb .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvGNnmpWb .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upvGNnmpWb .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upvGNnmpWb .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upvGNnmpWb .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upvGNnmpWb .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upvGNnmpWb .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-upvGNnmpWb .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upvGNnmpWb .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upvGNnmpWb .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upvGNnmpWb .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upvGNnmpWb .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upvGNnmpWb .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upvGNnmpWb .dragArea.row .form-group .form-control:hover,
.cid-upvGNnmpWb .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upvGNnmpWb .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upvGNnmpWb .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upvGNnmpWb .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upvGNnmpWb .mbr-title {
  color: #ffffff;
}
.cid-upvGNnmpWb .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upvGNnmpWb .mbr-section-subtitle {
  color: #08323C;
}
.cid-upvGNnmpWb .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upvGNnmpWb .list {
  color: #08323C;
}
.cid-upvGNnmpWb label {
  color: #08323C;
}
.cid-upvGNnmpWb H3 {
  color: #000000;
}
.cid-upvGNnmpWb P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upvJtg2Plx {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvJtg2Plx H1 {
  text-align: center;
}
.cid-uDmNcdGmjP {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmNcdGmjP .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmNcdGmjP .video-block {
    width: 100% !important;
  }
}
.cid-upvJtgIzYK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvJthadiv {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upvJthadiv .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvJthadiv .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvJthadiv .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvJthadiv .box {
  left: 20%;
}
.cid-upvJthadiv .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upvJthadiv .mbr-section-text,
.cid-upvJthadiv .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upvJthadiv .text-box {
    display: none;
  }
  .cid-upvJthadiv .mbr-section-title,
  .cid-upvJthadiv .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvJthadiv .box {
    display: none;
  }
  .cid-upvJthadiv .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvJthadiv .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvJthadiv .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvJthadiv .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvJthadiv .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvJthadiv .mbr-section-text DIV {
  text-align: center;
}
.cid-upvJthBX5a {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvJthBX5a H1 {
  text-align: center;
}
.cid-upvJti33Kl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvJtishVa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvJtishVa h2 {
  text-align: left;
}
.cid-upvJtishVa h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvJtishVa p {
  color: #767676;
  text-align: left;
}
.cid-upvJtishVa .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvJtishVa .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvJtishVa .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvJtishVa .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvJtishVa .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvJtishVa .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvJtishVa .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvJtishVa .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvJtishVa .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvJtishVa H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upvJtishVa P {
  color: #ffffff;
  text-align: left;
}
.cid-upvJtishVa H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upvJtiYDHa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvJtiYDHa H1 {
  color: #000000;
}
.cid-upvJtjnEZ0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upvJtjnEZ0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvJtjnEZ0 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upvJtjnEZ0 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upvJtjnEZ0 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upvJtjnEZ0 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upvJtjnEZ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvJtjnEZ0 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upvJtjnEZ0 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upvJtjnEZ0 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upvJtjnEZ0 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upvJtjnEZ0 .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-upvJtjnEZ0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upvJtjnEZ0 .image-wrapper {
    padding: 1rem;
  }
}
.cid-upvJtjnEZ0 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upvJtjnEZ0 .mbr-text,
.cid-upvJtjnEZ0 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upvJtk0vkS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvJtkrzaj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvJtkrzaj H1 {
  color: #000000;
}
.cid-uxkPlT3qtU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkPlT3qtU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkPlT3qtU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkPlT3qtU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkPlT3qtU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkPlT3qtU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkPlT3qtU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkPlT3qtU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkPlT3qtU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkPlT3qtU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkPlT3qtU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkPlT3qtU .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-uxkPlT3qtU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkPlT3qtU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkPlT3qtU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkPlT3qtU .mbr-text,
.cid-uxkPlT3qtU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkPmYT4Ei {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkPmYT4Ei .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkPmYT4Ei .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkPmYT4Ei .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkPmYT4Ei .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkPmYT4Ei .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkPmYT4Ei .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkPmYT4Ei .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkPmYT4Ei .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkPmYT4Ei .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkPmYT4Ei .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkPmYT4Ei .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-uxkPmYT4Ei .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkPmYT4Ei .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkPmYT4Ei .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkPmYT4Ei .mbr-text,
.cid-uxkPmYT4Ei .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFlmnBXTi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFlmnBXTi H1 {
  color: #000000;
}
.cid-uwFlkkVceT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwFlkkVceT h2 {
  text-align: left;
}
.cid-uwFlkkVceT h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFlkkVceT p {
  color: #767676;
  text-align: left;
}
.cid-uwFlkkVceT .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFlkkVceT .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFlkkVceT .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFlkkVceT .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFlkkVceT .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFlkkVceT .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFlkkVceT .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwFlkkVceT .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwFlkkVceT .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwFlkkVceT .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwFlkkVceT .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFllazsxF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFllazsxF H1 {
  color: #000000;
}
.cid-upvJtmueMe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upvJtmueMe .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvJtmueMe .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvJtmueMe .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvJtmueMe .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upvJtmueMe .box {
  right: 20%;
}
.cid-upvJtmueMe .text-box {
  right: 0;
}
.cid-upvJtmueMe .mbr-section-title,
.cid-upvJtmueMe .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upvJtmueMe .text-box {
    display: none;
  }
  .cid-upvJtmueMe .mbr-section-title,
  .cid-upvJtmueMe .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvJtmueMe .box {
    display: none;
  }
  .cid-upvJtmueMe .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvJtmueMe .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvJtmueMe .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvJtmueMe .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvJtmueMe .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvJtmueMe .mbr-section-text DIV {
  text-align: center;
}
.cid-upvJtmY3lh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvJtnqD4j {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upvJtnqD4j h2 {
  text-align: left;
}
.cid-upvJtnqD4j h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvJtnqD4j p {
  color: #767676;
  text-align: left;
}
.cid-upvJtnqD4j .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvJtnqD4j .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvJtnqD4j .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvJtnqD4j .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvJtnqD4j .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvJtnqD4j .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvJtnqD4j .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvJtnqD4j .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvJtnqD4j .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvJtnqD4j .mbr-text {
  color: #232323;
}
.cid-upvJtnUhLl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upvJtnUhLl .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvJtnUhLl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvJtnUhLl .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upvJtnUhLl .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upvJtnUhLl .container {
    padding: 0 26px;
  }
}
.cid-upvJtnUhLl .row {
  justify-content: center;
}
.cid-upvJtnUhLl .item {
  margin-bottom: 32px;
}
.cid-upvJtnUhLl .item a {
  display: block;
}
.cid-upvJtnUhLl .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upvJtnUhLl .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upvJtnUhLl .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upvJtnUhLl .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-upvJtnUhLl .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upvJtnUhLl .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upvJtnUhLl .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-upvJtnUhLl .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upvJtnUhLl .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upvJtnUhLl .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upvJtnUhLl .item-title {
  color: #ffffff;
}
.cid-upvJtnUhLl .mbr-date {
  color: #cacaca;
}
.cid-upvJtnUhLl .mbr-desc {
  color: #cacaca;
}
.cid-upvJtopzJs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upvJtopzJs .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvJtopzJs .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-upvJtopzJs .container {
    padding: 0 16px;
  }
}
.cid-upvJtopzJs .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upvJtopzJs .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvJtopzJs .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upvJtopzJs .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvJtopzJs .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upvJtopzJs .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upvJtopzJs .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upvJtopzJs .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upvJtopzJs .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upvJtopzJs .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-upvJtopzJs .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upvJtopzJs .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upvJtopzJs .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upvJtopzJs .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upvJtopzJs .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upvJtopzJs .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upvJtopzJs .dragArea.row .form-group .form-control:hover,
.cid-upvJtopzJs .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upvJtopzJs .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upvJtopzJs .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upvJtopzJs .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upvJtopzJs .mbr-title {
  color: #ffffff;
}
.cid-upvJtopzJs .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upvJtopzJs .mbr-section-subtitle {
  color: #08323C;
}
.cid-upvJtopzJs .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upvJtopzJs .list {
  color: #08323C;
}
.cid-upvJtopzJs label {
  color: #08323C;
}
.cid-upvJtopzJs H3 {
  color: #000000;
}
.cid-upvJtopzJs P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upvNqQ8zyU {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvNqQ8zyU H1 {
  text-align: center;
}
.cid-uDmRZZmXlJ {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmRZZmXlJ .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmRZZmXlJ .video-block {
    width: 100% !important;
  }
}
.cid-upvNqQOFaC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvNqRlN4o {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upvNqRlN4o .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvNqRlN4o .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvNqRlN4o .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvNqRlN4o .box {
  left: 20%;
}
.cid-upvNqRlN4o .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upvNqRlN4o .mbr-section-text,
.cid-upvNqRlN4o .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upvNqRlN4o .text-box {
    display: none;
  }
  .cid-upvNqRlN4o .mbr-section-title,
  .cid-upvNqRlN4o .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvNqRlN4o .box {
    display: none;
  }
  .cid-upvNqRlN4o .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvNqRlN4o .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvNqRlN4o .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvNqRlN4o .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvNqRlN4o .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvNqRlN4o .mbr-section-text DIV {
  text-align: center;
}
.cid-upvNqRTpzV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvNqRTpzV H1 {
  text-align: center;
}
.cid-upvNqSpXTJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvNqSWCDJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvNqSWCDJ h2 {
  text-align: left;
}
.cid-upvNqSWCDJ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvNqSWCDJ p {
  color: #767676;
  text-align: left;
}
.cid-upvNqSWCDJ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvNqSWCDJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvNqSWCDJ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvNqSWCDJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvNqSWCDJ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvNqSWCDJ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvNqSWCDJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvNqSWCDJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvNqSWCDJ .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvNqSWCDJ H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upvNqSWCDJ P {
  color: #ffffff;
  text-align: left;
}
.cid-upvNqSWCDJ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upvNqTw6mE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvNqTw6mE H1 {
  color: #000000;
}
.cid-upvNqU6AMY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upvNqU6AMY .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvNqU6AMY .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upvNqU6AMY .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upvNqU6AMY .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upvNqU6AMY .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upvNqU6AMY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvNqU6AMY .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upvNqU6AMY .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upvNqU6AMY .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upvNqU6AMY .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upvNqU6AMY .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-upvNqU6AMY .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upvNqU6AMY .image-wrapper {
    padding: 1rem;
  }
}
.cid-upvNqU6AMY .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upvNqU6AMY .mbr-text,
.cid-upvNqU6AMY .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upvNqUQwLZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvNqVreeG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvNqVreeG H1 {
  color: #000000;
}
.cid-uxkSWbk0PV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkSWbk0PV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkSWbk0PV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkSWbk0PV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkSWbk0PV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkSWbk0PV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkSWbk0PV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkSWbk0PV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkSWbk0PV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkSWbk0PV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkSWbk0PV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkSWbk0PV .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-uxkSWbk0PV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkSWbk0PV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkSWbk0PV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkSWbk0PV .mbr-text,
.cid-uxkSWbk0PV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkSX2X8QZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkSX2X8QZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkSX2X8QZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkSX2X8QZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkSX2X8QZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkSX2X8QZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkSX2X8QZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkSX2X8QZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkSX2X8QZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkSX2X8QZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkSX2X8QZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkSX2X8QZ .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-uxkSX2X8QZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkSX2X8QZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkSX2X8QZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkSX2X8QZ .mbr-text,
.cid-uxkSX2X8QZ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQRGSkHgh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQRGSkHgh H1 {
  color: #000000;
}
.cid-uwQRERyUF5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwQRERyUF5 h2 {
  text-align: left;
}
.cid-uwQRERyUF5 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQRERyUF5 p {
  color: #767676;
  text-align: left;
}
.cid-uwQRERyUF5 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQRERyUF5 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQRERyUF5 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQRERyUF5 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQRERyUF5 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQRERyUF5 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQRERyUF5 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwQRERyUF5 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwQRERyUF5 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwQRERyUF5 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwQRERyUF5 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQRFEJGeA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQRFEJGeA H1 {
  color: #000000;
}
.cid-upvNqXSzPu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upvNqXSzPu .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvNqXSzPu .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvNqXSzPu .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvNqXSzPu .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upvNqXSzPu .box {
  right: 20%;
}
.cid-upvNqXSzPu .text-box {
  right: 0;
}
.cid-upvNqXSzPu .mbr-section-title,
.cid-upvNqXSzPu .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upvNqXSzPu .text-box {
    display: none;
  }
  .cid-upvNqXSzPu .mbr-section-title,
  .cid-upvNqXSzPu .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvNqXSzPu .box {
    display: none;
  }
  .cid-upvNqXSzPu .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvNqXSzPu .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvNqXSzPu .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvNqXSzPu .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvNqXSzPu .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvNqXSzPu .mbr-section-text DIV {
  text-align: center;
}
.cid-upvNqYtHKN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvNqZ2fBZ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upvNqZ2fBZ h2 {
  text-align: left;
}
.cid-upvNqZ2fBZ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvNqZ2fBZ p {
  color: #767676;
  text-align: left;
}
.cid-upvNqZ2fBZ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvNqZ2fBZ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvNqZ2fBZ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvNqZ2fBZ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvNqZ2fBZ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvNqZ2fBZ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvNqZ2fBZ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvNqZ2fBZ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvNqZ2fBZ .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvNqZ2fBZ .mbr-text {
  color: #232323;
}
.cid-upvNqZApwG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upvNqZApwG .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvNqZApwG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvNqZApwG .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upvNqZApwG .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upvNqZApwG .container {
    padding: 0 26px;
  }
}
.cid-upvNqZApwG .row {
  justify-content: center;
}
.cid-upvNqZApwG .item {
  margin-bottom: 32px;
}
.cid-upvNqZApwG .item a {
  display: block;
}
.cid-upvNqZApwG .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upvNqZApwG .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upvNqZApwG .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upvNqZApwG .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-upvNqZApwG .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upvNqZApwG .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upvNqZApwG .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-upvNqZApwG .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upvNqZApwG .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upvNqZApwG .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upvNqZApwG .item-title {
  color: #ffffff;
}
.cid-upvNqZApwG .mbr-date {
  color: #cacaca;
}
.cid-upvNqZApwG .mbr-desc {
  color: #cacaca;
}
.cid-upvNr0bPYH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upvNr0bPYH .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvNr0bPYH .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-upvNr0bPYH .container {
    padding: 0 16px;
  }
}
.cid-upvNr0bPYH .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upvNr0bPYH .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvNr0bPYH .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upvNr0bPYH .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvNr0bPYH .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upvNr0bPYH .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upvNr0bPYH .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upvNr0bPYH .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upvNr0bPYH .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upvNr0bPYH .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-upvNr0bPYH .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upvNr0bPYH .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upvNr0bPYH .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upvNr0bPYH .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upvNr0bPYH .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upvNr0bPYH .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upvNr0bPYH .dragArea.row .form-group .form-control:hover,
.cid-upvNr0bPYH .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upvNr0bPYH .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upvNr0bPYH .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upvNr0bPYH .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upvNr0bPYH .mbr-title {
  color: #ffffff;
}
.cid-upvNr0bPYH .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upvNr0bPYH .mbr-section-subtitle {
  color: #08323C;
}
.cid-upvNr0bPYH .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upvNr0bPYH .list {
  color: #08323C;
}
.cid-upvNr0bPYH label {
  color: #08323C;
}
.cid-upvNr0bPYH H3 {
  color: #000000;
}
.cid-upvNr0bPYH P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upvPgpfvKh {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvPgpfvKh H1 {
  text-align: center;
}
.cid-uDmScWoR4s {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmScWoR4s .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmScWoR4s .video-block {
    width: 100% !important;
  }
}
.cid-upvPgpTu94 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvPgqvW8i {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upvPgqvW8i .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvPgqvW8i .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvPgqvW8i .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvPgqvW8i .box {
  left: 20%;
}
.cid-upvPgqvW8i .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upvPgqvW8i .mbr-section-text,
.cid-upvPgqvW8i .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upvPgqvW8i .text-box {
    display: none;
  }
  .cid-upvPgqvW8i .mbr-section-title,
  .cid-upvPgqvW8i .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvPgqvW8i .box {
    display: none;
  }
  .cid-upvPgqvW8i .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvPgqvW8i .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvPgqvW8i .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvPgqvW8i .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvPgqvW8i .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvPgqvW8i .mbr-section-text DIV {
  text-align: center;
}
.cid-upvPgr4JsV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvPgr4JsV H1 {
  text-align: center;
}
.cid-upvPgrETXK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvPgsdaTi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvPgsdaTi h2 {
  text-align: left;
}
.cid-upvPgsdaTi h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvPgsdaTi p {
  color: #767676;
  text-align: left;
}
.cid-upvPgsdaTi .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvPgsdaTi .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvPgsdaTi .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvPgsdaTi .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvPgsdaTi .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvPgsdaTi .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvPgsdaTi .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvPgsdaTi .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvPgsdaTi .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvPgsdaTi H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upvPgsdaTi P {
  color: #ffffff;
  text-align: left;
}
.cid-upvPgsdaTi H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upvPgsRaLs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvPgsRaLs H1 {
  color: #000000;
}
.cid-upvPgtquL6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upvPgtquL6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvPgtquL6 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upvPgtquL6 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upvPgtquL6 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upvPgtquL6 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upvPgtquL6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvPgtquL6 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upvPgtquL6 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upvPgtquL6 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upvPgtquL6 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upvPgtquL6 .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-upvPgtquL6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upvPgtquL6 .image-wrapper {
    padding: 1rem;
  }
}
.cid-upvPgtquL6 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upvPgtquL6 .mbr-text,
.cid-upvPgtquL6 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upvPgueomh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvPguOHdo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvPguOHdo H1 {
  color: #000000;
}
.cid-uxkUzCKDs6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkUzCKDs6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkUzCKDs6 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkUzCKDs6 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkUzCKDs6 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkUzCKDs6 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkUzCKDs6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkUzCKDs6 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkUzCKDs6 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkUzCKDs6 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkUzCKDs6 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkUzCKDs6 .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-uxkUzCKDs6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkUzCKDs6 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkUzCKDs6 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkUzCKDs6 .mbr-text,
.cid-uxkUzCKDs6 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkUAp9CNf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkUAp9CNf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkUAp9CNf .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkUAp9CNf .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkUAp9CNf .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkUAp9CNf .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkUAp9CNf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkUAp9CNf .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkUAp9CNf .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkUAp9CNf .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkUAp9CNf .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkUAp9CNf .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-uxkUAp9CNf .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkUAp9CNf .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkUAp9CNf .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkUAp9CNf .mbr-text,
.cid-uxkUAp9CNf .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwR27WRZAI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwR27WRZAI H1 {
  color: #000000;
}
.cid-uwR25zGH6G {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwR25zGH6G h2 {
  text-align: left;
}
.cid-uwR25zGH6G h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwR25zGH6G p {
  color: #767676;
  text-align: left;
}
.cid-uwR25zGH6G .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwR25zGH6G .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwR25zGH6G .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwR25zGH6G .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwR25zGH6G .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwR25zGH6G .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwR25zGH6G .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwR25zGH6G .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwR25zGH6G .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwR25zGH6G .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwR25zGH6G .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwR26aVyS5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwR26aVyS5 H1 {
  color: #000000;
}
.cid-upvPgxiGLT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upvPgxiGLT .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvPgxiGLT .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvPgxiGLT .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvPgxiGLT .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upvPgxiGLT .box {
  right: 20%;
}
.cid-upvPgxiGLT .text-box {
  right: 0;
}
.cid-upvPgxiGLT .mbr-section-title,
.cid-upvPgxiGLT .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upvPgxiGLT .text-box {
    display: none;
  }
  .cid-upvPgxiGLT .mbr-section-title,
  .cid-upvPgxiGLT .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvPgxiGLT .box {
    display: none;
  }
  .cid-upvPgxiGLT .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvPgxiGLT .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvPgxiGLT .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvPgxiGLT .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvPgxiGLT .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvPgxiGLT .mbr-section-text DIV {
  text-align: center;
}
.cid-upvPgxW5o8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvPgyvcot {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upvPgyvcot h2 {
  text-align: left;
}
.cid-upvPgyvcot h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvPgyvcot p {
  color: #767676;
  text-align: left;
}
.cid-upvPgyvcot .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvPgyvcot .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvPgyvcot .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvPgyvcot .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvPgyvcot .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvPgyvcot .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvPgyvcot .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvPgyvcot .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvPgyvcot .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvPgyvcot .mbr-text {
  color: #232323;
}
.cid-upvPgz7CFT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upvPgz7CFT .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvPgz7CFT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvPgz7CFT .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upvPgz7CFT .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upvPgz7CFT .container {
    padding: 0 26px;
  }
}
.cid-upvPgz7CFT .row {
  justify-content: center;
}
.cid-upvPgz7CFT .item {
  margin-bottom: 32px;
}
.cid-upvPgz7CFT .item a {
  display: block;
}
.cid-upvPgz7CFT .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upvPgz7CFT .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upvPgz7CFT .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upvPgz7CFT .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-upvPgz7CFT .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upvPgz7CFT .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upvPgz7CFT .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-upvPgz7CFT .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upvPgz7CFT .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upvPgz7CFT .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upvPgz7CFT .item-title {
  color: #ffffff;
}
.cid-upvPgz7CFT .mbr-date {
  color: #cacaca;
}
.cid-upvPgz7CFT .mbr-desc {
  color: #cacaca;
}
.cid-upvPgzHZms {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upvPgzHZms .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvPgzHZms .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-upvPgzHZms .container {
    padding: 0 16px;
  }
}
.cid-upvPgzHZms .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upvPgzHZms .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvPgzHZms .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upvPgzHZms .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvPgzHZms .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upvPgzHZms .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upvPgzHZms .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upvPgzHZms .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upvPgzHZms .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upvPgzHZms .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-upvPgzHZms .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upvPgzHZms .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upvPgzHZms .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upvPgzHZms .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upvPgzHZms .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upvPgzHZms .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upvPgzHZms .dragArea.row .form-group .form-control:hover,
.cid-upvPgzHZms .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upvPgzHZms .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upvPgzHZms .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upvPgzHZms .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upvPgzHZms .mbr-title {
  color: #ffffff;
}
.cid-upvPgzHZms .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upvPgzHZms .mbr-section-subtitle {
  color: #08323C;
}
.cid-upvPgzHZms .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upvPgzHZms .list {
  color: #08323C;
}
.cid-upvPgzHZms label {
  color: #08323C;
}
.cid-upvPgzHZms H3 {
  color: #000000;
}
.cid-upvPgzHZms P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upvRQLVFtJ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvRQLVFtJ H1 {
  text-align: center;
}
.cid-uDmSG3kpra {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmSG3kpra .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmSG3kpra .video-block {
    width: 100% !important;
  }
}
.cid-upvRQMAOBK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvRQNbxdP {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upvRQNbxdP .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvRQNbxdP .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvRQNbxdP .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvRQNbxdP .box {
  left: 20%;
}
.cid-upvRQNbxdP .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upvRQNbxdP .mbr-section-text,
.cid-upvRQNbxdP .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upvRQNbxdP .text-box {
    display: none;
  }
  .cid-upvRQNbxdP .mbr-section-title,
  .cid-upvRQNbxdP .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvRQNbxdP .box {
    display: none;
  }
  .cid-upvRQNbxdP .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvRQNbxdP .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvRQNbxdP .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvRQNbxdP .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvRQNbxdP .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvRQNbxdP .mbr-section-text DIV {
  text-align: center;
}
.cid-upvRQNLTG1 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvRQNLTG1 H1 {
  text-align: center;
}
.cid-upvRQOkZKN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvRQOTCuJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvRQOTCuJ h2 {
  text-align: left;
}
.cid-upvRQOTCuJ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvRQOTCuJ p {
  color: #767676;
  text-align: left;
}
.cid-upvRQOTCuJ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvRQOTCuJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvRQOTCuJ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvRQOTCuJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvRQOTCuJ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvRQOTCuJ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvRQOTCuJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvRQOTCuJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvRQOTCuJ .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvRQOTCuJ H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upvRQOTCuJ P {
  color: #ffffff;
  text-align: left;
}
.cid-upvRQOTCuJ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upvRQQT8ac {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvRQRwmke {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvRQRwmke H1 {
  color: #000000;
}
.cid-uxkXpbVbX1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkXpbVbX1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkXpbVbX1 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkXpbVbX1 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkXpbVbX1 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkXpbVbX1 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkXpbVbX1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkXpbVbX1 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkXpbVbX1 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkXpbVbX1 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkXpbVbX1 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkXpbVbX1 .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-uxkXpbVbX1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkXpbVbX1 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkXpbVbX1 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkXpbVbX1 .mbr-text,
.cid-uxkXpbVbX1 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkXqbGxwD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkXqbGxwD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkXqbGxwD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkXqbGxwD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkXqbGxwD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkXqbGxwD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkXqbGxwD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkXqbGxwD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkXqbGxwD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkXqbGxwD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkXqbGxwD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkXqbGxwD .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-uxkXqbGxwD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkXqbGxwD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkXqbGxwD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkXqbGxwD .mbr-text,
.cid-uxkXqbGxwD .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upvRQSP5er {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upvRQSP5er H1 {
  color: #000000;
}
.cid-uxkXtIJcs1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxkXtIJcs1 h2 {
  text-align: left;
}
.cid-uxkXtIJcs1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxkXtIJcs1 p {
  color: #767676;
  text-align: left;
}
.cid-uxkXtIJcs1 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxkXtIJcs1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxkXtIJcs1 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxkXtIJcs1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxkXtIJcs1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxkXtIJcs1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxkXtIJcs1 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxkXtIJcs1 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxkXtIJcs1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxkXtIJcs1 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxkXtIJcs1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxkXuVh2fq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxkXuVh2fq H1 {
  color: #000000;
}
.cid-upvRQU4vqT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upvRQU4vqT .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvRQU4vqT .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvRQU4vqT .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvRQU4vqT .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upvRQU4vqT .box {
  right: 20%;
}
.cid-upvRQU4vqT .text-box {
  right: 0;
}
.cid-upvRQU4vqT .mbr-section-title,
.cid-upvRQU4vqT .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upvRQU4vqT .text-box {
    display: none;
  }
  .cid-upvRQU4vqT .mbr-section-title,
  .cid-upvRQU4vqT .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvRQU4vqT .box {
    display: none;
  }
  .cid-upvRQU4vqT .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvRQU4vqT .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvRQU4vqT .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvRQU4vqT .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvRQU4vqT .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvRQU4vqT .mbr-section-text DIV {
  text-align: center;
}
.cid-upvRQUJvCR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvRQVlFSy {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upvRQVlFSy h2 {
  text-align: left;
}
.cid-upvRQVlFSy h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvRQVlFSy p {
  color: #767676;
  text-align: left;
}
.cid-upvRQVlFSy .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvRQVlFSy .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvRQVlFSy .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvRQVlFSy .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvRQVlFSy .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvRQVlFSy .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvRQVlFSy .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvRQVlFSy .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvRQVlFSy .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvRQVlFSy .mbr-text {
  color: #232323;
}
.cid-upvRQW1uMd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upvRQW1uMd .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvRQW1uMd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvRQW1uMd .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upvRQW1uMd .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upvRQW1uMd .container {
    padding: 0 26px;
  }
}
.cid-upvRQW1uMd .row {
  justify-content: center;
}
.cid-upvRQW1uMd .item {
  margin-bottom: 32px;
}
.cid-upvRQW1uMd .item a {
  display: block;
}
.cid-upvRQW1uMd .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upvRQW1uMd .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upvRQW1uMd .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upvRQW1uMd .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-upvRQW1uMd .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upvRQW1uMd .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upvRQW1uMd .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-upvRQW1uMd .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upvRQW1uMd .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upvRQW1uMd .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upvRQW1uMd .item-title {
  color: #ffffff;
}
.cid-upvRQW1uMd .mbr-date {
  color: #cacaca;
}
.cid-upvRQW1uMd .mbr-desc {
  color: #cacaca;
}
.cid-upvRQWCkj4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upvRQWCkj4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvRQWCkj4 .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-upvRQWCkj4 .container {
    padding: 0 16px;
  }
}
.cid-upvRQWCkj4 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upvRQWCkj4 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvRQWCkj4 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upvRQWCkj4 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvRQWCkj4 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upvRQWCkj4 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upvRQWCkj4 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upvRQWCkj4 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upvRQWCkj4 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upvRQWCkj4 .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-upvRQWCkj4 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upvRQWCkj4 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upvRQWCkj4 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upvRQWCkj4 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upvRQWCkj4 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upvRQWCkj4 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upvRQWCkj4 .dragArea.row .form-group .form-control:hover,
.cid-upvRQWCkj4 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upvRQWCkj4 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upvRQWCkj4 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upvRQWCkj4 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upvRQWCkj4 .mbr-title {
  color: #ffffff;
}
.cid-upvRQWCkj4 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upvRQWCkj4 .mbr-section-subtitle {
  color: #08323C;
}
.cid-upvRQWCkj4 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upvRQWCkj4 .list {
  color: #08323C;
}
.cid-upvRQWCkj4 label {
  color: #08323C;
}
.cid-upvRQWCkj4 H3 {
  color: #000000;
}
.cid-upvRQWCkj4 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upvUcYf1ls {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvUcYf1ls H1 {
  text-align: center;
}
.cid-uDmSJew0Oe {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmSJew0Oe .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmSJew0Oe .video-block {
    width: 100% !important;
  }
}
.cid-upvUcYXDL7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvUcZxWfF {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upvUcZxWfF .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvUcZxWfF .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvUcZxWfF .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvUcZxWfF .box {
  left: 20%;
}
.cid-upvUcZxWfF .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upvUcZxWfF .mbr-section-text,
.cid-upvUcZxWfF .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upvUcZxWfF .text-box {
    display: none;
  }
  .cid-upvUcZxWfF .mbr-section-title,
  .cid-upvUcZxWfF .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvUcZxWfF .box {
    display: none;
  }
  .cid-upvUcZxWfF .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvUcZxWfF .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvUcZxWfF .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvUcZxWfF .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvUcZxWfF .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvUcZxWfF .mbr-section-text DIV {
  text-align: center;
}
.cid-upvUd0799e {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvUd0799e H1 {
  text-align: center;
}
.cid-upvUd0GZNI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvUd1e7lg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvUd1e7lg h2 {
  text-align: left;
}
.cid-upvUd1e7lg h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvUd1e7lg p {
  color: #767676;
  text-align: left;
}
.cid-upvUd1e7lg .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvUd1e7lg .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvUd1e7lg .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvUd1e7lg .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvUd1e7lg .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvUd1e7lg .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvUd1e7lg .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvUd1e7lg .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvUd1e7lg .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvUd1e7lg H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upvUd1e7lg P {
  color: #ffffff;
  text-align: left;
}
.cid-upvUd1e7lg H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upvUd1TV2I {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvUd1TV2I H1 {
  color: #000000;
}
.cid-upvUd2tFc3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upvUd2tFc3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvUd2tFc3 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upvUd2tFc3 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upvUd2tFc3 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upvUd2tFc3 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upvUd2tFc3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvUd2tFc3 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upvUd2tFc3 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upvUd2tFc3 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upvUd2tFc3 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upvUd2tFc3 .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-upvUd2tFc3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upvUd2tFc3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-upvUd2tFc3 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upvUd2tFc3 .mbr-text,
.cid-upvUd2tFc3 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upvUd3f1N9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvUd3RqL4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvUd3RqL4 H1 {
  color: #000000;
}
.cid-uxkYl1bZZJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkYl1bZZJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkYl1bZZJ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkYl1bZZJ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkYl1bZZJ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkYl1bZZJ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkYl1bZZJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkYl1bZZJ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkYl1bZZJ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkYl1bZZJ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkYl1bZZJ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkYl1bZZJ .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-uxkYl1bZZJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkYl1bZZJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkYl1bZZJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkYl1bZZJ .mbr-text,
.cid-uxkYl1bZZJ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkYlRNCbZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkYlRNCbZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkYlRNCbZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkYlRNCbZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkYlRNCbZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkYlRNCbZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkYlRNCbZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkYlRNCbZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkYlRNCbZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkYlRNCbZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkYlRNCbZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkYlRNCbZ .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-uxkYlRNCbZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkYlRNCbZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkYlRNCbZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkYlRNCbZ .mbr-text,
.cid-uxkYlRNCbZ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwEVggGJqg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwEVggGJqg H1 {
  color: #000000;
}
.cid-uwEVeEYojV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwEVeEYojV h2 {
  text-align: left;
}
.cid-uwEVeEYojV h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwEVeEYojV p {
  color: #767676;
  text-align: left;
}
.cid-uwEVeEYojV .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwEVeEYojV .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwEVeEYojV .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwEVeEYojV .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwEVeEYojV .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwEVeEYojV .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwEVeEYojV .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwEVeEYojV .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwEVeEYojV .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwEVeEYojV .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwEVeEYojV .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwEVfganK9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwEVfganK9 H1 {
  color: #000000;
}
.cid-upvUd6qelE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upvUd6qelE .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvUd6qelE .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvUd6qelE .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvUd6qelE .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upvUd6qelE .box {
  right: 20%;
}
.cid-upvUd6qelE .text-box {
  right: 0;
}
.cid-upvUd6qelE .mbr-section-title,
.cid-upvUd6qelE .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upvUd6qelE .text-box {
    display: none;
  }
  .cid-upvUd6qelE .mbr-section-title,
  .cid-upvUd6qelE .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvUd6qelE .box {
    display: none;
  }
  .cid-upvUd6qelE .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvUd6qelE .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvUd6qelE .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvUd6qelE .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvUd6qelE .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvUd6qelE .mbr-section-text DIV {
  text-align: center;
}
.cid-upvUd72tCz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvUd7Dexm {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upvUd7Dexm h2 {
  text-align: left;
}
.cid-upvUd7Dexm h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvUd7Dexm p {
  color: #767676;
  text-align: left;
}
.cid-upvUd7Dexm .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvUd7Dexm .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvUd7Dexm .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvUd7Dexm .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvUd7Dexm .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvUd7Dexm .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvUd7Dexm .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvUd7Dexm .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvUd7Dexm .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvUd7Dexm .mbr-text {
  color: #232323;
}
.cid-upvUd8jyy2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upvUd8jyy2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvUd8jyy2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvUd8jyy2 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upvUd8jyy2 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upvUd8jyy2 .container {
    padding: 0 26px;
  }
}
.cid-upvUd8jyy2 .row {
  justify-content: center;
}
.cid-upvUd8jyy2 .item {
  margin-bottom: 32px;
}
.cid-upvUd8jyy2 .item a {
  display: block;
}
.cid-upvUd8jyy2 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upvUd8jyy2 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upvUd8jyy2 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upvUd8jyy2 .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-upvUd8jyy2 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upvUd8jyy2 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upvUd8jyy2 .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-upvUd8jyy2 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upvUd8jyy2 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upvUd8jyy2 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upvUd8jyy2 .item-title {
  color: #ffffff;
}
.cid-upvUd8jyy2 .mbr-date {
  color: #cacaca;
}
.cid-upvUd8jyy2 .mbr-desc {
  color: #cacaca;
}
.cid-upvUd8VDsb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upvUd8VDsb .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvUd8VDsb .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-upvUd8VDsb .container {
    padding: 0 16px;
  }
}
.cid-upvUd8VDsb .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upvUd8VDsb .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvUd8VDsb .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upvUd8VDsb .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvUd8VDsb .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upvUd8VDsb .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upvUd8VDsb .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upvUd8VDsb .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upvUd8VDsb .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upvUd8VDsb .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-upvUd8VDsb .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upvUd8VDsb .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upvUd8VDsb .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upvUd8VDsb .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upvUd8VDsb .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upvUd8VDsb .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upvUd8VDsb .dragArea.row .form-group .form-control:hover,
.cid-upvUd8VDsb .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upvUd8VDsb .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upvUd8VDsb .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upvUd8VDsb .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upvUd8VDsb .mbr-title {
  color: #ffffff;
}
.cid-upvUd8VDsb .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upvUd8VDsb .mbr-section-subtitle {
  color: #08323C;
}
.cid-upvUd8VDsb .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upvUd8VDsb .list {
  color: #08323C;
}
.cid-upvUd8VDsb label {
  color: #08323C;
}
.cid-upvUd8VDsb H3 {
  color: #000000;
}
.cid-upvUd8VDsb P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upvXqxg4XP {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvXqxg4XP H1 {
  text-align: center;
}
.cid-uDmTg24ELI {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmTg24ELI .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmTg24ELI .video-block {
    width: 100% !important;
  }
}
.cid-upvXqxWN3E {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvXqyy2D9 {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upvXqyy2D9 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvXqyy2D9 .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvXqyy2D9 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvXqyy2D9 .box {
  left: 20%;
}
.cid-upvXqyy2D9 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upvXqyy2D9 .mbr-section-text,
.cid-upvXqyy2D9 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upvXqyy2D9 .text-box {
    display: none;
  }
  .cid-upvXqyy2D9 .mbr-section-title,
  .cid-upvXqyy2D9 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvXqyy2D9 .box {
    display: none;
  }
  .cid-upvXqyy2D9 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvXqyy2D9 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvXqyy2D9 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvXqyy2D9 .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvXqyy2D9 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvXqyy2D9 .mbr-section-text DIV {
  text-align: center;
}
.cid-upvXqz9TX1 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvXqz9TX1 H1 {
  text-align: center;
}
.cid-upvXqzLXVO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvXqAlDgU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvXqAlDgU h2 {
  text-align: left;
}
.cid-upvXqAlDgU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvXqAlDgU p {
  color: #767676;
  text-align: left;
}
.cid-upvXqAlDgU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvXqAlDgU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvXqAlDgU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvXqAlDgU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvXqAlDgU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvXqAlDgU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvXqAlDgU .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvXqAlDgU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvXqAlDgU .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvXqAlDgU H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upvXqAlDgU P {
  color: #ffffff;
  text-align: left;
}
.cid-upvXqAlDgU H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upvXqB2cVM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvXqB2cVM H1 {
  color: #000000;
}
.cid-upvXqBChHC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upvXqBChHC .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvXqBChHC .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upvXqBChHC .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upvXqBChHC .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upvXqBChHC .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upvXqBChHC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvXqBChHC .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upvXqBChHC .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upvXqBChHC .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upvXqBChHC .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upvXqBChHC .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-upvXqBChHC .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upvXqBChHC .image-wrapper {
    padding: 1rem;
  }
}
.cid-upvXqBChHC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upvXqBChHC .mbr-text,
.cid-upvXqBChHC .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upvXqCqI7J {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvXqD5SKQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvXqD5SKQ H1 {
  color: #000000;
}
.cid-uxl0lOHONm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl0lOHONm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl0lOHONm .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl0lOHONm .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl0lOHONm .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl0lOHONm .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl0lOHONm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl0lOHONm .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl0lOHONm .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl0lOHONm .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl0lOHONm .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl0lOHONm .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-uxl0lOHONm .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl0lOHONm .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl0lOHONm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl0lOHONm .mbr-text,
.cid-uxl0lOHONm .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxl0mWJ9PH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl0mWJ9PH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl0mWJ9PH .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl0mWJ9PH .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl0mWJ9PH .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl0mWJ9PH .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl0mWJ9PH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl0mWJ9PH .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl0mWJ9PH .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl0mWJ9PH .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl0mWJ9PH .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl0mWJ9PH .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-uxl0mWJ9PH .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl0mWJ9PH .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl0mWJ9PH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl0mWJ9PH .mbr-text,
.cid-uxl0mWJ9PH .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwKPVPS0Ge {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwKPVPS0Ge H1 {
  color: #000000;
}
.cid-uwKPSviVCk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwKPSviVCk h2 {
  text-align: left;
}
.cid-uwKPSviVCk h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwKPSviVCk p {
  color: #767676;
  text-align: left;
}
.cid-uwKPSviVCk .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwKPSviVCk .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwKPSviVCk .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwKPSviVCk .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwKPSviVCk .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwKPSviVCk .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwKPSviVCk .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwKPSviVCk .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwKPSviVCk .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwKPSviVCk .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwKPSviVCk .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwKPUzA9Wh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwKPUzA9Wh H1 {
  color: #000000;
}
.cid-upvXqFMLot {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upvXqFMLot .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvXqFMLot .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvXqFMLot .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvXqFMLot .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upvXqFMLot .box {
  right: 20%;
}
.cid-upvXqFMLot .text-box {
  right: 0;
}
.cid-upvXqFMLot .mbr-section-title,
.cid-upvXqFMLot .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upvXqFMLot .text-box {
    display: none;
  }
  .cid-upvXqFMLot .mbr-section-title,
  .cid-upvXqFMLot .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvXqFMLot .box {
    display: none;
  }
  .cid-upvXqFMLot .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvXqFMLot .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvXqFMLot .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvXqFMLot .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvXqFMLot .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvXqFMLot .mbr-section-text DIV {
  text-align: center;
}
.cid-upvXqGtr1h {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvXqH5rDi {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upvXqH5rDi h2 {
  text-align: left;
}
.cid-upvXqH5rDi h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvXqH5rDi p {
  color: #767676;
  text-align: left;
}
.cid-upvXqH5rDi .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvXqH5rDi .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvXqH5rDi .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvXqH5rDi .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvXqH5rDi .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvXqH5rDi .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvXqH5rDi .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvXqH5rDi .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvXqH5rDi .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvXqH5rDi .mbr-text {
  color: #232323;
}
.cid-upvXqHJ7q3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upvXqHJ7q3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvXqHJ7q3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvXqHJ7q3 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upvXqHJ7q3 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upvXqHJ7q3 .container {
    padding: 0 26px;
  }
}
.cid-upvXqHJ7q3 .row {
  justify-content: center;
}
.cid-upvXqHJ7q3 .item {
  margin-bottom: 32px;
}
.cid-upvXqHJ7q3 .item a {
  display: block;
}
.cid-upvXqHJ7q3 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upvXqHJ7q3 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upvXqHJ7q3 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upvXqHJ7q3 .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-upvXqHJ7q3 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upvXqHJ7q3 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upvXqHJ7q3 .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-upvXqHJ7q3 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upvXqHJ7q3 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upvXqHJ7q3 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upvXqHJ7q3 .item-title {
  color: #ffffff;
}
.cid-upvXqHJ7q3 .mbr-date {
  color: #cacaca;
}
.cid-upvXqHJ7q3 .mbr-desc {
  color: #cacaca;
}
.cid-upvXqIsdmO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upvXqIsdmO .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvXqIsdmO .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-upvXqIsdmO .container {
    padding: 0 16px;
  }
}
.cid-upvXqIsdmO .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upvXqIsdmO .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvXqIsdmO .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upvXqIsdmO .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvXqIsdmO .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upvXqIsdmO .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upvXqIsdmO .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upvXqIsdmO .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upvXqIsdmO .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upvXqIsdmO .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-upvXqIsdmO .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upvXqIsdmO .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upvXqIsdmO .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upvXqIsdmO .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upvXqIsdmO .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upvXqIsdmO .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upvXqIsdmO .dragArea.row .form-group .form-control:hover,
.cid-upvXqIsdmO .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upvXqIsdmO .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upvXqIsdmO .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upvXqIsdmO .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upvXqIsdmO .mbr-title {
  color: #ffffff;
}
.cid-upvXqIsdmO .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upvXqIsdmO .mbr-section-subtitle {
  color: #08323C;
}
.cid-upvXqIsdmO .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upvXqIsdmO .list {
  color: #08323C;
}
.cid-upvXqIsdmO label {
  color: #08323C;
}
.cid-upvXqIsdmO H3 {
  color: #000000;
}
.cid-upvXqIsdmO P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upvYSlQxES {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvYSlQxES H1 {
  text-align: center;
}
.cid-uDmTuLZnXi {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmTuLZnXi .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmTuLZnXi .video-block {
    width: 100% !important;
  }
}
.cid-upvYSmzAaB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvYSn9tQ1 {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upvYSn9tQ1 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvYSn9tQ1 .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvYSn9tQ1 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvYSn9tQ1 .box {
  left: 20%;
}
.cid-upvYSn9tQ1 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upvYSn9tQ1 .mbr-section-text,
.cid-upvYSn9tQ1 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upvYSn9tQ1 .text-box {
    display: none;
  }
  .cid-upvYSn9tQ1 .mbr-section-title,
  .cid-upvYSn9tQ1 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvYSn9tQ1 .box {
    display: none;
  }
  .cid-upvYSn9tQ1 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvYSn9tQ1 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvYSn9tQ1 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvYSn9tQ1 .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvYSn9tQ1 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvYSn9tQ1 .mbr-section-text DIV {
  text-align: center;
}
.cid-upvYSnLn5B {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvYSnLn5B H1 {
  text-align: center;
}
.cid-upvYSooHHl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvYSp3Ovc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upvYSp3Ovc h2 {
  text-align: left;
}
.cid-upvYSp3Ovc h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvYSp3Ovc p {
  color: #767676;
  text-align: left;
}
.cid-upvYSp3Ovc .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvYSp3Ovc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvYSp3Ovc .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvYSp3Ovc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvYSp3Ovc .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvYSp3Ovc .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvYSp3Ovc .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvYSp3Ovc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvYSp3Ovc .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvYSp3Ovc H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upvYSp3Ovc P {
  color: #ffffff;
  text-align: left;
}
.cid-upvYSp3Ovc H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upvYSpL6OU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvYSpL6OU H1 {
  color: #000000;
}
.cid-upvYSr9ihw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvYSrMDMW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upvYSrMDMW H1 {
  color: #000000;
}
.cid-uxl1OKpfhd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl1OKpfhd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl1OKpfhd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl1OKpfhd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl1OKpfhd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl1OKpfhd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl1OKpfhd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl1OKpfhd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl1OKpfhd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl1OKpfhd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl1OKpfhd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl1OKpfhd .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-uxl1OKpfhd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl1OKpfhd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl1OKpfhd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl1OKpfhd .mbr-text,
.cid-uxl1OKpfhd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxl1Pxb16J {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl1Pxb16J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl1Pxb16J .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl1Pxb16J .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl1Pxb16J .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl1Pxb16J .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl1Pxb16J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl1Pxb16J .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl1Pxb16J .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl1Pxb16J .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl1Pxb16J .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl1Pxb16J .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-uxl1Pxb16J .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl1Pxb16J .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl1Pxb16J .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl1Pxb16J .mbr-text,
.cid-uxl1Pxb16J .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwKOLGOlDK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwKOLGOlDK H1 {
  color: #000000;
}
.cid-uwKOGHk8a9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwKOGHk8a9 h2 {
  text-align: left;
}
.cid-uwKOGHk8a9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwKOGHk8a9 p {
  color: #767676;
  text-align: left;
}
.cid-uwKOGHk8a9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwKOGHk8a9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwKOGHk8a9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwKOGHk8a9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwKOGHk8a9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwKOGHk8a9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwKOGHk8a9 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwKOGHk8a9 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwKOGHk8a9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwKOGHk8a9 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwKOGHk8a9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwKOJnmUTm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwKOJnmUTm H1 {
  color: #000000;
}
.cid-upvYSuwdrq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upvYSuwdrq .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upvYSuwdrq .text-block {
  position: relative;
  z-index: 0;
}
.cid-upvYSuwdrq .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upvYSuwdrq .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upvYSuwdrq .box {
  right: 20%;
}
.cid-upvYSuwdrq .text-box {
  right: 0;
}
.cid-upvYSuwdrq .mbr-section-title,
.cid-upvYSuwdrq .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upvYSuwdrq .text-box {
    display: none;
  }
  .cid-upvYSuwdrq .mbr-section-title,
  .cid-upvYSuwdrq .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upvYSuwdrq .box {
    display: none;
  }
  .cid-upvYSuwdrq .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upvYSuwdrq .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upvYSuwdrq .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upvYSuwdrq .mbr-section-text {
  color: #c1c1c1;
}
.cid-upvYSuwdrq .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upvYSuwdrq .mbr-section-text DIV {
  text-align: center;
}
.cid-upvYSvdBiG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upvYSvO11N {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upvYSvO11N h2 {
  text-align: left;
}
.cid-upvYSvO11N h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upvYSvO11N p {
  color: #767676;
  text-align: left;
}
.cid-upvYSvO11N .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upvYSvO11N .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upvYSvO11N .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upvYSvO11N .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upvYSvO11N .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upvYSvO11N .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upvYSvO11N .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upvYSvO11N .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upvYSvO11N .card-img span {
    font-size: 40px !important;
  }
}
.cid-upvYSvO11N .mbr-text {
  color: #232323;
}
.cid-upvYSwufuj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upvYSwufuj .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvYSwufuj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upvYSwufuj .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upvYSwufuj .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upvYSwufuj .container {
    padding: 0 26px;
  }
}
.cid-upvYSwufuj .row {
  justify-content: center;
}
.cid-upvYSwufuj .item {
  margin-bottom: 32px;
}
.cid-upvYSwufuj .item a {
  display: block;
}
.cid-upvYSwufuj .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upvYSwufuj .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upvYSwufuj .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upvYSwufuj .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-upvYSwufuj .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upvYSwufuj .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upvYSwufuj .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-upvYSwufuj .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upvYSwufuj .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upvYSwufuj .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upvYSwufuj .item-title {
  color: #ffffff;
}
.cid-upvYSwufuj .mbr-date {
  color: #cacaca;
}
.cid-upvYSwufuj .mbr-desc {
  color: #cacaca;
}
.cid-upvYSx7IZE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upvYSx7IZE .mbr-fallback-image.disabled {
  display: none;
}
.cid-upvYSx7IZE .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-upvYSx7IZE .container {
    padding: 0 16px;
  }
}
.cid-upvYSx7IZE .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upvYSx7IZE .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvYSx7IZE .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upvYSx7IZE .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upvYSx7IZE .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upvYSx7IZE .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upvYSx7IZE .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upvYSx7IZE .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upvYSx7IZE .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upvYSx7IZE .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-upvYSx7IZE .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upvYSx7IZE .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upvYSx7IZE .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upvYSx7IZE .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upvYSx7IZE .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upvYSx7IZE .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upvYSx7IZE .dragArea.row .form-group .form-control:hover,
.cid-upvYSx7IZE .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upvYSx7IZE .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upvYSx7IZE .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upvYSx7IZE .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upvYSx7IZE .mbr-title {
  color: #ffffff;
}
.cid-upvYSx7IZE .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upvYSx7IZE .mbr-section-subtitle {
  color: #08323C;
}
.cid-upvYSx7IZE .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upvYSx7IZE .list {
  color: #08323C;
}
.cid-upvYSx7IZE label {
  color: #08323C;
}
.cid-upvYSx7IZE H3 {
  color: #000000;
}
.cid-upvYSx7IZE P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upw1asXXpB {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upw1asXXpB H1 {
  text-align: center;
}
.cid-uDmTGa9XBK {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmTGa9XBK .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmTGa9XBK .video-block {
    width: 100% !important;
  }
}
.cid-upw1atGqqt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upw1auiwXi {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upw1auiwXi .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upw1auiwXi .text-block {
  position: relative;
  z-index: 0;
}
.cid-upw1auiwXi .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upw1auiwXi .box {
  left: 20%;
}
.cid-upw1auiwXi .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upw1auiwXi .mbr-section-text,
.cid-upw1auiwXi .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upw1auiwXi .text-box {
    display: none;
  }
  .cid-upw1auiwXi .mbr-section-title,
  .cid-upw1auiwXi .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upw1auiwXi .box {
    display: none;
  }
  .cid-upw1auiwXi .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upw1auiwXi .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upw1auiwXi .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upw1auiwXi .mbr-section-text {
  color: #c1c1c1;
}
.cid-upw1auiwXi .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upw1auiwXi .mbr-section-text DIV {
  text-align: center;
}
.cid-upw1auWx8u {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upw1auWx8u H1 {
  text-align: center;
}
.cid-upw1avxVbp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upw1awaPzk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upw1awaPzk h2 {
  text-align: left;
}
.cid-upw1awaPzk h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upw1awaPzk p {
  color: #767676;
  text-align: left;
}
.cid-upw1awaPzk .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upw1awaPzk .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upw1awaPzk .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upw1awaPzk .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upw1awaPzk .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upw1awaPzk .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upw1awaPzk .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upw1awaPzk .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upw1awaPzk .card-img span {
    font-size: 40px !important;
  }
}
.cid-upw1awaPzk H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upw1awaPzk P {
  color: #ffffff;
  text-align: left;
}
.cid-upw1awaPzk H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upw1awT1C1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upw1awT1C1 H1 {
  color: #000000;
}
.cid-upw1axv8lc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upw1axv8lc .mbr-fallback-image.disabled {
  display: none;
}
.cid-upw1axv8lc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upw1axv8lc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upw1axv8lc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upw1axv8lc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upw1axv8lc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upw1axv8lc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upw1axv8lc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upw1axv8lc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upw1axv8lc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upw1axv8lc .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-upw1axv8lc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upw1axv8lc .image-wrapper {
    padding: 1rem;
  }
}
.cid-upw1axv8lc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upw1axv8lc .mbr-text,
.cid-upw1axv8lc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upw1ayxbTC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upw1azc4Gt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upw1azc4Gt H1 {
  color: #000000;
}
.cid-uxl2EW0H8p {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl2EW0H8p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl2EW0H8p .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl2EW0H8p .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl2EW0H8p .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl2EW0H8p .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl2EW0H8p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl2EW0H8p .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl2EW0H8p .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl2EW0H8p .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl2EW0H8p .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl2EW0H8p .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-uxl2EW0H8p .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl2EW0H8p .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl2EW0H8p .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl2EW0H8p .mbr-text,
.cid-uxl2EW0H8p .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxl2FKoG2h {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl2FKoG2h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl2FKoG2h .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl2FKoG2h .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl2FKoG2h .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl2FKoG2h .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl2FKoG2h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl2FKoG2h .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl2FKoG2h .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl2FKoG2h .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl2FKoG2h .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl2FKoG2h .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-uxl2FKoG2h .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl2FKoG2h .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl2FKoG2h .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl2FKoG2h .mbr-text,
.cid-uxl2FKoG2h .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwKMU3rDmo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwKMU3rDmo H1 {
  color: #000000;
}
.cid-uwKMPHX8uP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwKMPHX8uP h2 {
  text-align: left;
}
.cid-uwKMPHX8uP h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwKMPHX8uP p {
  color: #767676;
  text-align: left;
}
.cid-uwKMPHX8uP .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwKMPHX8uP .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwKMPHX8uP .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwKMPHX8uP .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwKMPHX8uP .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwKMPHX8uP .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwKMPHX8uP .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwKMPHX8uP .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwKMPHX8uP .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwKMPHX8uP .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwKMPHX8uP .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwKMSCTQzs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwKMSCTQzs H1 {
  color: #000000;
}
.cid-upw1aBVS8L {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upw1aBVS8L .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upw1aBVS8L .text-block {
  position: relative;
  z-index: 0;
}
.cid-upw1aBVS8L .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upw1aBVS8L .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upw1aBVS8L .box {
  right: 20%;
}
.cid-upw1aBVS8L .text-box {
  right: 0;
}
.cid-upw1aBVS8L .mbr-section-title,
.cid-upw1aBVS8L .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upw1aBVS8L .text-box {
    display: none;
  }
  .cid-upw1aBVS8L .mbr-section-title,
  .cid-upw1aBVS8L .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upw1aBVS8L .box {
    display: none;
  }
  .cid-upw1aBVS8L .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upw1aBVS8L .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upw1aBVS8L .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upw1aBVS8L .mbr-section-text {
  color: #c1c1c1;
}
.cid-upw1aBVS8L .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upw1aBVS8L .mbr-section-text DIV {
  text-align: center;
}
.cid-upw1aCBpNa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upw1aDeuw8 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upw1aDeuw8 h2 {
  text-align: left;
}
.cid-upw1aDeuw8 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upw1aDeuw8 p {
  color: #767676;
  text-align: left;
}
.cid-upw1aDeuw8 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upw1aDeuw8 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upw1aDeuw8 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upw1aDeuw8 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upw1aDeuw8 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upw1aDeuw8 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upw1aDeuw8 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upw1aDeuw8 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upw1aDeuw8 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upw1aDeuw8 .mbr-text {
  color: #232323;
}
.cid-upw1aDUGRo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upw1aDUGRo .mbr-fallback-image.disabled {
  display: none;
}
.cid-upw1aDUGRo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upw1aDUGRo .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upw1aDUGRo .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upw1aDUGRo .container {
    padding: 0 26px;
  }
}
.cid-upw1aDUGRo .row {
  justify-content: center;
}
.cid-upw1aDUGRo .item {
  margin-bottom: 32px;
}
.cid-upw1aDUGRo .item a {
  display: block;
}
.cid-upw1aDUGRo .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upw1aDUGRo .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upw1aDUGRo .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upw1aDUGRo .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-upw1aDUGRo .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upw1aDUGRo .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upw1aDUGRo .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-upw1aDUGRo .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upw1aDUGRo .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upw1aDUGRo .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upw1aDUGRo .item-title {
  color: #ffffff;
}
.cid-upw1aDUGRo .mbr-date {
  color: #cacaca;
}
.cid-upw1aDUGRo .mbr-desc {
  color: #cacaca;
}
.cid-upw1aEzAL6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upw1aEzAL6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upw1aEzAL6 .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-upw1aEzAL6 .container {
    padding: 0 16px;
  }
}
.cid-upw1aEzAL6 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upw1aEzAL6 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upw1aEzAL6 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upw1aEzAL6 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upw1aEzAL6 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upw1aEzAL6 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upw1aEzAL6 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upw1aEzAL6 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upw1aEzAL6 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upw1aEzAL6 .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-upw1aEzAL6 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upw1aEzAL6 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upw1aEzAL6 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upw1aEzAL6 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upw1aEzAL6 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upw1aEzAL6 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upw1aEzAL6 .dragArea.row .form-group .form-control:hover,
.cid-upw1aEzAL6 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upw1aEzAL6 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upw1aEzAL6 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upw1aEzAL6 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upw1aEzAL6 .mbr-title {
  color: #ffffff;
}
.cid-upw1aEzAL6 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upw1aEzAL6 .mbr-section-subtitle {
  color: #08323C;
}
.cid-upw1aEzAL6 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upw1aEzAL6 .list {
  color: #08323C;
}
.cid-upw1aEzAL6 label {
  color: #08323C;
}
.cid-upw1aEzAL6 H3 {
  color: #000000;
}
.cid-upw1aEzAL6 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upw8ZjAVkR {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upw8ZjAVkR H1 {
  text-align: center;
}
.cid-uDmMr2dH12 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmMr2dH12 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmMr2dH12 .video-block {
    width: 100% !important;
  }
}
.cid-upw8ZkAUsr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upw8Zlvvoj {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-upw8Zlvvoj .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upw8Zlvvoj .text-block {
  position: relative;
  z-index: 0;
}
.cid-upw8Zlvvoj .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upw8Zlvvoj .box {
  left: 20%;
}
.cid-upw8Zlvvoj .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upw8Zlvvoj .mbr-section-text,
.cid-upw8Zlvvoj .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upw8Zlvvoj .text-box {
    display: none;
  }
  .cid-upw8Zlvvoj .mbr-section-title,
  .cid-upw8Zlvvoj .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upw8Zlvvoj .box {
    display: none;
  }
  .cid-upw8Zlvvoj .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upw8Zlvvoj .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upw8Zlvvoj .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upw8Zlvvoj .mbr-section-text {
  color: #c1c1c1;
}
.cid-upw8Zlvvoj .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upw8Zlvvoj .mbr-section-text DIV {
  text-align: center;
}
.cid-upw8ZmtyR5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upw8ZmtyR5 H1 {
  text-align: center;
}
.cid-upw8ZnohxR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upw8ZpcTBM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upw8ZpcTBM h2 {
  text-align: left;
}
.cid-upw8ZpcTBM h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upw8ZpcTBM p {
  color: #767676;
  text-align: left;
}
.cid-upw8ZpcTBM .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upw8ZpcTBM .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upw8ZpcTBM .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upw8ZpcTBM .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upw8ZpcTBM .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upw8ZpcTBM .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upw8ZpcTBM .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upw8ZpcTBM .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upw8ZpcTBM .card-img span {
    font-size: 40px !important;
  }
}
.cid-upw8ZpcTBM H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upw8ZpcTBM P {
  color: #ffffff;
  text-align: left;
}
.cid-upw8ZpcTBM H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upw8ZqkTe3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upw8ZqkTe3 H1 {
  color: #000000;
}
.cid-upw8ZrGCbb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upw8ZrGCbb .mbr-fallback-image.disabled {
  display: none;
}
.cid-upw8ZrGCbb .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upw8ZrGCbb .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upw8ZrGCbb .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upw8ZrGCbb .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upw8ZrGCbb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upw8ZrGCbb .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upw8ZrGCbb .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upw8ZrGCbb .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upw8ZrGCbb .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upw8ZrGCbb .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-upw8ZrGCbb .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upw8ZrGCbb .image-wrapper {
    padding: 1rem;
  }
}
.cid-upw8ZrGCbb .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upw8ZrGCbb .mbr-text,
.cid-upw8ZrGCbb .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upw8Zsw7Ea {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upw8Ztd3Kx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upw8Ztd3Kx H1 {
  color: #000000;
}
.cid-uxkK6YJVwg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkK6YJVwg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkK6YJVwg .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkK6YJVwg .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkK6YJVwg .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkK6YJVwg .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkK6YJVwg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkK6YJVwg .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkK6YJVwg .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkK6YJVwg .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkK6YJVwg .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkK6YJVwg .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-uxkK6YJVwg .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkK6YJVwg .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkK6YJVwg .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkK6YJVwg .mbr-text,
.cid-uxkK6YJVwg .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkK7Riinl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkK7Riinl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkK7Riinl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkK7Riinl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkK7Riinl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkK7Riinl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkK7Riinl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkK7Riinl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkK7Riinl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkK7Riinl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkK7Riinl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkK7Riinl .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-uxkK7Riinl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkK7Riinl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkK7Riinl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkK7Riinl .mbr-text,
.cid-uxkK7Riinl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8kv2aWmv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8kv2aWmv H1 {
  color: #000000;
}
.cid-ux8krAu5cx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux8krAu5cx h2 {
  text-align: left;
}
.cid-ux8krAu5cx h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8krAu5cx p {
  color: #767676;
  text-align: left;
}
.cid-ux8krAu5cx .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8krAu5cx .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8krAu5cx .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8krAu5cx .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8krAu5cx .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8krAu5cx .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8krAu5cx .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux8krAu5cx .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux8krAu5cx .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux8krAu5cx .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux8krAu5cx .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8ksdsFLa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8ksdsFLa H1 {
  color: #000000;
}
.cid-upw8ZwdWep {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upw8ZwdWep .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upw8ZwdWep .text-block {
  position: relative;
  z-index: 0;
}
.cid-upw8ZwdWep .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upw8ZwdWep .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upw8ZwdWep .box {
  right: 20%;
}
.cid-upw8ZwdWep .text-box {
  right: 0;
}
.cid-upw8ZwdWep .mbr-section-title,
.cid-upw8ZwdWep .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upw8ZwdWep .text-box {
    display: none;
  }
  .cid-upw8ZwdWep .mbr-section-title,
  .cid-upw8ZwdWep .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upw8ZwdWep .box {
    display: none;
  }
  .cid-upw8ZwdWep .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upw8ZwdWep .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upw8ZwdWep .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upw8ZwdWep .mbr-section-text {
  color: #c1c1c1;
}
.cid-upw8ZwdWep .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upw8ZwdWep .mbr-section-text DIV {
  text-align: center;
}
.cid-upw8ZwV08B {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upw8ZxDH0Z {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upw8ZxDH0Z h2 {
  text-align: left;
}
.cid-upw8ZxDH0Z h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upw8ZxDH0Z p {
  color: #767676;
  text-align: left;
}
.cid-upw8ZxDH0Z .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upw8ZxDH0Z .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upw8ZxDH0Z .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upw8ZxDH0Z .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upw8ZxDH0Z .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upw8ZxDH0Z .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upw8ZxDH0Z .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upw8ZxDH0Z .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upw8ZxDH0Z .card-img span {
    font-size: 40px !important;
  }
}
.cid-upw8ZxDH0Z .mbr-text {
  color: #232323;
}
.cid-ux8kJ05C3i {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8kJ05C3i H1 {
  color: #000000;
}
.cid-upw8Zylvig {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upw8Zylvig .mbr-fallback-image.disabled {
  display: none;
}
.cid-upw8Zylvig .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upw8Zylvig .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upw8Zylvig .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upw8Zylvig .container {
    padding: 0 26px;
  }
}
.cid-upw8Zylvig .row {
  justify-content: center;
}
.cid-upw8Zylvig .item {
  margin-bottom: 32px;
}
.cid-upw8Zylvig .item a {
  display: block;
}
.cid-upw8Zylvig .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upw8Zylvig .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upw8Zylvig .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upw8Zylvig .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-upw8Zylvig .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upw8Zylvig .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upw8Zylvig .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-upw8Zylvig .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upw8Zylvig .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upw8Zylvig .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upw8Zylvig .item-title {
  color: #ffffff;
}
.cid-upw8Zylvig .mbr-date {
  color: #cacaca;
}
.cid-upw8Zylvig .mbr-desc {
  color: #cacaca;
}
.cid-upw8Zz5AwA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upw8Zz5AwA .mbr-fallback-image.disabled {
  display: none;
}
.cid-upw8Zz5AwA .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-upw8Zz5AwA .container {
    padding: 0 16px;
  }
}
.cid-upw8Zz5AwA .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upw8Zz5AwA .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upw8Zz5AwA .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upw8Zz5AwA .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upw8Zz5AwA .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upw8Zz5AwA .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upw8Zz5AwA .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upw8Zz5AwA .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upw8Zz5AwA .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upw8Zz5AwA .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-upw8Zz5AwA .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upw8Zz5AwA .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upw8Zz5AwA .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upw8Zz5AwA .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upw8Zz5AwA .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upw8Zz5AwA .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upw8Zz5AwA .dragArea.row .form-group .form-control:hover,
.cid-upw8Zz5AwA .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upw8Zz5AwA .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upw8Zz5AwA .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upw8Zz5AwA .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upw8Zz5AwA .mbr-title {
  color: #ffffff;
}
.cid-upw8Zz5AwA .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upw8Zz5AwA .mbr-section-subtitle {
  color: #08323C;
}
.cid-upw8Zz5AwA .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upw8Zz5AwA .list {
  color: #08323C;
}
.cid-upw8Zz5AwA label {
  color: #08323C;
}
.cid-upw8Zz5AwA H3 {
  color: #000000;
}
.cid-upw8Zz5AwA P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upTwTP9pwe {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTwTP9pwe H1 {
  text-align: center;
}
.cid-uDmARZ3ZZ6 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmARZ3ZZ6 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmARZ3ZZ6 .video-block {
    width: 100% !important;
  }
}
.cid-upTwTPsxHq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTwTPFLky {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upTwTPFLky .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTwTPFLky .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTwTPFLky .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTwTPFLky .box {
  left: 20%;
}
.cid-upTwTPFLky .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upTwTPFLky .mbr-section-text,
.cid-upTwTPFLky .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upTwTPFLky .text-box {
    display: none;
  }
  .cid-upTwTPFLky .mbr-section-title,
  .cid-upTwTPFLky .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTwTPFLky .box {
    display: none;
  }
  .cid-upTwTPFLky .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTwTPFLky .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTwTPFLky .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTwTPFLky .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTwTPFLky .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTwTPFLky .mbr-section-text DIV {
  text-align: center;
}
.cid-upTwTPTfY8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTwTPTfY8 H1 {
  text-align: center;
}
.cid-upTwTQ4Ku7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTwTQefCn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTwTQefCn h2 {
  text-align: left;
}
.cid-upTwTQefCn h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTwTQefCn p {
  color: #767676;
  text-align: left;
}
.cid-upTwTQefCn .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTwTQefCn .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTwTQefCn .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTwTQefCn .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTwTQefCn .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTwTQefCn .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTwTQefCn .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTwTQefCn .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTwTQefCn .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTwTQefCn H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upTwTQefCn P {
  color: #ffffff;
  text-align: left;
}
.cid-upTwTQefCn H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upTwTQvfY5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTwTQvfY5 H1 {
  color: #000000;
}
.cid-upTIvwRYMx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upTIvwRYMx .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTIvwRYMx .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upTIvwRYMx .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upTIvwRYMx .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upTIvwRYMx .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upTIvwRYMx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upTIvwRYMx .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upTIvwRYMx .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upTIvwRYMx .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upTIvwRYMx .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upTIvwRYMx .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-upTIvwRYMx .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upTIvwRYMx .image-wrapper {
    padding: 1rem;
  }
}
.cid-upTIvwRYMx .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upTIvwRYMx .mbr-text,
.cid-upTIvwRYMx .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTyUYHjEQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTyUYHjEQ H1 {
  color: #000000;
}
.cid-uxgnLqHt8G {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgnLqHt8G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgnLqHt8G .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgnLqHt8G .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgnLqHt8G .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgnLqHt8G .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgnLqHt8G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgnLqHt8G .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgnLqHt8G .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgnLqHt8G .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgnLqHt8G .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgnLqHt8G .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-uxgnLqHt8G .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgnLqHt8G .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgnLqHt8G .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgnLqHt8G .mbr-text,
.cid-uxgnLqHt8G .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTwTRaoDM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTwTRaoDM H1 {
  color: #000000;
}
.cid-uxgnM4t3nP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgnM4t3nP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgnM4t3nP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgnM4t3nP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgnM4t3nP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgnM4t3nP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgnM4t3nP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgnM4t3nP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgnM4t3nP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgnM4t3nP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgnM4t3nP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgnM4t3nP .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-uxgnM4t3nP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgnM4t3nP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgnM4t3nP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgnM4t3nP .mbr-text,
.cid-uxgnM4t3nP .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgnMEBYmS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgnMEBYmS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgnMEBYmS .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgnMEBYmS .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgnMEBYmS .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgnMEBYmS .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgnMEBYmS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgnMEBYmS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgnMEBYmS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgnMEBYmS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgnMEBYmS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgnMEBYmS .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-uxgnMEBYmS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgnMEBYmS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgnMEBYmS .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgnMEBYmS .mbr-text,
.cid-uxgnMEBYmS .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTwTSgHy7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upTwTSgHy7 H1 {
  color: #000000;
}
.cid-upTwTSwzlK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-upTwTSwzlK h2 {
  text-align: left;
}
.cid-upTwTSwzlK h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTwTSwzlK p {
  color: #767676;
  text-align: left;
}
.cid-upTwTSwzlK .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTwTSwzlK .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTwTSwzlK .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTwTSwzlK .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTwTSwzlK .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTwTSwzlK .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTwTSwzlK .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-upTwTSwzlK .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-upTwTSwzlK .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-upTwTSwzlK .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-upTwTSwzlK .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTwTSNdxi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upTwTSNdxi .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTwTSNdxi .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTwTSNdxi .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTwTSNdxi .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upTwTSNdxi .box {
  right: 20%;
}
.cid-upTwTSNdxi .text-box {
  right: 0;
}
.cid-upTwTSNdxi .mbr-section-title,
.cid-upTwTSNdxi .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upTwTSNdxi .text-box {
    display: none;
  }
  .cid-upTwTSNdxi .mbr-section-title,
  .cid-upTwTSNdxi .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTwTSNdxi .box {
    display: none;
  }
  .cid-upTwTSNdxi .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTwTSNdxi .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTwTSNdxi .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTwTSNdxi .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTwTSNdxi .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTwTSNdxi .mbr-section-text DIV {
  text-align: center;
}
.cid-upTwTT203b {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTwTTeUzE {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upTwTTeUzE h2 {
  text-align: left;
}
.cid-upTwTTeUzE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTwTTeUzE p {
  color: #767676;
  text-align: left;
}
.cid-upTwTTeUzE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTwTTeUzE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTwTTeUzE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTwTTeUzE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTwTTeUzE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTwTTeUzE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTwTTeUzE .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTwTTeUzE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTwTTeUzE .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTwTTeUzE .mbr-text {
  color: #232323;
}
.cid-upTwTTthTf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upTwTTthTf .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTwTTthTf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upTwTTthTf .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upTwTTthTf .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upTwTTthTf .container {
    padding: 0 26px;
  }
}
.cid-upTwTTthTf .row {
  justify-content: center;
}
.cid-upTwTTthTf .item {
  margin-bottom: 32px;
}
.cid-upTwTTthTf .item a {
  display: block;
}
.cid-upTwTTthTf .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upTwTTthTf .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upTwTTthTf .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upTwTTthTf .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-upTwTTthTf .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upTwTTthTf .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upTwTTthTf .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-upTwTTthTf .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upTwTTthTf .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upTwTTthTf .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upTwTTthTf .item-title {
  color: #ffffff;
}
.cid-upTwTTthTf .mbr-date {
  color: #cacaca;
}
.cid-upTwTTthTf .mbr-desc {
  color: #cacaca;
}
.cid-upTwTTOpPN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upTwTTOpPN .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTwTTOpPN .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-upTwTTOpPN .container {
    padding: 0 16px;
  }
}
.cid-upTwTTOpPN .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upTwTTOpPN .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTwTTOpPN .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upTwTTOpPN .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTwTTOpPN .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upTwTTOpPN .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upTwTTOpPN .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upTwTTOpPN .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upTwTTOpPN .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upTwTTOpPN .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-upTwTTOpPN .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upTwTTOpPN .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upTwTTOpPN .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upTwTTOpPN .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upTwTTOpPN .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upTwTTOpPN .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upTwTTOpPN .dragArea.row .form-group .form-control:hover,
.cid-upTwTTOpPN .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upTwTTOpPN .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upTwTTOpPN .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upTwTTOpPN .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upTwTTOpPN .mbr-title {
  color: #ffffff;
}
.cid-upTwTTOpPN .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upTwTTOpPN .mbr-section-subtitle {
  color: #08323C;
}
.cid-upTwTTOpPN .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upTwTTOpPN .list {
  color: #08323C;
}
.cid-upTwTTOpPN label {
  color: #08323C;
}
.cid-upTwTTOpPN H3 {
  color: #000000;
}
.cid-upTwTTOpPN P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upTC5TNiG9 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTC5TNiG9 H1 {
  text-align: center;
}
.cid-uDmAUmsyxk {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmAUmsyxk .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmAUmsyxk .video-block {
    width: 100% !important;
  }
}
.cid-upTC5U5l6k {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTC5Uk2ts {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upTC5Uk2ts .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTC5Uk2ts .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTC5Uk2ts .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTC5Uk2ts .box {
  left: 20%;
}
.cid-upTC5Uk2ts .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upTC5Uk2ts .mbr-section-text,
.cid-upTC5Uk2ts .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upTC5Uk2ts .text-box {
    display: none;
  }
  .cid-upTC5Uk2ts .mbr-section-title,
  .cid-upTC5Uk2ts .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTC5Uk2ts .box {
    display: none;
  }
  .cid-upTC5Uk2ts .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTC5Uk2ts .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTC5Uk2ts .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTC5Uk2ts .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTC5Uk2ts .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTC5Uk2ts .mbr-section-text DIV {
  text-align: center;
}
.cid-upTC5UvjIR {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTC5UvjIR H1 {
  text-align: center;
}
.cid-upTC5UITQv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTC5UTM52 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTC5UTM52 h2 {
  text-align: left;
}
.cid-upTC5UTM52 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTC5UTM52 p {
  color: #767676;
  text-align: left;
}
.cid-upTC5UTM52 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTC5UTM52 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTC5UTM52 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTC5UTM52 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTC5UTM52 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTC5UTM52 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTC5UTM52 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTC5UTM52 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTC5UTM52 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTC5UTM52 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upTC5UTM52 P {
  color: #ffffff;
  text-align: left;
}
.cid-upTC5UTM52 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upTC5VbU2I {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTC5VbU2I H1 {
  color: #000000;
}
.cid-uxgnWBh7uH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgnWBh7uH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgnWBh7uH .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgnWBh7uH .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgnWBh7uH .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgnWBh7uH .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgnWBh7uH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgnWBh7uH .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgnWBh7uH .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgnWBh7uH .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgnWBh7uH .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgnWBh7uH .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-uxgnWBh7uH .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgnWBh7uH .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgnWBh7uH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgnWBh7uH .mbr-text,
.cid-uxgnWBh7uH .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTC5VOdp6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTC5VOdp6 H1 {
  color: #000000;
}
.cid-uxgnXQ7Rzo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgnXQ7Rzo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgnXQ7Rzo .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgnXQ7Rzo .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgnXQ7Rzo .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgnXQ7Rzo .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgnXQ7Rzo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgnXQ7Rzo .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgnXQ7Rzo .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgnXQ7Rzo .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgnXQ7Rzo .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgnXQ7Rzo .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-uxgnXQ7Rzo .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgnXQ7Rzo .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgnXQ7Rzo .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgnXQ7Rzo .mbr-text,
.cid-uxgnXQ7Rzo .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTC5Ww9pX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTC5Ww9pX H1 {
  color: #000000;
}
.cid-uxgnYFLJ8i {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgnYFLJ8i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgnYFLJ8i .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgnYFLJ8i .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgnYFLJ8i .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgnYFLJ8i .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgnYFLJ8i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgnYFLJ8i .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgnYFLJ8i .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgnYFLJ8i .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgnYFLJ8i .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgnYFLJ8i .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-uxgnYFLJ8i .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgnYFLJ8i .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgnYFLJ8i .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgnYFLJ8i .mbr-text,
.cid-uxgnYFLJ8i .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgnZfBM67 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgnZfBM67 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgnZfBM67 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgnZfBM67 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgnZfBM67 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgnZfBM67 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgnZfBM67 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgnZfBM67 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgnZfBM67 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgnZfBM67 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgnZfBM67 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgnZfBM67 .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-uxgnZfBM67 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgnZfBM67 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgnZfBM67 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgnZfBM67 .mbr-text,
.cid-uxgnZfBM67 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTC5XHSkt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upTC5XHSkt H1 {
  color: #000000;
}
.cid-uxgo6xHgLV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxgo6xHgLV h2 {
  text-align: left;
}
.cid-uxgo6xHgLV h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxgo6xHgLV p {
  color: #767676;
  text-align: left;
}
.cid-uxgo6xHgLV .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxgo6xHgLV .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxgo6xHgLV .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxgo6xHgLV .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxgo6xHgLV .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxgo6xHgLV .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxgo6xHgLV .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxgo6xHgLV .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxgo6xHgLV .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxgo6xHgLV .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxgo6xHgLV .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTC5YDetm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upTC5YDetm .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTC5YDetm .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTC5YDetm .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTC5YDetm .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upTC5YDetm .box {
  right: 20%;
}
.cid-upTC5YDetm .text-box {
  right: 0;
}
.cid-upTC5YDetm .mbr-section-title,
.cid-upTC5YDetm .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upTC5YDetm .text-box {
    display: none;
  }
  .cid-upTC5YDetm .mbr-section-title,
  .cid-upTC5YDetm .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTC5YDetm .box {
    display: none;
  }
  .cid-upTC5YDetm .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTC5YDetm .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTC5YDetm .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTC5YDetm .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTC5YDetm .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTC5YDetm .mbr-section-text DIV {
  text-align: center;
}
.cid-upTC5YTXP7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTC5Z6V5z {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upTC5Z6V5z h2 {
  text-align: left;
}
.cid-upTC5Z6V5z h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTC5Z6V5z p {
  color: #767676;
  text-align: left;
}
.cid-upTC5Z6V5z .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTC5Z6V5z .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTC5Z6V5z .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTC5Z6V5z .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTC5Z6V5z .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTC5Z6V5z .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTC5Z6V5z .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTC5Z6V5z .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTC5Z6V5z .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTC5Z6V5z .mbr-text {
  color: #232323;
}
.cid-upTC5ZqaCv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upTC5ZqaCv .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTC5ZqaCv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upTC5ZqaCv .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upTC5ZqaCv .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upTC5ZqaCv .container {
    padding: 0 26px;
  }
}
.cid-upTC5ZqaCv .row {
  justify-content: center;
}
.cid-upTC5ZqaCv .item {
  margin-bottom: 32px;
}
.cid-upTC5ZqaCv .item a {
  display: block;
}
.cid-upTC5ZqaCv .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upTC5ZqaCv .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upTC5ZqaCv .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upTC5ZqaCv .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-upTC5ZqaCv .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upTC5ZqaCv .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upTC5ZqaCv .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-upTC5ZqaCv .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upTC5ZqaCv .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upTC5ZqaCv .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upTC5ZqaCv .item-title {
  color: #ffffff;
}
.cid-upTC5ZqaCv .mbr-date {
  color: #cacaca;
}
.cid-upTC5ZqaCv .mbr-desc {
  color: #cacaca;
}
.cid-upTC5ZGkrG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upTC5ZGkrG .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTC5ZGkrG .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-upTC5ZGkrG .container {
    padding: 0 16px;
  }
}
.cid-upTC5ZGkrG .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upTC5ZGkrG .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTC5ZGkrG .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upTC5ZGkrG .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTC5ZGkrG .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upTC5ZGkrG .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upTC5ZGkrG .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upTC5ZGkrG .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upTC5ZGkrG .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upTC5ZGkrG .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-upTC5ZGkrG .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upTC5ZGkrG .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upTC5ZGkrG .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upTC5ZGkrG .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upTC5ZGkrG .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upTC5ZGkrG .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upTC5ZGkrG .dragArea.row .form-group .form-control:hover,
.cid-upTC5ZGkrG .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upTC5ZGkrG .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upTC5ZGkrG .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upTC5ZGkrG .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upTC5ZGkrG .mbr-title {
  color: #ffffff;
}
.cid-upTC5ZGkrG .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upTC5ZGkrG .mbr-section-subtitle {
  color: #08323C;
}
.cid-upTC5ZGkrG .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upTC5ZGkrG .list {
  color: #08323C;
}
.cid-upTC5ZGkrG label {
  color: #08323C;
}
.cid-upTC5ZGkrG H3 {
  color: #000000;
}
.cid-upTC5ZGkrG P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upTDJHx4hK {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTDJHx4hK H1 {
  text-align: center;
}
.cid-uDmAWDFAqs {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmAWDFAqs .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmAWDFAqs .video-block {
    width: 100% !important;
  }
}
.cid-upTDJHOKnv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTDJI0fiB {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upTDJI0fiB .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTDJI0fiB .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTDJI0fiB .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTDJI0fiB .box {
  left: 20%;
}
.cid-upTDJI0fiB .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upTDJI0fiB .mbr-section-text,
.cid-upTDJI0fiB .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upTDJI0fiB .text-box {
    display: none;
  }
  .cid-upTDJI0fiB .mbr-section-title,
  .cid-upTDJI0fiB .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTDJI0fiB .box {
    display: none;
  }
  .cid-upTDJI0fiB .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTDJI0fiB .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTDJI0fiB .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTDJI0fiB .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTDJI0fiB .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTDJI0fiB .mbr-section-text DIV {
  text-align: center;
}
.cid-upTDJIba5k {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTDJIba5k H1 {
  text-align: center;
}
.cid-upTDJIp9VE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTDJIA9g6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTDJIA9g6 h2 {
  text-align: left;
}
.cid-upTDJIA9g6 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTDJIA9g6 p {
  color: #767676;
  text-align: left;
}
.cid-upTDJIA9g6 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTDJIA9g6 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTDJIA9g6 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTDJIA9g6 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTDJIA9g6 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTDJIA9g6 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTDJIA9g6 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTDJIA9g6 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTDJIA9g6 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTDJIA9g6 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upTDJIA9g6 P {
  color: #ffffff;
  text-align: left;
}
.cid-upTDJIA9g6 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upTDJIRzLr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTDJIRzLr H1 {
  color: #000000;
}
.cid-uxgohKjXpT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgohKjXpT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgohKjXpT .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgohKjXpT .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgohKjXpT .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgohKjXpT .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgohKjXpT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgohKjXpT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgohKjXpT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgohKjXpT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgohKjXpT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgohKjXpT .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-uxgohKjXpT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgohKjXpT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgohKjXpT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgohKjXpT .mbr-text,
.cid-uxgohKjXpT .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTDJJu8OH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTDJJu8OH H1 {
  color: #000000;
}
.cid-uxgolgIzXF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgolgIzXF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgolgIzXF .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgolgIzXF .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgolgIzXF .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgolgIzXF .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgolgIzXF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgolgIzXF .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgolgIzXF .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgolgIzXF .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgolgIzXF .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgolgIzXF .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-uxgolgIzXF .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgolgIzXF .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgolgIzXF .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgolgIzXF .mbr-text,
.cid-uxgolgIzXF .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTDJK5Ehr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTDJK5Ehr H1 {
  color: #000000;
}
.cid-uxgoji3jZp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgoji3jZp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgoji3jZp .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgoji3jZp .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgoji3jZp .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgoji3jZp .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgoji3jZp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgoji3jZp .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgoji3jZp .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgoji3jZp .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgoji3jZp .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgoji3jZp .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-uxgoji3jZp .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgoji3jZp .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgoji3jZp .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgoji3jZp .mbr-text,
.cid-uxgoji3jZp .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgojSn5t5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgojSn5t5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgojSn5t5 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgojSn5t5 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgojSn5t5 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgojSn5t5 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgojSn5t5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgojSn5t5 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgojSn5t5 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgojSn5t5 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgojSn5t5 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgojSn5t5 .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-uxgojSn5t5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgojSn5t5 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgojSn5t5 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgojSn5t5 .mbr-text,
.cid-uxgojSn5t5 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTDJLkYvJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upTDJLkYvJ H1 {
  color: #000000;
}
.cid-uxgonGmQqR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxgonGmQqR h2 {
  text-align: left;
}
.cid-uxgonGmQqR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxgonGmQqR p {
  color: #767676;
  text-align: left;
}
.cid-uxgonGmQqR .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxgonGmQqR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxgonGmQqR .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxgonGmQqR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxgonGmQqR .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxgonGmQqR .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxgonGmQqR .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxgonGmQqR .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxgonGmQqR .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxgonGmQqR .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxgonGmQqR .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxgooNVA8L {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxgooNVA8L H1 {
  color: #000000;
}
.cid-upTDJLOp3i {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upTDJLOp3i .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTDJLOp3i .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTDJLOp3i .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTDJLOp3i .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upTDJLOp3i .box {
  right: 20%;
}
.cid-upTDJLOp3i .text-box {
  right: 0;
}
.cid-upTDJLOp3i .mbr-section-title,
.cid-upTDJLOp3i .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upTDJLOp3i .text-box {
    display: none;
  }
  .cid-upTDJLOp3i .mbr-section-title,
  .cid-upTDJLOp3i .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTDJLOp3i .box {
    display: none;
  }
  .cid-upTDJLOp3i .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTDJLOp3i .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTDJLOp3i .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTDJLOp3i .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTDJLOp3i .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTDJLOp3i .mbr-section-text DIV {
  text-align: center;
}
.cid-upTDJM6oYf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTDJMkjcP {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upTDJMkjcP h2 {
  text-align: left;
}
.cid-upTDJMkjcP h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTDJMkjcP p {
  color: #767676;
  text-align: left;
}
.cid-upTDJMkjcP .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTDJMkjcP .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTDJMkjcP .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTDJMkjcP .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTDJMkjcP .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTDJMkjcP .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTDJMkjcP .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTDJMkjcP .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTDJMkjcP .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTDJMkjcP .mbr-text {
  color: #232323;
}
.cid-upTDJMz40X {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upTDJMz40X .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTDJMz40X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upTDJMz40X .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upTDJMz40X .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upTDJMz40X .container {
    padding: 0 26px;
  }
}
.cid-upTDJMz40X .row {
  justify-content: center;
}
.cid-upTDJMz40X .item {
  margin-bottom: 32px;
}
.cid-upTDJMz40X .item a {
  display: block;
}
.cid-upTDJMz40X .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upTDJMz40X .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upTDJMz40X .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upTDJMz40X .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-upTDJMz40X .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upTDJMz40X .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upTDJMz40X .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-upTDJMz40X .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upTDJMz40X .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upTDJMz40X .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upTDJMz40X .item-title {
  color: #ffffff;
}
.cid-upTDJMz40X .mbr-date {
  color: #cacaca;
}
.cid-upTDJMz40X .mbr-desc {
  color: #cacaca;
}
.cid-upTDJMTDK7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upTDJMTDK7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTDJMTDK7 .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-upTDJMTDK7 .container {
    padding: 0 16px;
  }
}
.cid-upTDJMTDK7 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upTDJMTDK7 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTDJMTDK7 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upTDJMTDK7 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTDJMTDK7 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upTDJMTDK7 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upTDJMTDK7 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upTDJMTDK7 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upTDJMTDK7 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upTDJMTDK7 .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-upTDJMTDK7 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upTDJMTDK7 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upTDJMTDK7 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upTDJMTDK7 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upTDJMTDK7 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upTDJMTDK7 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upTDJMTDK7 .dragArea.row .form-group .form-control:hover,
.cid-upTDJMTDK7 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upTDJMTDK7 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upTDJMTDK7 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upTDJMTDK7 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upTDJMTDK7 .mbr-title {
  color: #ffffff;
}
.cid-upTDJMTDK7 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upTDJMTDK7 .mbr-section-subtitle {
  color: #08323C;
}
.cid-upTDJMTDK7 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upTDJMTDK7 .list {
  color: #08323C;
}
.cid-upTDJMTDK7 label {
  color: #08323C;
}
.cid-upTDJMTDK7 H3 {
  color: #000000;
}
.cid-upTDJMTDK7 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upTFksZ37u {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTFksZ37u H1 {
  text-align: center;
}
.cid-uDmB4aOADZ {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmB4aOADZ .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmB4aOADZ .video-block {
    width: 100% !important;
  }
}
.cid-upTFktpYR8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTFktFx6j {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upTFktFx6j .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTFktFx6j .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTFktFx6j .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTFktFx6j .box {
  left: 20%;
}
.cid-upTFktFx6j .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upTFktFx6j .mbr-section-text,
.cid-upTFktFx6j .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upTFktFx6j .text-box {
    display: none;
  }
  .cid-upTFktFx6j .mbr-section-title,
  .cid-upTFktFx6j .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTFktFx6j .box {
    display: none;
  }
  .cid-upTFktFx6j .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTFktFx6j .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTFktFx6j .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTFktFx6j .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTFktFx6j .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTFktFx6j .mbr-section-text DIV {
  text-align: center;
}
.cid-upTFktVmXV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTFktVmXV H1 {
  text-align: center;
}
.cid-upTFkubcT1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTFkumX2B {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTFkumX2B h2 {
  text-align: left;
}
.cid-upTFkumX2B h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTFkumX2B p {
  color: #767676;
  text-align: left;
}
.cid-upTFkumX2B .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTFkumX2B .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTFkumX2B .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTFkumX2B .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTFkumX2B .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTFkumX2B .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTFkumX2B .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTFkumX2B .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTFkumX2B .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTFkumX2B H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upTFkumX2B P {
  color: #ffffff;
  text-align: left;
}
.cid-upTFkumX2B H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upTFkuFGjE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTFkuFGjE H1 {
  color: #000000;
}
.cid-uxgpyoTeRJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgpyoTeRJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgpyoTeRJ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgpyoTeRJ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgpyoTeRJ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgpyoTeRJ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgpyoTeRJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgpyoTeRJ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgpyoTeRJ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgpyoTeRJ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgpyoTeRJ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgpyoTeRJ .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-uxgpyoTeRJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgpyoTeRJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgpyoTeRJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgpyoTeRJ .mbr-text,
.cid-uxgpyoTeRJ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTFkvgaAN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTFkvgaAN H1 {
  color: #000000;
}
.cid-uxgpwn8Qyc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgpwn8Qyc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgpwn8Qyc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgpwn8Qyc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgpwn8Qyc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgpwn8Qyc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgpwn8Qyc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgpwn8Qyc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgpwn8Qyc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgpwn8Qyc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgpwn8Qyc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgpwn8Qyc .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-uxgpwn8Qyc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgpwn8Qyc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgpwn8Qyc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgpwn8Qyc .mbr-text,
.cid-uxgpwn8Qyc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTFkvRzEO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTFkvRzEO H1 {
  color: #000000;
}
.cid-uxgpuCxI9I {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgpuCxI9I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgpuCxI9I .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgpuCxI9I .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgpuCxI9I .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgpuCxI9I .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgpuCxI9I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgpuCxI9I .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgpuCxI9I .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgpuCxI9I .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgpuCxI9I .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgpuCxI9I .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-uxgpuCxI9I .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgpuCxI9I .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgpuCxI9I .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgpuCxI9I .mbr-text,
.cid-uxgpuCxI9I .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgpvicpw4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgpvicpw4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgpvicpw4 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgpvicpw4 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgpvicpw4 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgpvicpw4 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgpvicpw4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgpvicpw4 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgpvicpw4 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgpvicpw4 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgpvicpw4 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgpvicpw4 .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-uxgpvicpw4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgpvicpw4 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgpvicpw4 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgpvicpw4 .mbr-text,
.cid-uxgpvicpw4 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTFkwUvyD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upTFkwUvyD H1 {
  color: #000000;
}
.cid-uxgpzXALjY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxgpzXALjY h2 {
  text-align: left;
}
.cid-uxgpzXALjY h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxgpzXALjY p {
  color: #767676;
  text-align: left;
}
.cid-uxgpzXALjY .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxgpzXALjY .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxgpzXALjY .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxgpzXALjY .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxgpzXALjY .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxgpzXALjY .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxgpzXALjY .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxgpzXALjY .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxgpzXALjY .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxgpzXALjY .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxgpzXALjY .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxgpGlfJ2j {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxgpGlfJ2j H1 {
  color: #000000;
}
.cid-upTFkxqHZg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upTFkxqHZg .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTFkxqHZg .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTFkxqHZg .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTFkxqHZg .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upTFkxqHZg .box {
  right: 20%;
}
.cid-upTFkxqHZg .text-box {
  right: 0;
}
.cid-upTFkxqHZg .mbr-section-title,
.cid-upTFkxqHZg .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upTFkxqHZg .text-box {
    display: none;
  }
  .cid-upTFkxqHZg .mbr-section-title,
  .cid-upTFkxqHZg .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTFkxqHZg .box {
    display: none;
  }
  .cid-upTFkxqHZg .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTFkxqHZg .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTFkxqHZg .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTFkxqHZg .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTFkxqHZg .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTFkxqHZg .mbr-section-text DIV {
  text-align: center;
}
.cid-upTFkxGECs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTFkxUkJ4 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upTFkxUkJ4 h2 {
  text-align: left;
}
.cid-upTFkxUkJ4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTFkxUkJ4 p {
  color: #767676;
  text-align: left;
}
.cid-upTFkxUkJ4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTFkxUkJ4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTFkxUkJ4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTFkxUkJ4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTFkxUkJ4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTFkxUkJ4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTFkxUkJ4 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTFkxUkJ4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTFkxUkJ4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTFkxUkJ4 .mbr-text {
  color: #232323;
}
.cid-upTFkyaZCP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upTFkyaZCP .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTFkyaZCP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upTFkyaZCP .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upTFkyaZCP .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upTFkyaZCP .container {
    padding: 0 26px;
  }
}
.cid-upTFkyaZCP .row {
  justify-content: center;
}
.cid-upTFkyaZCP .item {
  margin-bottom: 32px;
}
.cid-upTFkyaZCP .item a {
  display: block;
}
.cid-upTFkyaZCP .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upTFkyaZCP .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upTFkyaZCP .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upTFkyaZCP .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-upTFkyaZCP .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upTFkyaZCP .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upTFkyaZCP .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-upTFkyaZCP .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upTFkyaZCP .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upTFkyaZCP .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upTFkyaZCP .item-title {
  color: #ffffff;
}
.cid-upTFkyaZCP .mbr-date {
  color: #cacaca;
}
.cid-upTFkyaZCP .mbr-desc {
  color: #cacaca;
}
.cid-upTFkytvPq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upTFkytvPq .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTFkytvPq .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-upTFkytvPq .container {
    padding: 0 16px;
  }
}
.cid-upTFkytvPq .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upTFkytvPq .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTFkytvPq .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upTFkytvPq .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTFkytvPq .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upTFkytvPq .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upTFkytvPq .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upTFkytvPq .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upTFkytvPq .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upTFkytvPq .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-upTFkytvPq .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upTFkytvPq .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upTFkytvPq .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upTFkytvPq .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upTFkytvPq .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upTFkytvPq .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upTFkytvPq .dragArea.row .form-group .form-control:hover,
.cid-upTFkytvPq .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upTFkytvPq .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upTFkytvPq .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upTFkytvPq .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upTFkytvPq .mbr-title {
  color: #ffffff;
}
.cid-upTFkytvPq .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upTFkytvPq .mbr-section-subtitle {
  color: #08323C;
}
.cid-upTFkytvPq .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upTFkytvPq .list {
  color: #08323C;
}
.cid-upTFkytvPq label {
  color: #08323C;
}
.cid-upTFkytvPq H3 {
  color: #000000;
}
.cid-upTFkytvPq P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upTGAmwkWn {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTGAmwkWn H1 {
  text-align: center;
}
.cid-uDmBaOkDKQ {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmBaOkDKQ .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmBaOkDKQ .video-block {
    width: 100% !important;
  }
}
.cid-upTGAmODMo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTGAn1PBJ {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upTGAn1PBJ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTGAn1PBJ .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTGAn1PBJ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTGAn1PBJ .box {
  left: 20%;
}
.cid-upTGAn1PBJ .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upTGAn1PBJ .mbr-section-text,
.cid-upTGAn1PBJ .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upTGAn1PBJ .text-box {
    display: none;
  }
  .cid-upTGAn1PBJ .mbr-section-title,
  .cid-upTGAn1PBJ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTGAn1PBJ .box {
    display: none;
  }
  .cid-upTGAn1PBJ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTGAn1PBJ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTGAn1PBJ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTGAn1PBJ .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTGAn1PBJ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTGAn1PBJ .mbr-section-text DIV {
  text-align: center;
}
.cid-upTGAngBSv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTGAngBSv H1 {
  text-align: center;
}
.cid-upTGAnrt1h {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTGAnCqH6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTGAnCqH6 h2 {
  text-align: left;
}
.cid-upTGAnCqH6 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTGAnCqH6 p {
  color: #767676;
  text-align: left;
}
.cid-upTGAnCqH6 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTGAnCqH6 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTGAnCqH6 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTGAnCqH6 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTGAnCqH6 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTGAnCqH6 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTGAnCqH6 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTGAnCqH6 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTGAnCqH6 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTGAnCqH6 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upTGAnCqH6 P {
  color: #ffffff;
  text-align: left;
}
.cid-upTGAnCqH6 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upTGAnU8G6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTGAnU8G6 H1 {
  color: #000000;
}
.cid-uxgpRiHj27 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgpRiHj27 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgpRiHj27 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgpRiHj27 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgpRiHj27 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgpRiHj27 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgpRiHj27 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgpRiHj27 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgpRiHj27 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgpRiHj27 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgpRiHj27 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgpRiHj27 .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-uxgpRiHj27 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgpRiHj27 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgpRiHj27 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgpRiHj27 .mbr-text,
.cid-uxgpRiHj27 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgpRPclYP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgpRPclYP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgpRPclYP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgpRPclYP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgpRPclYP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgpRPclYP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgpRPclYP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgpRPclYP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgpRPclYP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgpRPclYP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgpRPclYP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgpRPclYP .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-uxgpRPclYP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgpRPclYP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgpRPclYP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgpRPclYP .mbr-text,
.cid-uxgpRPclYP .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTGAoEOkh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTGAoEOkh H1 {
  color: #000000;
}
.cid-upTGApox8T {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTGApox8T H1 {
  color: #000000;
}
.cid-uxgpOJtxEt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgpOJtxEt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgpOJtxEt .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgpOJtxEt .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgpOJtxEt .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgpOJtxEt .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgpOJtxEt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgpOJtxEt .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgpOJtxEt .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgpOJtxEt .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgpOJtxEt .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgpOJtxEt .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-uxgpOJtxEt .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgpOJtxEt .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgpOJtxEt .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgpOJtxEt .mbr-text,
.cid-uxgpOJtxEt .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgpPjeQmS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgpPjeQmS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgpPjeQmS .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgpPjeQmS .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgpPjeQmS .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgpPjeQmS .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgpPjeQmS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgpPjeQmS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgpPjeQmS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgpPjeQmS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgpPjeQmS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgpPjeQmS .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-uxgpPjeQmS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgpPjeQmS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgpPjeQmS .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgpPjeQmS .mbr-text,
.cid-uxgpPjeQmS .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTGAqDZCz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upTGAqDZCz H1 {
  color: #000000;
}
.cid-uxgpUtbyZU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxgpUtbyZU h2 {
  text-align: left;
}
.cid-uxgpUtbyZU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxgpUtbyZU p {
  color: #767676;
  text-align: left;
}
.cid-uxgpUtbyZU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxgpUtbyZU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxgpUtbyZU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxgpUtbyZU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxgpUtbyZU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxgpUtbyZU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxgpUtbyZU .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxgpUtbyZU .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxgpUtbyZU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxgpUtbyZU .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxgpUtbyZU .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTGAredUl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upTGAredUl .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTGAredUl .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTGAredUl .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTGAredUl .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upTGAredUl .box {
  right: 20%;
}
.cid-upTGAredUl .text-box {
  right: 0;
}
.cid-upTGAredUl .mbr-section-title,
.cid-upTGAredUl .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upTGAredUl .text-box {
    display: none;
  }
  .cid-upTGAredUl .mbr-section-title,
  .cid-upTGAredUl .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTGAredUl .box {
    display: none;
  }
  .cid-upTGAredUl .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTGAredUl .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTGAredUl .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTGAredUl .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTGAredUl .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTGAredUl .mbr-section-text DIV {
  text-align: center;
}
.cid-upTGArvmzd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTGArJcBb {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upTGArJcBb h2 {
  text-align: left;
}
.cid-upTGArJcBb h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTGArJcBb p {
  color: #767676;
  text-align: left;
}
.cid-upTGArJcBb .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTGArJcBb .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTGArJcBb .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTGArJcBb .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTGArJcBb .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTGArJcBb .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTGArJcBb .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTGArJcBb .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTGArJcBb .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTGArJcBb .mbr-text {
  color: #232323;
}
.cid-upTGAs2wRl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upTGAs2wRl .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTGAs2wRl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upTGAs2wRl .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upTGAs2wRl .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upTGAs2wRl .container {
    padding: 0 26px;
  }
}
.cid-upTGAs2wRl .row {
  justify-content: center;
}
.cid-upTGAs2wRl .item {
  margin-bottom: 32px;
}
.cid-upTGAs2wRl .item a {
  display: block;
}
.cid-upTGAs2wRl .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upTGAs2wRl .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upTGAs2wRl .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upTGAs2wRl .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-upTGAs2wRl .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upTGAs2wRl .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upTGAs2wRl .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-upTGAs2wRl .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upTGAs2wRl .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upTGAs2wRl .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upTGAs2wRl .item-title {
  color: #ffffff;
}
.cid-upTGAs2wRl .mbr-date {
  color: #cacaca;
}
.cid-upTGAs2wRl .mbr-desc {
  color: #cacaca;
}
.cid-upTGAsnzru {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upTGAsnzru .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTGAsnzru .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-upTGAsnzru .container {
    padding: 0 16px;
  }
}
.cid-upTGAsnzru .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upTGAsnzru .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTGAsnzru .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upTGAsnzru .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTGAsnzru .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upTGAsnzru .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upTGAsnzru .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upTGAsnzru .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upTGAsnzru .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upTGAsnzru .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-upTGAsnzru .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upTGAsnzru .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upTGAsnzru .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upTGAsnzru .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upTGAsnzru .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upTGAsnzru .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upTGAsnzru .dragArea.row .form-group .form-control:hover,
.cid-upTGAsnzru .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upTGAsnzru .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upTGAsnzru .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upTGAsnzru .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upTGAsnzru .mbr-title {
  color: #ffffff;
}
.cid-upTGAsnzru .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upTGAsnzru .mbr-section-subtitle {
  color: #08323C;
}
.cid-upTGAsnzru .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upTGAsnzru .list {
  color: #08323C;
}
.cid-upTGAsnzru label {
  color: #08323C;
}
.cid-upTGAsnzru H3 {
  color: #000000;
}
.cid-upTGAsnzru P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upTJ9YPsbz {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTJ9YPsbz H1 {
  text-align: center;
}
.cid-uDmBdhcBE0 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmBdhcBE0 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmBdhcBE0 .video-block {
    width: 100% !important;
  }
}
.cid-upTJ9Z9Bas {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTJ9Zo59O {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upTJ9Zo59O .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTJ9Zo59O .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTJ9Zo59O .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTJ9Zo59O .box {
  left: 20%;
}
.cid-upTJ9Zo59O .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upTJ9Zo59O .mbr-section-text,
.cid-upTJ9Zo59O .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upTJ9Zo59O .text-box {
    display: none;
  }
  .cid-upTJ9Zo59O .mbr-section-title,
  .cid-upTJ9Zo59O .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTJ9Zo59O .box {
    display: none;
  }
  .cid-upTJ9Zo59O .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTJ9Zo59O .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTJ9Zo59O .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTJ9Zo59O .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTJ9Zo59O .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTJ9Zo59O .mbr-section-text DIV {
  text-align: center;
}
.cid-upTJ9ZGzIK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTJ9ZGzIK H1 {
  text-align: center;
}
.cid-upTJ9ZTol7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTJa05poi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTJa05poi h2 {
  text-align: left;
}
.cid-upTJa05poi h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTJa05poi p {
  color: #767676;
  text-align: left;
}
.cid-upTJa05poi .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTJa05poi .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTJa05poi .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTJa05poi .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTJa05poi .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTJa05poi .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTJa05poi .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTJa05poi .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTJa05poi .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTJa05poi H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upTJa05poi P {
  color: #ffffff;
  text-align: left;
}
.cid-upTJa05poi H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upTJa0pRXF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTJa0pRXF H1 {
  color: #000000;
}
.cid-upXBGHauHT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upXBGHauHT .mbr-fallback-image.disabled {
  display: none;
}
.cid-upXBGHauHT .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upXBGHauHT .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upXBGHauHT .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upXBGHauHT .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upXBGHauHT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upXBGHauHT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upXBGHauHT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upXBGHauHT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upXBGHauHT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upXBGHauHT .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-upXBGHauHT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upXBGHauHT .image-wrapper {
    padding: 1rem;
  }
}
.cid-upXBGHauHT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upXBGHauHT .mbr-text,
.cid-upXBGHauHT .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upTJa165lf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTJa165lf H1 {
  color: #000000;
}
.cid-uxgrixtcwV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgrixtcwV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgrixtcwV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgrixtcwV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgrixtcwV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgrixtcwV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgrixtcwV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgrixtcwV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgrixtcwV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgrixtcwV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgrixtcwV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgrixtcwV .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-uxgrixtcwV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgrixtcwV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgrixtcwV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgrixtcwV .mbr-text,
.cid-uxgrixtcwV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTJa1Ms8K {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTJa1Ms8K H1 {
  color: #000000;
}
.cid-uxgrgdX7bc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgrgdX7bc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgrgdX7bc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgrgdX7bc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgrgdX7bc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgrgdX7bc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgrgdX7bc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgrgdX7bc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgrgdX7bc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgrgdX7bc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgrgdX7bc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgrgdX7bc .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-uxgrgdX7bc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgrgdX7bc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgrgdX7bc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgrgdX7bc .mbr-text,
.cid-uxgrgdX7bc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgrhnwIjw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgrhnwIjw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgrhnwIjw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgrhnwIjw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgrhnwIjw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgrhnwIjw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgrhnwIjw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgrhnwIjw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgrhnwIjw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgrhnwIjw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgrhnwIjw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgrhnwIjw .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-uxgrhnwIjw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgrhnwIjw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgrhnwIjw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgrhnwIjw .mbr-text,
.cid-uxgrhnwIjw .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTJa2ZzhA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upTJa2ZzhA H1 {
  color: #000000;
}
.cid-uxgrnIXw5r {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxgrnIXw5r h2 {
  text-align: left;
}
.cid-uxgrnIXw5r h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxgrnIXw5r p {
  color: #767676;
  text-align: left;
}
.cid-uxgrnIXw5r .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxgrnIXw5r .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxgrnIXw5r .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxgrnIXw5r .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxgrnIXw5r .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxgrnIXw5r .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxgrnIXw5r .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxgrnIXw5r .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxgrnIXw5r .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxgrnIXw5r .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxgrnIXw5r .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxgroKCE7k {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxgroKCE7k H1 {
  color: #000000;
}
.cid-upTJa3ChJd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upTJa3ChJd .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTJa3ChJd .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTJa3ChJd .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTJa3ChJd .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upTJa3ChJd .box {
  right: 20%;
}
.cid-upTJa3ChJd .text-box {
  right: 0;
}
.cid-upTJa3ChJd .mbr-section-title,
.cid-upTJa3ChJd .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upTJa3ChJd .text-box {
    display: none;
  }
  .cid-upTJa3ChJd .mbr-section-title,
  .cid-upTJa3ChJd .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTJa3ChJd .box {
    display: none;
  }
  .cid-upTJa3ChJd .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTJa3ChJd .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTJa3ChJd .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTJa3ChJd .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTJa3ChJd .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTJa3ChJd .mbr-section-text DIV {
  text-align: center;
}
.cid-upTJa3Uonc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTJa4fF1s {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upTJa4fF1s h2 {
  text-align: left;
}
.cid-upTJa4fF1s h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTJa4fF1s p {
  color: #767676;
  text-align: left;
}
.cid-upTJa4fF1s .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTJa4fF1s .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTJa4fF1s .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTJa4fF1s .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTJa4fF1s .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTJa4fF1s .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTJa4fF1s .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTJa4fF1s .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTJa4fF1s .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTJa4fF1s .mbr-text {
  color: #232323;
}
.cid-upTJa4xckV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upTJa4xckV .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTJa4xckV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upTJa4xckV .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upTJa4xckV .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upTJa4xckV .container {
    padding: 0 26px;
  }
}
.cid-upTJa4xckV .row {
  justify-content: center;
}
.cid-upTJa4xckV .item {
  margin-bottom: 32px;
}
.cid-upTJa4xckV .item a {
  display: block;
}
.cid-upTJa4xckV .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upTJa4xckV .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upTJa4xckV .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upTJa4xckV .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-upTJa4xckV .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upTJa4xckV .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upTJa4xckV .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-upTJa4xckV .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upTJa4xckV .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upTJa4xckV .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upTJa4xckV .item-title {
  color: #ffffff;
}
.cid-upTJa4xckV .mbr-date {
  color: #cacaca;
}
.cid-upTJa4xckV .mbr-desc {
  color: #cacaca;
}
.cid-upTJa4QvyE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upTJa4QvyE .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTJa4QvyE .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-upTJa4QvyE .container {
    padding: 0 16px;
  }
}
.cid-upTJa4QvyE .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upTJa4QvyE .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTJa4QvyE .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upTJa4QvyE .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTJa4QvyE .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upTJa4QvyE .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upTJa4QvyE .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upTJa4QvyE .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upTJa4QvyE .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upTJa4QvyE .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-upTJa4QvyE .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upTJa4QvyE .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upTJa4QvyE .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upTJa4QvyE .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upTJa4QvyE .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upTJa4QvyE .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upTJa4QvyE .dragArea.row .form-group .form-control:hover,
.cid-upTJa4QvyE .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upTJa4QvyE .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upTJa4QvyE .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upTJa4QvyE .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upTJa4QvyE .mbr-title {
  color: #ffffff;
}
.cid-upTJa4QvyE .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upTJa4QvyE .mbr-section-subtitle {
  color: #08323C;
}
.cid-upTJa4QvyE .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upTJa4QvyE .list {
  color: #08323C;
}
.cid-upTJa4QvyE label {
  color: #08323C;
}
.cid-upTJa4QvyE H3 {
  color: #000000;
}
.cid-upTJa4QvyE P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upTPsGYfJz {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTPsGYfJz H1 {
  text-align: center;
}
.cid-uDmBfLRoEn {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmBfLRoEn .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmBfLRoEn .video-block {
    width: 100% !important;
  }
}
.cid-upTPsHiXsV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTPsHBH36 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upTPsHBH36 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTPsHBH36 .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTPsHBH36 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTPsHBH36 .box {
  left: 20%;
}
.cid-upTPsHBH36 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upTPsHBH36 .mbr-section-text,
.cid-upTPsHBH36 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upTPsHBH36 .text-box {
    display: none;
  }
  .cid-upTPsHBH36 .mbr-section-title,
  .cid-upTPsHBH36 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTPsHBH36 .box {
    display: none;
  }
  .cid-upTPsHBH36 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTPsHBH36 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTPsHBH36 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTPsHBH36 .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTPsHBH36 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTPsHBH36 .mbr-section-text DIV {
  text-align: center;
}
.cid-upTPsHPhK6 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTPsHPhK6 H1 {
  text-align: center;
}
.cid-upTPsI2FTh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTPsIfU5q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTPsIfU5q h2 {
  text-align: left;
}
.cid-upTPsIfU5q h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTPsIfU5q p {
  color: #767676;
  text-align: left;
}
.cid-upTPsIfU5q .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTPsIfU5q .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTPsIfU5q .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTPsIfU5q .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTPsIfU5q .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTPsIfU5q .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTPsIfU5q .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTPsIfU5q .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTPsIfU5q .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTPsIfU5q H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upTPsIfU5q P {
  color: #ffffff;
  text-align: left;
}
.cid-upTPsIfU5q H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upTPsIEHfU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTPsIEHfU H1 {
  color: #000000;
}
.cid-uy72Y81lIE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uy72Y81lIE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy72Y81lIE .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uy72Y81lIE .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uy72Y81lIE .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uy72Y81lIE .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uy72Y81lIE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy72Y81lIE .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uy72Y81lIE .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uy72Y81lIE .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uy72Y81lIE .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uy72Y81lIE .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-uy72Y81lIE .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uy72Y81lIE .image-wrapper {
    padding: 1rem;
  }
}
.cid-uy72Y81lIE .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uy72Y81lIE .mbr-text,
.cid-uy72Y81lIE .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upTPsJiA2J {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTPsJiA2J H1 {
  color: #000000;
}
.cid-uxgrRsiAYU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgrRsiAYU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgrRsiAYU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgrRsiAYU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgrRsiAYU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgrRsiAYU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgrRsiAYU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgrRsiAYU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgrRsiAYU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgrRsiAYU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgrRsiAYU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgrRsiAYU .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-uxgrRsiAYU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgrRsiAYU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgrRsiAYU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgrRsiAYU .mbr-text,
.cid-uxgrRsiAYU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTPsK1V9v {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTPsK1V9v H1 {
  color: #000000;
}
.cid-uxgrPT86y1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgrPT86y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgrPT86y1 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgrPT86y1 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgrPT86y1 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgrPT86y1 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgrPT86y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgrPT86y1 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgrPT86y1 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgrPT86y1 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgrPT86y1 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgrPT86y1 .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-uxgrPT86y1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgrPT86y1 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgrPT86y1 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgrPT86y1 .mbr-text,
.cid-uxgrPT86y1 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgrQrYR6r {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgrQrYR6r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgrQrYR6r .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgrQrYR6r .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgrQrYR6r .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgrQrYR6r .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgrQrYR6r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgrQrYR6r .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgrQrYR6r .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgrQrYR6r .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgrQrYR6r .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgrQrYR6r .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-uxgrQrYR6r .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgrQrYR6r .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgrQrYR6r .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgrQrYR6r .mbr-text,
.cid-uxgrQrYR6r .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTPsLgGfZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upTPsLgGfZ H1 {
  color: #000000;
}
.cid-uxgrTVwCld {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxgrTVwCld h2 {
  text-align: left;
}
.cid-uxgrTVwCld h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxgrTVwCld p {
  color: #767676;
  text-align: left;
}
.cid-uxgrTVwCld .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxgrTVwCld .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxgrTVwCld .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxgrTVwCld .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxgrTVwCld .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxgrTVwCld .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxgrTVwCld .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxgrTVwCld .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxgrTVwCld .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxgrTVwCld .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxgrTVwCld .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTPsLOF32 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upTPsLOF32 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTPsLOF32 .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTPsLOF32 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTPsLOF32 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upTPsLOF32 .box {
  right: 20%;
}
.cid-upTPsLOF32 .text-box {
  right: 0;
}
.cid-upTPsLOF32 .mbr-section-title,
.cid-upTPsLOF32 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upTPsLOF32 .text-box {
    display: none;
  }
  .cid-upTPsLOF32 .mbr-section-title,
  .cid-upTPsLOF32 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTPsLOF32 .box {
    display: none;
  }
  .cid-upTPsLOF32 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTPsLOF32 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTPsLOF32 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTPsLOF32 .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTPsLOF32 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTPsLOF32 .mbr-section-text DIV {
  text-align: center;
}
.cid-upTPsM9lIv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTPsMsHaV {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upTPsMsHaV h2 {
  text-align: left;
}
.cid-upTPsMsHaV h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTPsMsHaV p {
  color: #767676;
  text-align: left;
}
.cid-upTPsMsHaV .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTPsMsHaV .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTPsMsHaV .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTPsMsHaV .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTPsMsHaV .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTPsMsHaV .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTPsMsHaV .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTPsMsHaV .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTPsMsHaV .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTPsMsHaV .mbr-text {
  color: #232323;
}
.cid-upTPsMKT7f {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upTPsMKT7f .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTPsMKT7f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upTPsMKT7f .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upTPsMKT7f .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upTPsMKT7f .container {
    padding: 0 26px;
  }
}
.cid-upTPsMKT7f .row {
  justify-content: center;
}
.cid-upTPsMKT7f .item {
  margin-bottom: 32px;
}
.cid-upTPsMKT7f .item a {
  display: block;
}
.cid-upTPsMKT7f .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upTPsMKT7f .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upTPsMKT7f .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upTPsMKT7f .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-upTPsMKT7f .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upTPsMKT7f .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upTPsMKT7f .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-upTPsMKT7f .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upTPsMKT7f .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upTPsMKT7f .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upTPsMKT7f .item-title {
  color: #ffffff;
}
.cid-upTPsMKT7f .mbr-date {
  color: #cacaca;
}
.cid-upTPsMKT7f .mbr-desc {
  color: #cacaca;
}
.cid-upTPsN8FO6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upTPsN8FO6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTPsN8FO6 .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-upTPsN8FO6 .container {
    padding: 0 16px;
  }
}
.cid-upTPsN8FO6 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upTPsN8FO6 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTPsN8FO6 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upTPsN8FO6 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTPsN8FO6 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upTPsN8FO6 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upTPsN8FO6 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upTPsN8FO6 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upTPsN8FO6 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upTPsN8FO6 .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-upTPsN8FO6 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upTPsN8FO6 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upTPsN8FO6 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upTPsN8FO6 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upTPsN8FO6 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upTPsN8FO6 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upTPsN8FO6 .dragArea.row .form-group .form-control:hover,
.cid-upTPsN8FO6 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upTPsN8FO6 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upTPsN8FO6 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upTPsN8FO6 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upTPsN8FO6 .mbr-title {
  color: #ffffff;
}
.cid-upTPsN8FO6 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upTPsN8FO6 .mbr-section-subtitle {
  color: #08323C;
}
.cid-upTPsN8FO6 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upTPsN8FO6 .list {
  color: #08323C;
}
.cid-upTPsN8FO6 label {
  color: #08323C;
}
.cid-upTPsN8FO6 H3 {
  color: #000000;
}
.cid-upTPsN8FO6 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upTQDB08Qo {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTQDB08Qo H1 {
  text-align: center;
}
.cid-uDmCo5EMp1 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmCo5EMp1 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmCo5EMp1 .video-block {
    width: 100% !important;
  }
}
.cid-upTQDBlqNF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTQDBzcJz {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upTQDBzcJz .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTQDBzcJz .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTQDBzcJz .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTQDBzcJz .box {
  left: 20%;
}
.cid-upTQDBzcJz .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upTQDBzcJz .mbr-section-text,
.cid-upTQDBzcJz .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upTQDBzcJz .text-box {
    display: none;
  }
  .cid-upTQDBzcJz .mbr-section-title,
  .cid-upTQDBzcJz .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTQDBzcJz .box {
    display: none;
  }
  .cid-upTQDBzcJz .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTQDBzcJz .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTQDBzcJz .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTQDBzcJz .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTQDBzcJz .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTQDBzcJz .mbr-section-text DIV {
  text-align: center;
}
.cid-upTQDBRhwS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTQDBRhwS H1 {
  text-align: center;
}
.cid-upTQDC7KZO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTQDClBK3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTQDClBK3 h2 {
  text-align: left;
}
.cid-upTQDClBK3 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTQDClBK3 p {
  color: #767676;
  text-align: left;
}
.cid-upTQDClBK3 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTQDClBK3 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTQDClBK3 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTQDClBK3 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTQDClBK3 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTQDClBK3 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTQDClBK3 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTQDClBK3 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTQDClBK3 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTQDClBK3 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upTQDClBK3 P {
  color: #ffffff;
  text-align: left;
}
.cid-upTQDClBK3 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upTQDCLcDG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTQDCLcDG H1 {
  color: #000000;
}
.cid-uy731AYp2r {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uy731AYp2r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy731AYp2r .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uy731AYp2r .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uy731AYp2r .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uy731AYp2r .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uy731AYp2r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy731AYp2r .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uy731AYp2r .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uy731AYp2r .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uy731AYp2r .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uy731AYp2r .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-uy731AYp2r .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uy731AYp2r .image-wrapper {
    padding: 1rem;
  }
}
.cid-uy731AYp2r .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uy731AYp2r .mbr-text,
.cid-uy731AYp2r .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upTQDDtC61 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTQDDtC61 H1 {
  color: #000000;
}
.cid-uxjvNJBfYW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjvNJBfYW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjvNJBfYW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjvNJBfYW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjvNJBfYW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjvNJBfYW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjvNJBfYW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjvNJBfYW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjvNJBfYW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjvNJBfYW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjvNJBfYW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjvNJBfYW .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-uxjvNJBfYW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjvNJBfYW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjvNJBfYW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjvNJBfYW .mbr-text,
.cid-uxjvNJBfYW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTQDEaz7u {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTQDEaz7u H1 {
  color: #000000;
}
.cid-uxjvOn5Zok {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjvOn5Zok .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjvOn5Zok .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjvOn5Zok .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjvOn5Zok .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjvOn5Zok .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjvOn5Zok .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjvOn5Zok .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjvOn5Zok .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjvOn5Zok .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjvOn5Zok .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjvOn5Zok .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-uxjvOn5Zok .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjvOn5Zok .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjvOn5Zok .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjvOn5Zok .mbr-text,
.cid-uxjvOn5Zok .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjvOY3hiW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjvOY3hiW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjvOY3hiW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjvOY3hiW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjvOY3hiW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjvOY3hiW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjvOY3hiW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjvOY3hiW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjvOY3hiW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjvOY3hiW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjvOY3hiW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjvOY3hiW .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-uxjvOY3hiW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjvOY3hiW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjvOY3hiW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjvOY3hiW .mbr-text,
.cid-uxjvOY3hiW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTQDFnpLV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upTQDFnpLV H1 {
  color: #000000;
}
.cid-uxjvQtvMds {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjvQtvMds h2 {
  text-align: left;
}
.cid-uxjvQtvMds h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjvQtvMds p {
  color: #767676;
  text-align: left;
}
.cid-uxjvQtvMds .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjvQtvMds .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjvQtvMds .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjvQtvMds .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjvQtvMds .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjvQtvMds .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjvQtvMds .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjvQtvMds .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjvQtvMds .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjvQtvMds .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjvQtvMds .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxjvQYo8Cp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjvQYo8Cp H1 {
  color: #000000;
}
.cid-upTQDFZ0QF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upTQDFZ0QF .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTQDFZ0QF .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTQDFZ0QF .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTQDFZ0QF .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upTQDFZ0QF .box {
  right: 20%;
}
.cid-upTQDFZ0QF .text-box {
  right: 0;
}
.cid-upTQDFZ0QF .mbr-section-title,
.cid-upTQDFZ0QF .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upTQDFZ0QF .text-box {
    display: none;
  }
  .cid-upTQDFZ0QF .mbr-section-title,
  .cid-upTQDFZ0QF .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTQDFZ0QF .box {
    display: none;
  }
  .cid-upTQDFZ0QF .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTQDFZ0QF .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTQDFZ0QF .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTQDFZ0QF .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTQDFZ0QF .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTQDFZ0QF .mbr-section-text DIV {
  text-align: center;
}
.cid-upTQDGhhix {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTQDGAt9u {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upTQDGAt9u h2 {
  text-align: left;
}
.cid-upTQDGAt9u h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTQDGAt9u p {
  color: #767676;
  text-align: left;
}
.cid-upTQDGAt9u .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTQDGAt9u .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTQDGAt9u .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTQDGAt9u .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTQDGAt9u .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTQDGAt9u .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTQDGAt9u .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTQDGAt9u .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTQDGAt9u .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTQDGAt9u .mbr-text {
  color: #232323;
}
.cid-upTQDGTnS9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upTQDGTnS9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTQDGTnS9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upTQDGTnS9 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upTQDGTnS9 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upTQDGTnS9 .container {
    padding: 0 26px;
  }
}
.cid-upTQDGTnS9 .row {
  justify-content: center;
}
.cid-upTQDGTnS9 .item {
  margin-bottom: 32px;
}
.cid-upTQDGTnS9 .item a {
  display: block;
}
.cid-upTQDGTnS9 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upTQDGTnS9 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upTQDGTnS9 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upTQDGTnS9 .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-upTQDGTnS9 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upTQDGTnS9 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upTQDGTnS9 .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-upTQDGTnS9 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upTQDGTnS9 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upTQDGTnS9 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upTQDGTnS9 .item-title {
  color: #ffffff;
}
.cid-upTQDGTnS9 .mbr-date {
  color: #cacaca;
}
.cid-upTQDGTnS9 .mbr-desc {
  color: #cacaca;
}
.cid-upTQDHcBXx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upTQDHcBXx .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTQDHcBXx .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-upTQDHcBXx .container {
    padding: 0 16px;
  }
}
.cid-upTQDHcBXx .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upTQDHcBXx .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTQDHcBXx .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upTQDHcBXx .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTQDHcBXx .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upTQDHcBXx .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upTQDHcBXx .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upTQDHcBXx .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upTQDHcBXx .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upTQDHcBXx .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-upTQDHcBXx .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upTQDHcBXx .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upTQDHcBXx .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upTQDHcBXx .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upTQDHcBXx .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upTQDHcBXx .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upTQDHcBXx .dragArea.row .form-group .form-control:hover,
.cid-upTQDHcBXx .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upTQDHcBXx .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upTQDHcBXx .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upTQDHcBXx .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upTQDHcBXx .mbr-title {
  color: #ffffff;
}
.cid-upTQDHcBXx .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upTQDHcBXx .mbr-section-subtitle {
  color: #08323C;
}
.cid-upTQDHcBXx .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upTQDHcBXx .list {
  color: #08323C;
}
.cid-upTQDHcBXx label {
  color: #08323C;
}
.cid-upTQDHcBXx H3 {
  color: #000000;
}
.cid-upTQDHcBXx P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upTRuH1Dq0 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTRuH1Dq0 H1 {
  text-align: center;
}
.cid-uDmCqINkCU {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmCqINkCU .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmCqINkCU .video-block {
    width: 100% !important;
  }
}
.cid-upTRuHH56d {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTRuHXqij {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upTRuHXqij .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTRuHXqij .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTRuHXqij .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTRuHXqij .box {
  left: 20%;
}
.cid-upTRuHXqij .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upTRuHXqij .mbr-section-text,
.cid-upTRuHXqij .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upTRuHXqij .text-box {
    display: none;
  }
  .cid-upTRuHXqij .mbr-section-title,
  .cid-upTRuHXqij .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTRuHXqij .box {
    display: none;
  }
  .cid-upTRuHXqij .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTRuHXqij .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTRuHXqij .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTRuHXqij .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTRuHXqij .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTRuHXqij .mbr-section-text DIV {
  text-align: center;
}
.cid-upTRuIfvqv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTRuIfvqv H1 {
  text-align: center;
}
.cid-upTRuIyW7Q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTRuIQr7C {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTRuIQr7C h2 {
  text-align: left;
}
.cid-upTRuIQr7C h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTRuIQr7C p {
  color: #767676;
  text-align: left;
}
.cid-upTRuIQr7C .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTRuIQr7C .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTRuIQr7C .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTRuIQr7C .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTRuIQr7C .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTRuIQr7C .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTRuIQr7C .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTRuIQr7C .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTRuIQr7C .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTRuIQr7C H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upTRuIQr7C P {
  color: #ffffff;
  text-align: left;
}
.cid-upTRuIQr7C H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upTRuJbDHA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTRuJbDHA H1 {
  color: #000000;
}
.cid-uy734QRur9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uy734QRur9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy734QRur9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uy734QRur9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uy734QRur9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uy734QRur9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uy734QRur9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy734QRur9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uy734QRur9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uy734QRur9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uy734QRur9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uy734QRur9 .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-uy734QRur9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uy734QRur9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uy734QRur9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uy734QRur9 .mbr-text,
.cid-uy734QRur9 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upTRuK1lxq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTRuK1lxq H1 {
  color: #000000;
}
.cid-uxjw2zVCGy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjw2zVCGy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjw2zVCGy .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjw2zVCGy .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjw2zVCGy .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjw2zVCGy .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjw2zVCGy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjw2zVCGy .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjw2zVCGy .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjw2zVCGy .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjw2zVCGy .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjw2zVCGy .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-uxjw2zVCGy .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjw2zVCGy .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjw2zVCGy .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjw2zVCGy .mbr-text,
.cid-uxjw2zVCGy .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTRuKJDfJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTRuKJDfJ H1 {
  color: #000000;
}
.cid-uxjw7lCTcY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjw7lCTcY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjw7lCTcY .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjw7lCTcY .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjw7lCTcY .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjw7lCTcY .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjw7lCTcY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjw7lCTcY .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjw7lCTcY .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjw7lCTcY .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjw7lCTcY .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjw7lCTcY .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-uxjw7lCTcY .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjw7lCTcY .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjw7lCTcY .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjw7lCTcY .mbr-text,
.cid-uxjw7lCTcY .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjw8knNur {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjw8knNur .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjw8knNur .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjw8knNur .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjw8knNur .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjw8knNur .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjw8knNur .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjw8knNur .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjw8knNur .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjw8knNur .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjw8knNur .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjw8knNur .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-uxjw8knNur .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjw8knNur .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjw8knNur .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjw8knNur .mbr-text,
.cid-uxjw8knNur .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTRuM1jmD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upTRuM1jmD H1 {
  color: #000000;
}
.cid-uxjw9UUZwK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjw9UUZwK h2 {
  text-align: left;
}
.cid-uxjw9UUZwK h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjw9UUZwK p {
  color: #767676;
  text-align: left;
}
.cid-uxjw9UUZwK .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjw9UUZwK .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjw9UUZwK .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjw9UUZwK .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjw9UUZwK .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjw9UUZwK .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjw9UUZwK .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjw9UUZwK .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjw9UUZwK .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjw9UUZwK .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjw9UUZwK .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTRuMDrSF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upTRuMDrSF .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTRuMDrSF .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTRuMDrSF .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTRuMDrSF .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upTRuMDrSF .box {
  right: 20%;
}
.cid-upTRuMDrSF .text-box {
  right: 0;
}
.cid-upTRuMDrSF .mbr-section-title,
.cid-upTRuMDrSF .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upTRuMDrSF .text-box {
    display: none;
  }
  .cid-upTRuMDrSF .mbr-section-title,
  .cid-upTRuMDrSF .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTRuMDrSF .box {
    display: none;
  }
  .cid-upTRuMDrSF .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTRuMDrSF .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTRuMDrSF .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTRuMDrSF .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTRuMDrSF .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTRuMDrSF .mbr-section-text DIV {
  text-align: center;
}
.cid-upTRuMWjPR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTRuNfrIs {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upTRuNfrIs h2 {
  text-align: left;
}
.cid-upTRuNfrIs h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTRuNfrIs p {
  color: #767676;
  text-align: left;
}
.cid-upTRuNfrIs .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTRuNfrIs .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTRuNfrIs .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTRuNfrIs .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTRuNfrIs .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTRuNfrIs .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTRuNfrIs .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTRuNfrIs .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTRuNfrIs .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTRuNfrIs .mbr-text {
  color: #232323;
}
.cid-upTRuNyUgk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upTRuNyUgk .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTRuNyUgk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upTRuNyUgk .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upTRuNyUgk .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upTRuNyUgk .container {
    padding: 0 26px;
  }
}
.cid-upTRuNyUgk .row {
  justify-content: center;
}
.cid-upTRuNyUgk .item {
  margin-bottom: 32px;
}
.cid-upTRuNyUgk .item a {
  display: block;
}
.cid-upTRuNyUgk .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upTRuNyUgk .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upTRuNyUgk .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upTRuNyUgk .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-upTRuNyUgk .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upTRuNyUgk .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upTRuNyUgk .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-upTRuNyUgk .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upTRuNyUgk .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upTRuNyUgk .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upTRuNyUgk .item-title {
  color: #ffffff;
}
.cid-upTRuNyUgk .mbr-date {
  color: #cacaca;
}
.cid-upTRuNyUgk .mbr-desc {
  color: #cacaca;
}
.cid-upTRuNTaZJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upTRuNTaZJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTRuNTaZJ .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-upTRuNTaZJ .container {
    padding: 0 16px;
  }
}
.cid-upTRuNTaZJ .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upTRuNTaZJ .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTRuNTaZJ .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upTRuNTaZJ .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTRuNTaZJ .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upTRuNTaZJ .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upTRuNTaZJ .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upTRuNTaZJ .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upTRuNTaZJ .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upTRuNTaZJ .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-upTRuNTaZJ .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upTRuNTaZJ .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upTRuNTaZJ .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upTRuNTaZJ .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upTRuNTaZJ .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upTRuNTaZJ .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upTRuNTaZJ .dragArea.row .form-group .form-control:hover,
.cid-upTRuNTaZJ .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upTRuNTaZJ .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upTRuNTaZJ .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upTRuNTaZJ .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upTRuNTaZJ .mbr-title {
  color: #ffffff;
}
.cid-upTRuNTaZJ .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upTRuNTaZJ .mbr-section-subtitle {
  color: #08323C;
}
.cid-upTRuNTaZJ .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upTRuNTaZJ .list {
  color: #08323C;
}
.cid-upTRuNTaZJ label {
  color: #08323C;
}
.cid-upTRuNTaZJ H3 {
  color: #000000;
}
.cid-upTRuNTaZJ P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upTSRqHnl9 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTSRqHnl9 H1 {
  text-align: center;
}
.cid-uDmCu7ABzj {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmCu7ABzj .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmCu7ABzj .video-block {
    width: 100% !important;
  }
}
.cid-upTSRr2RKK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTSRrj9av {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upTSRrj9av .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTSRrj9av .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTSRrj9av .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTSRrj9av .box {
  left: 20%;
}
.cid-upTSRrj9av .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upTSRrj9av .mbr-section-text,
.cid-upTSRrj9av .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upTSRrj9av .text-box {
    display: none;
  }
  .cid-upTSRrj9av .mbr-section-title,
  .cid-upTSRrj9av .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTSRrj9av .box {
    display: none;
  }
  .cid-upTSRrj9av .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTSRrj9av .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTSRrj9av .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTSRrj9av .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTSRrj9av .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTSRrj9av .mbr-section-text DIV {
  text-align: center;
}
.cid-upTSRrzjFF {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTSRrzjFF H1 {
  text-align: center;
}
.cid-upTSRrPT3F {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTSRs3EwY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTSRs3EwY h2 {
  text-align: left;
}
.cid-upTSRs3EwY h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTSRs3EwY p {
  color: #767676;
  text-align: left;
}
.cid-upTSRs3EwY .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTSRs3EwY .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTSRs3EwY .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTSRs3EwY .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTSRs3EwY .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTSRs3EwY .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTSRs3EwY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTSRs3EwY .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTSRs3EwY .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTSRs3EwY H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upTSRs3EwY P {
  color: #ffffff;
  text-align: left;
}
.cid-upTSRs3EwY H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upTSRsqDLs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTSRsqDLs H1 {
  color: #000000;
}
.cid-uy738pss21 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uy738pss21 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy738pss21 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uy738pss21 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uy738pss21 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uy738pss21 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uy738pss21 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy738pss21 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uy738pss21 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uy738pss21 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uy738pss21 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uy738pss21 .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-uy738pss21 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uy738pss21 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uy738pss21 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uy738pss21 .mbr-text,
.cid-uy738pss21 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upTSRtetCN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTSRtetCN H1 {
  color: #000000;
}
.cid-uxjwmxHqsr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjwmxHqsr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjwmxHqsr .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjwmxHqsr .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjwmxHqsr .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjwmxHqsr .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjwmxHqsr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjwmxHqsr .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjwmxHqsr .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjwmxHqsr .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjwmxHqsr .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjwmxHqsr .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-uxjwmxHqsr .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjwmxHqsr .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjwmxHqsr .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjwmxHqsr .mbr-text,
.cid-uxjwmxHqsr .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTSRu4EeX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTSRu4EeX H1 {
  color: #000000;
}
.cid-uxjwncZtZJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjwncZtZJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjwncZtZJ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjwncZtZJ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjwncZtZJ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjwncZtZJ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjwncZtZJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjwncZtZJ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjwncZtZJ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjwncZtZJ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjwncZtZJ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjwncZtZJ .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-uxjwncZtZJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjwncZtZJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjwncZtZJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjwncZtZJ .mbr-text,
.cid-uxjwncZtZJ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjwocvRAj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjwocvRAj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjwocvRAj .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjwocvRAj .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjwocvRAj .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjwocvRAj .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjwocvRAj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjwocvRAj .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjwocvRAj .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjwocvRAj .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjwocvRAj .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjwocvRAj .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-uxjwocvRAj .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjwocvRAj .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjwocvRAj .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjwocvRAj .mbr-text,
.cid-uxjwocvRAj .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTSRvkF2p {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upTSRvkF2p H1 {
  color: #000000;
}
.cid-uxjwpLwXMZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjwpLwXMZ h2 {
  text-align: left;
}
.cid-uxjwpLwXMZ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjwpLwXMZ p {
  color: #767676;
  text-align: left;
}
.cid-uxjwpLwXMZ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjwpLwXMZ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjwpLwXMZ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjwpLwXMZ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjwpLwXMZ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjwpLwXMZ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjwpLwXMZ .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjwpLwXMZ .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjwpLwXMZ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjwpLwXMZ .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjwpLwXMZ .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTSRvXrgu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upTSRvXrgu .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTSRvXrgu .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTSRvXrgu .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTSRvXrgu .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upTSRvXrgu .box {
  right: 20%;
}
.cid-upTSRvXrgu .text-box {
  right: 0;
}
.cid-upTSRvXrgu .mbr-section-title,
.cid-upTSRvXrgu .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upTSRvXrgu .text-box {
    display: none;
  }
  .cid-upTSRvXrgu .mbr-section-title,
  .cid-upTSRvXrgu .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTSRvXrgu .box {
    display: none;
  }
  .cid-upTSRvXrgu .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTSRvXrgu .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTSRvXrgu .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTSRvXrgu .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTSRvXrgu .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTSRvXrgu .mbr-section-text DIV {
  text-align: center;
}
.cid-upTSRwnQIO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTSRwFb0q {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upTSRwFb0q h2 {
  text-align: left;
}
.cid-upTSRwFb0q h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTSRwFb0q p {
  color: #767676;
  text-align: left;
}
.cid-upTSRwFb0q .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTSRwFb0q .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTSRwFb0q .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTSRwFb0q .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTSRwFb0q .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTSRwFb0q .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTSRwFb0q .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTSRwFb0q .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTSRwFb0q .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTSRwFb0q .mbr-text {
  color: #232323;
}
.cid-upTSRwYZDa {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upTSRwYZDa .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTSRwYZDa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upTSRwYZDa .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upTSRwYZDa .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upTSRwYZDa .container {
    padding: 0 26px;
  }
}
.cid-upTSRwYZDa .row {
  justify-content: center;
}
.cid-upTSRwYZDa .item {
  margin-bottom: 32px;
}
.cid-upTSRwYZDa .item a {
  display: block;
}
.cid-upTSRwYZDa .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upTSRwYZDa .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upTSRwYZDa .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upTSRwYZDa .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-upTSRwYZDa .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upTSRwYZDa .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upTSRwYZDa .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-upTSRwYZDa .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upTSRwYZDa .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upTSRwYZDa .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upTSRwYZDa .item-title {
  color: #ffffff;
}
.cid-upTSRwYZDa .mbr-date {
  color: #cacaca;
}
.cid-upTSRwYZDa .mbr-desc {
  color: #cacaca;
}
.cid-upTSRxkL7L {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upTSRxkL7L .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTSRxkL7L .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-upTSRxkL7L .container {
    padding: 0 16px;
  }
}
.cid-upTSRxkL7L .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upTSRxkL7L .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTSRxkL7L .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upTSRxkL7L .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTSRxkL7L .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upTSRxkL7L .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upTSRxkL7L .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upTSRxkL7L .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upTSRxkL7L .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upTSRxkL7L .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-upTSRxkL7L .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upTSRxkL7L .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upTSRxkL7L .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upTSRxkL7L .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upTSRxkL7L .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upTSRxkL7L .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upTSRxkL7L .dragArea.row .form-group .form-control:hover,
.cid-upTSRxkL7L .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upTSRxkL7L .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upTSRxkL7L .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upTSRxkL7L .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upTSRxkL7L .mbr-title {
  color: #ffffff;
}
.cid-upTSRxkL7L .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upTSRxkL7L .mbr-section-subtitle {
  color: #08323C;
}
.cid-upTSRxkL7L .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upTSRxkL7L .list {
  color: #08323C;
}
.cid-upTSRxkL7L label {
  color: #08323C;
}
.cid-upTSRxkL7L H3 {
  color: #000000;
}
.cid-upTSRxkL7L P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upTU42Hd5t {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTU42Hd5t H1 {
  text-align: center;
}
.cid-uDmCLAYDew {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmCLAYDew .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmCLAYDew .video-block {
    width: 100% !important;
  }
}
.cid-upTU433SkY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTU43okTs {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upTU43okTs .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTU43okTs .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTU43okTs .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTU43okTs .box {
  left: 20%;
}
.cid-upTU43okTs .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upTU43okTs .mbr-section-text,
.cid-upTU43okTs .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upTU43okTs .text-box {
    display: none;
  }
  .cid-upTU43okTs .mbr-section-title,
  .cid-upTU43okTs .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTU43okTs .box {
    display: none;
  }
  .cid-upTU43okTs .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTU43okTs .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTU43okTs .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTU43okTs .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTU43okTs .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTU43okTs .mbr-section-text DIV {
  text-align: center;
}
.cid-upTU43JNuk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTU43JNuk H1 {
  text-align: center;
}
.cid-upTU43YvKv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTU44ftdl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTU44ftdl h2 {
  text-align: left;
}
.cid-upTU44ftdl h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTU44ftdl p {
  color: #767676;
  text-align: left;
}
.cid-upTU44ftdl .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTU44ftdl .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTU44ftdl .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTU44ftdl .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTU44ftdl .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTU44ftdl .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTU44ftdl .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTU44ftdl .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTU44ftdl .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTU44ftdl H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upTU44ftdl P {
  color: #ffffff;
  text-align: left;
}
.cid-upTU44ftdl H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upTU44AooU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTU44AooU H1 {
  color: #000000;
}
.cid-uy73gYiVJ0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uy73gYiVJ0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy73gYiVJ0 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uy73gYiVJ0 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uy73gYiVJ0 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uy73gYiVJ0 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uy73gYiVJ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy73gYiVJ0 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uy73gYiVJ0 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uy73gYiVJ0 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uy73gYiVJ0 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uy73gYiVJ0 .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-uy73gYiVJ0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uy73gYiVJ0 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uy73gYiVJ0 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uy73gYiVJ0 .mbr-text,
.cid-uy73gYiVJ0 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upTU45qXXu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTU45qXXu H1 {
  color: #000000;
}
.cid-uxjwyJCjVu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjwyJCjVu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjwyJCjVu .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjwyJCjVu .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjwyJCjVu .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjwyJCjVu .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjwyJCjVu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjwyJCjVu .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjwyJCjVu .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjwyJCjVu .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjwyJCjVu .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjwyJCjVu .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-uxjwyJCjVu .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjwyJCjVu .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjwyJCjVu .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjwyJCjVu .mbr-text,
.cid-uxjwyJCjVu .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTU46i3rk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTU46i3rk H1 {
  color: #000000;
}
.cid-uxjwAu0EEX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjwAu0EEX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjwAu0EEX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjwAu0EEX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjwAu0EEX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjwAu0EEX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjwAu0EEX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjwAu0EEX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjwAu0EEX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjwAu0EEX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjwAu0EEX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjwAu0EEX .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-uxjwAu0EEX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjwAu0EEX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjwAu0EEX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjwAu0EEX .mbr-text,
.cid-uxjwAu0EEX .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjwB6PggD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjwB6PggD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjwB6PggD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjwB6PggD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjwB6PggD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjwB6PggD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjwB6PggD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjwB6PggD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjwB6PggD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjwB6PggD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjwB6PggD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjwB6PggD .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-uxjwB6PggD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjwB6PggD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjwB6PggD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjwB6PggD .mbr-text,
.cid-uxjwB6PggD .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTU47IyxQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upTU47IyxQ H1 {
  color: #000000;
}
.cid-uxjwFBJTw2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjwFBJTw2 h2 {
  text-align: left;
}
.cid-uxjwFBJTw2 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjwFBJTw2 p {
  color: #767676;
  text-align: left;
}
.cid-uxjwFBJTw2 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjwFBJTw2 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjwFBJTw2 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjwFBJTw2 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjwFBJTw2 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjwFBJTw2 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjwFBJTw2 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjwFBJTw2 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjwFBJTw2 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjwFBJTw2 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjwFBJTw2 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTU48pky2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upTU48pky2 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTU48pky2 .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTU48pky2 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTU48pky2 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upTU48pky2 .box {
  right: 20%;
}
.cid-upTU48pky2 .text-box {
  right: 0;
}
.cid-upTU48pky2 .mbr-section-title,
.cid-upTU48pky2 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upTU48pky2 .text-box {
    display: none;
  }
  .cid-upTU48pky2 .mbr-section-title,
  .cid-upTU48pky2 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTU48pky2 .box {
    display: none;
  }
  .cid-upTU48pky2 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTU48pky2 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTU48pky2 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTU48pky2 .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTU48pky2 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTU48pky2 .mbr-section-text DIV {
  text-align: center;
}
.cid-upTU48MoSl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTU493pfl {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upTU493pfl h2 {
  text-align: left;
}
.cid-upTU493pfl h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTU493pfl p {
  color: #767676;
  text-align: left;
}
.cid-upTU493pfl .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTU493pfl .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTU493pfl .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTU493pfl .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTU493pfl .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTU493pfl .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTU493pfl .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTU493pfl .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTU493pfl .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTU493pfl .mbr-text {
  color: #232323;
}
.cid-uxjwLlNIca {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjwLlNIca H1 {
  color: #000000;
}
.cid-upTU49ozVf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upTU49ozVf .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTU49ozVf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upTU49ozVf .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upTU49ozVf .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upTU49ozVf .container {
    padding: 0 26px;
  }
}
.cid-upTU49ozVf .row {
  justify-content: center;
}
.cid-upTU49ozVf .item {
  margin-bottom: 32px;
}
.cid-upTU49ozVf .item a {
  display: block;
}
.cid-upTU49ozVf .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upTU49ozVf .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upTU49ozVf .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upTU49ozVf .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-upTU49ozVf .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upTU49ozVf .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upTU49ozVf .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-upTU49ozVf .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upTU49ozVf .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upTU49ozVf .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upTU49ozVf .item-title {
  color: #ffffff;
}
.cid-upTU49ozVf .mbr-date {
  color: #cacaca;
}
.cid-upTU49ozVf .mbr-desc {
  color: #cacaca;
}
.cid-upTU49MRfc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upTU49MRfc .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTU49MRfc .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-upTU49MRfc .container {
    padding: 0 16px;
  }
}
.cid-upTU49MRfc .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upTU49MRfc .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTU49MRfc .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upTU49MRfc .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTU49MRfc .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upTU49MRfc .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upTU49MRfc .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upTU49MRfc .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upTU49MRfc .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upTU49MRfc .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-upTU49MRfc .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upTU49MRfc .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upTU49MRfc .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upTU49MRfc .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upTU49MRfc .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upTU49MRfc .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upTU49MRfc .dragArea.row .form-group .form-control:hover,
.cid-upTU49MRfc .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upTU49MRfc .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upTU49MRfc .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upTU49MRfc .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upTU49MRfc .mbr-title {
  color: #ffffff;
}
.cid-upTU49MRfc .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upTU49MRfc .mbr-section-subtitle {
  color: #08323C;
}
.cid-upTU49MRfc .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upTU49MRfc .list {
  color: #08323C;
}
.cid-upTU49MRfc label {
  color: #08323C;
}
.cid-upTU49MRfc H3 {
  color: #000000;
}
.cid-upTU49MRfc P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upTVIJsdsO {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTVIJsdsO H1 {
  text-align: center;
}
.cid-uDmD1cCqvI {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmD1cCqvI .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmD1cCqvI .video-block {
    width: 100% !important;
  }
}
.cid-upTVIJNnGT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTVIK3d9w {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upTVIK3d9w .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTVIK3d9w .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTVIK3d9w .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTVIK3d9w .box {
  left: 20%;
}
.cid-upTVIK3d9w .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upTVIK3d9w .mbr-section-text,
.cid-upTVIK3d9w .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upTVIK3d9w .text-box {
    display: none;
  }
  .cid-upTVIK3d9w .mbr-section-title,
  .cid-upTVIK3d9w .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTVIK3d9w .box {
    display: none;
  }
  .cid-upTVIK3d9w .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTVIK3d9w .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTVIK3d9w .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTVIK3d9w .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTVIK3d9w .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTVIK3d9w .mbr-section-text DIV {
  text-align: center;
}
.cid-upTVIKmyXu {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTVIKmyXu H1 {
  text-align: center;
}
.cid-upTVIKDGt1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTVIKRjbt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTVIKRjbt h2 {
  text-align: left;
}
.cid-upTVIKRjbt h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTVIKRjbt p {
  color: #767676;
  text-align: left;
}
.cid-upTVIKRjbt .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTVIKRjbt .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTVIKRjbt .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTVIKRjbt .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTVIKRjbt .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTVIKRjbt .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTVIKRjbt .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTVIKRjbt .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTVIKRjbt .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTVIKRjbt H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upTVIKRjbt P {
  color: #ffffff;
  text-align: left;
}
.cid-upTVIKRjbt H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upTVILcdI7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTVILcdI7 H1 {
  color: #000000;
}
.cid-uy73mvSP4D {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uy73mvSP4D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy73mvSP4D .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uy73mvSP4D .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uy73mvSP4D .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uy73mvSP4D .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uy73mvSP4D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy73mvSP4D .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uy73mvSP4D .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uy73mvSP4D .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uy73mvSP4D .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uy73mvSP4D .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-uy73mvSP4D .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uy73mvSP4D .image-wrapper {
    padding: 1rem;
  }
}
.cid-uy73mvSP4D .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uy73mvSP4D .mbr-text,
.cid-uy73mvSP4D .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upTVIM0xEQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTVIM0xEQ H1 {
  color: #000000;
}
.cid-uxjwT6YCxn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjwT6YCxn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjwT6YCxn .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjwT6YCxn .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjwT6YCxn .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjwT6YCxn .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjwT6YCxn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjwT6YCxn .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjwT6YCxn .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjwT6YCxn .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjwT6YCxn .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjwT6YCxn .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-uxjwT6YCxn .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjwT6YCxn .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjwT6YCxn .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjwT6YCxn .mbr-text,
.cid-uxjwT6YCxn .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTVIMQGIp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTVIMQGIp H1 {
  color: #000000;
}
.cid-uxjwVBX9Sl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjwVBX9Sl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjwVBX9Sl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjwVBX9Sl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjwVBX9Sl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjwVBX9Sl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjwVBX9Sl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjwVBX9Sl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjwVBX9Sl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjwVBX9Sl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjwVBX9Sl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjwVBX9Sl .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-uxjwVBX9Sl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjwVBX9Sl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjwVBX9Sl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjwVBX9Sl .mbr-text,
.cid-uxjwVBX9Sl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjwWfYynz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjwWfYynz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjwWfYynz .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjwWfYynz .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjwWfYynz .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjwWfYynz .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjwWfYynz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjwWfYynz .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjwWfYynz .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjwWfYynz .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjwWfYynz .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjwWfYynz .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-uxjwWfYynz .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjwWfYynz .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjwWfYynz .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjwWfYynz .mbr-text,
.cid-uxjwWfYynz .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTVIOcTvE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upTVIOcTvE H1 {
  color: #000000;
}
.cid-uxjwXNagvT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjwXNagvT h2 {
  text-align: left;
}
.cid-uxjwXNagvT h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjwXNagvT p {
  color: #767676;
  text-align: left;
}
.cid-uxjwXNagvT .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjwXNagvT .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjwXNagvT .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjwXNagvT .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjwXNagvT .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjwXNagvT .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjwXNagvT .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjwXNagvT .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjwXNagvT .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjwXNagvT .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjwXNagvT .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTVIOUyGb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upTVIOUyGb .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTVIOUyGb .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTVIOUyGb .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTVIOUyGb .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upTVIOUyGb .box {
  right: 20%;
}
.cid-upTVIOUyGb .text-box {
  right: 0;
}
.cid-upTVIOUyGb .mbr-section-title,
.cid-upTVIOUyGb .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upTVIOUyGb .text-box {
    display: none;
  }
  .cid-upTVIOUyGb .mbr-section-title,
  .cid-upTVIOUyGb .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTVIOUyGb .box {
    display: none;
  }
  .cid-upTVIOUyGb .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTVIOUyGb .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTVIOUyGb .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTVIOUyGb .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTVIOUyGb .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTVIOUyGb .mbr-section-text DIV {
  text-align: center;
}
.cid-upTVIPhnoJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTVIPCEBF {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upTVIPCEBF h2 {
  text-align: left;
}
.cid-upTVIPCEBF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTVIPCEBF p {
  color: #767676;
  text-align: left;
}
.cid-upTVIPCEBF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTVIPCEBF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTVIPCEBF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTVIPCEBF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTVIPCEBF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTVIPCEBF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTVIPCEBF .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTVIPCEBF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTVIPCEBF .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTVIPCEBF .mbr-text {
  color: #232323;
}
.cid-upTVIPWeyb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upTVIPWeyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTVIPWeyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upTVIPWeyb .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upTVIPWeyb .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upTVIPWeyb .container {
    padding: 0 26px;
  }
}
.cid-upTVIPWeyb .row {
  justify-content: center;
}
.cid-upTVIPWeyb .item {
  margin-bottom: 32px;
}
.cid-upTVIPWeyb .item a {
  display: block;
}
.cid-upTVIPWeyb .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upTVIPWeyb .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upTVIPWeyb .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upTVIPWeyb .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-upTVIPWeyb .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upTVIPWeyb .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upTVIPWeyb .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-upTVIPWeyb .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upTVIPWeyb .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upTVIPWeyb .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upTVIPWeyb .item-title {
  color: #ffffff;
}
.cid-upTVIPWeyb .mbr-date {
  color: #cacaca;
}
.cid-upTVIPWeyb .mbr-desc {
  color: #cacaca;
}
.cid-upTVIQmPVW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upTVIQmPVW .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTVIQmPVW .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-upTVIQmPVW .container {
    padding: 0 16px;
  }
}
.cid-upTVIQmPVW .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upTVIQmPVW .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTVIQmPVW .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upTVIQmPVW .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTVIQmPVW .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upTVIQmPVW .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upTVIQmPVW .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upTVIQmPVW .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upTVIQmPVW .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upTVIQmPVW .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-upTVIQmPVW .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upTVIQmPVW .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upTVIQmPVW .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upTVIQmPVW .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upTVIQmPVW .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upTVIQmPVW .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upTVIQmPVW .dragArea.row .form-group .form-control:hover,
.cid-upTVIQmPVW .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upTVIQmPVW .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upTVIQmPVW .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upTVIQmPVW .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upTVIQmPVW .mbr-title {
  color: #ffffff;
}
.cid-upTVIQmPVW .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upTVIQmPVW .mbr-section-subtitle {
  color: #08323C;
}
.cid-upTVIQmPVW .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upTVIQmPVW .list {
  color: #08323C;
}
.cid-upTVIQmPVW label {
  color: #08323C;
}
.cid-upTVIQmPVW H3 {
  color: #000000;
}
.cid-upTVIQmPVW P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upTWU46Pfm {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTWU46Pfm H1 {
  text-align: center;
}
.cid-uDmD3oBsYx {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmD3oBsYx .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmD3oBsYx .video-block {
    width: 100% !important;
  }
}
.cid-upTWU4vyEh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTWU4PuHe {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upTWU4PuHe .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTWU4PuHe .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTWU4PuHe .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTWU4PuHe .box {
  left: 20%;
}
.cid-upTWU4PuHe .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upTWU4PuHe .mbr-section-text,
.cid-upTWU4PuHe .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upTWU4PuHe .text-box {
    display: none;
  }
  .cid-upTWU4PuHe .mbr-section-title,
  .cid-upTWU4PuHe .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTWU4PuHe .box {
    display: none;
  }
  .cid-upTWU4PuHe .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTWU4PuHe .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTWU4PuHe .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTWU4PuHe .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTWU4PuHe .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTWU4PuHe .mbr-section-text DIV {
  text-align: center;
}
.cid-upTWU55abj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTWU55abj H1 {
  text-align: center;
}
.cid-upTWU5nNtP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTWU5I96g {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTWU5I96g h2 {
  text-align: left;
}
.cid-upTWU5I96g h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTWU5I96g p {
  color: #767676;
  text-align: left;
}
.cid-upTWU5I96g .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTWU5I96g .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTWU5I96g .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTWU5I96g .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTWU5I96g .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTWU5I96g .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTWU5I96g .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTWU5I96g .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTWU5I96g .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTWU5I96g H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upTWU5I96g P {
  color: #ffffff;
  text-align: left;
}
.cid-upTWU5I96g H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upTWU6Pnt9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTWU6Pnt9 H1 {
  color: #000000;
}
.cid-uxjx8TjizV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjx8TjizV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjx8TjizV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjx8TjizV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjx8TjizV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjx8TjizV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjx8TjizV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjx8TjizV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjx8TjizV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjx8TjizV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjx8TjizV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjx8TjizV .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-uxjx8TjizV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjx8TjizV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjx8TjizV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjx8TjizV .mbr-text,
.cid-uxjx8TjizV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTWU64aQn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTWU64aQn H1 {
  color: #000000;
}
.cid-uy73xgUraD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uy73xgUraD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy73xgUraD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uy73xgUraD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uy73xgUraD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uy73xgUraD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uy73xgUraD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy73xgUraD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uy73xgUraD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uy73xgUraD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uy73xgUraD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uy73xgUraD .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-uy73xgUraD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uy73xgUraD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uy73xgUraD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uy73xgUraD .mbr-text,
.cid-uy73xgUraD .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upTWU7ArMY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTWU7ArMY H1 {
  color: #000000;
}
.cid-uxjxblgonN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjxblgonN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjxblgonN .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjxblgonN .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjxblgonN .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjxblgonN .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjxblgonN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjxblgonN .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjxblgonN .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjxblgonN .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjxblgonN .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjxblgonN .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-uxjxblgonN .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjxblgonN .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjxblgonN .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjxblgonN .mbr-text,
.cid-uxjxblgonN .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjxc7tKOh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjxc7tKOh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjxc7tKOh .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjxc7tKOh .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjxc7tKOh .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjxc7tKOh .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjxc7tKOh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjxc7tKOh .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjxc7tKOh .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjxc7tKOh .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjxc7tKOh .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjxc7tKOh .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-uxjxc7tKOh .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjxc7tKOh .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjxc7tKOh .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjxc7tKOh .mbr-text,
.cid-uxjxc7tKOh .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTWU8PuyS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upTWU8PuyS H1 {
  color: #000000;
}
.cid-upTWU98TTb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-upTWU98TTb h2 {
  text-align: left;
}
.cid-upTWU98TTb h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTWU98TTb p {
  color: #767676;
  text-align: left;
}
.cid-upTWU98TTb .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTWU98TTb .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTWU98TTb .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTWU98TTb .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTWU98TTb .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTWU98TTb .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTWU98TTb .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-upTWU98TTb .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-upTWU98TTb .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-upTWU98TTb .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-upTWU98TTb .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTWU9sBjU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upTWU9sBjU .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTWU9sBjU .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTWU9sBjU .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTWU9sBjU .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upTWU9sBjU .box {
  right: 20%;
}
.cid-upTWU9sBjU .text-box {
  right: 0;
}
.cid-upTWU9sBjU .mbr-section-title,
.cid-upTWU9sBjU .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upTWU9sBjU .text-box {
    display: none;
  }
  .cid-upTWU9sBjU .mbr-section-title,
  .cid-upTWU9sBjU .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTWU9sBjU .box {
    display: none;
  }
  .cid-upTWU9sBjU .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTWU9sBjU .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTWU9sBjU .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTWU9sBjU .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTWU9sBjU .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTWU9sBjU .mbr-section-text DIV {
  text-align: center;
}
.cid-upTWU9ObbC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTWUa6VXp {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upTWUa6VXp h2 {
  text-align: left;
}
.cid-upTWUa6VXp h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTWUa6VXp p {
  color: #767676;
  text-align: left;
}
.cid-upTWUa6VXp .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTWUa6VXp .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTWUa6VXp .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTWUa6VXp .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTWUa6VXp .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTWUa6VXp .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTWUa6VXp .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTWUa6VXp .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTWUa6VXp .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTWUa6VXp .mbr-text {
  color: #232323;
}
.cid-upTWUaqndN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upTWUaqndN .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTWUaqndN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upTWUaqndN .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upTWUaqndN .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upTWUaqndN .container {
    padding: 0 26px;
  }
}
.cid-upTWUaqndN .row {
  justify-content: center;
}
.cid-upTWUaqndN .item {
  margin-bottom: 32px;
}
.cid-upTWUaqndN .item a {
  display: block;
}
.cid-upTWUaqndN .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upTWUaqndN .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upTWUaqndN .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upTWUaqndN .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-upTWUaqndN .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upTWUaqndN .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upTWUaqndN .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-upTWUaqndN .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upTWUaqndN .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upTWUaqndN .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upTWUaqndN .item-title {
  color: #ffffff;
}
.cid-upTWUaqndN .mbr-date {
  color: #cacaca;
}
.cid-upTWUaqndN .mbr-desc {
  color: #cacaca;
}
.cid-upTWUaNtyH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upTWUaNtyH .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTWUaNtyH .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-upTWUaNtyH .container {
    padding: 0 16px;
  }
}
.cid-upTWUaNtyH .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upTWUaNtyH .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTWUaNtyH .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upTWUaNtyH .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTWUaNtyH .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upTWUaNtyH .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upTWUaNtyH .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upTWUaNtyH .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upTWUaNtyH .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upTWUaNtyH .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-upTWUaNtyH .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upTWUaNtyH .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upTWUaNtyH .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upTWUaNtyH .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upTWUaNtyH .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upTWUaNtyH .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upTWUaNtyH .dragArea.row .form-group .form-control:hover,
.cid-upTWUaNtyH .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upTWUaNtyH .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upTWUaNtyH .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upTWUaNtyH .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upTWUaNtyH .mbr-title {
  color: #ffffff;
}
.cid-upTWUaNtyH .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upTWUaNtyH .mbr-section-subtitle {
  color: #08323C;
}
.cid-upTWUaNtyH .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upTWUaNtyH .list {
  color: #08323C;
}
.cid-upTWUaNtyH label {
  color: #08323C;
}
.cid-upTWUaNtyH H3 {
  color: #000000;
}
.cid-upTWUaNtyH P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upTXEEIEMY {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTXEEIEMY H1 {
  text-align: center;
}
.cid-uDmD5wX8Ug {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmD5wX8Ug .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmD5wX8Ug .video-block {
    width: 100% !important;
  }
}
.cid-upTXEF9SzG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTXEFsg2A {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upTXEFsg2A .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTXEFsg2A .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTXEFsg2A .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTXEFsg2A .box {
  left: 20%;
}
.cid-upTXEFsg2A .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upTXEFsg2A .mbr-section-text,
.cid-upTXEFsg2A .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upTXEFsg2A .text-box {
    display: none;
  }
  .cid-upTXEFsg2A .mbr-section-title,
  .cid-upTXEFsg2A .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTXEFsg2A .box {
    display: none;
  }
  .cid-upTXEFsg2A .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTXEFsg2A .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTXEFsg2A .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTXEFsg2A .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTXEFsg2A .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTXEFsg2A .mbr-section-text DIV {
  text-align: center;
}
.cid-upTXEFLsTU {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTXEFLsTU H1 {
  text-align: center;
}
.cid-upTXEG0qa7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTXEGgKQ7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTXEGgKQ7 h2 {
  text-align: left;
}
.cid-upTXEGgKQ7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTXEGgKQ7 p {
  color: #767676;
  text-align: left;
}
.cid-upTXEGgKQ7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTXEGgKQ7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTXEGgKQ7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTXEGgKQ7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTXEGgKQ7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTXEGgKQ7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTXEGgKQ7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTXEGgKQ7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTXEGgKQ7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTXEGgKQ7 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upTXEGgKQ7 P {
  color: #ffffff;
  text-align: left;
}
.cid-upTXEGgKQ7 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upTXEGH49F {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTXEGH49F H1 {
  color: #000000;
}
.cid-uy73Bass8H {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uy73Bass8H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy73Bass8H .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uy73Bass8H .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uy73Bass8H .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uy73Bass8H .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uy73Bass8H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy73Bass8H .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uy73Bass8H .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uy73Bass8H .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uy73Bass8H .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uy73Bass8H .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-uy73Bass8H .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uy73Bass8H .image-wrapper {
    padding: 1rem;
  }
}
.cid-uy73Bass8H .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uy73Bass8H .mbr-text,
.cid-uy73Bass8H .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upTXEHwoW1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTXEHwoW1 H1 {
  color: #000000;
}
.cid-uxjxwUwZhX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjxwUwZhX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjxwUwZhX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjxwUwZhX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjxwUwZhX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjxwUwZhX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjxwUwZhX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjxwUwZhX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjxwUwZhX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjxwUwZhX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjxwUwZhX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjxwUwZhX .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-uxjxwUwZhX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjxwUwZhX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjxwUwZhX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjxwUwZhX .mbr-text,
.cid-uxjxwUwZhX .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTXEIodIM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTXEIodIM H1 {
  color: #000000;
}
.cid-uxjxxtKTsU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjxxtKTsU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjxxtKTsU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjxxtKTsU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjxxtKTsU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjxxtKTsU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjxxtKTsU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjxxtKTsU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjxxtKTsU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjxxtKTsU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjxxtKTsU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjxxtKTsU .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-uxjxxtKTsU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjxxtKTsU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjxxtKTsU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjxxtKTsU .mbr-text,
.cid-uxjxxtKTsU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjxxZfLGX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjxxZfLGX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjxxZfLGX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjxxZfLGX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjxxZfLGX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjxxZfLGX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjxxZfLGX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjxxZfLGX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjxxZfLGX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjxxZfLGX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjxxZfLGX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjxxZfLGX .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-uxjxxZfLGX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjxxZfLGX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjxxZfLGX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjxxZfLGX .mbr-text,
.cid-uxjxxZfLGX .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTXEJPpYI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upTXEJPpYI H1 {
  color: #000000;
}
.cid-uxjxAlEvEo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjxAlEvEo h2 {
  text-align: left;
}
.cid-uxjxAlEvEo h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjxAlEvEo p {
  color: #767676;
  text-align: left;
}
.cid-uxjxAlEvEo .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjxAlEvEo .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjxAlEvEo .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjxAlEvEo .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjxAlEvEo .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjxAlEvEo .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjxAlEvEo .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjxAlEvEo .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjxAlEvEo .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjxAlEvEo .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjxAlEvEo .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTXEKuAHN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upTXEKuAHN .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTXEKuAHN .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTXEKuAHN .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTXEKuAHN .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upTXEKuAHN .box {
  right: 20%;
}
.cid-upTXEKuAHN .text-box {
  right: 0;
}
.cid-upTXEKuAHN .mbr-section-title,
.cid-upTXEKuAHN .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upTXEKuAHN .text-box {
    display: none;
  }
  .cid-upTXEKuAHN .mbr-section-title,
  .cid-upTXEKuAHN .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTXEKuAHN .box {
    display: none;
  }
  .cid-upTXEKuAHN .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTXEKuAHN .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTXEKuAHN .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTXEKuAHN .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTXEKuAHN .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTXEKuAHN .mbr-section-text DIV {
  text-align: center;
}
.cid-upTXEKPBHP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTXEL7KwP {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upTXEL7KwP h2 {
  text-align: left;
}
.cid-upTXEL7KwP h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTXEL7KwP p {
  color: #767676;
  text-align: left;
}
.cid-upTXEL7KwP .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTXEL7KwP .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTXEL7KwP .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTXEL7KwP .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTXEL7KwP .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTXEL7KwP .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTXEL7KwP .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTXEL7KwP .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTXEL7KwP .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTXEL7KwP .mbr-text {
  color: #232323;
}
.cid-upTXELxSXY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upTXELxSXY .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTXELxSXY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upTXELxSXY .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upTXELxSXY .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upTXELxSXY .container {
    padding: 0 26px;
  }
}
.cid-upTXELxSXY .row {
  justify-content: center;
}
.cid-upTXELxSXY .item {
  margin-bottom: 32px;
}
.cid-upTXELxSXY .item a {
  display: block;
}
.cid-upTXELxSXY .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upTXELxSXY .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upTXELxSXY .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upTXELxSXY .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-upTXELxSXY .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upTXELxSXY .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upTXELxSXY .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-upTXELxSXY .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upTXELxSXY .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upTXELxSXY .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upTXELxSXY .item-title {
  color: #ffffff;
}
.cid-upTXELxSXY .mbr-date {
  color: #cacaca;
}
.cid-upTXELxSXY .mbr-desc {
  color: #cacaca;
}
.cid-upTXELUxlF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upTXELUxlF .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTXELUxlF .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-upTXELUxlF .container {
    padding: 0 16px;
  }
}
.cid-upTXELUxlF .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upTXELUxlF .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTXELUxlF .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upTXELUxlF .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTXELUxlF .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upTXELUxlF .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upTXELUxlF .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upTXELUxlF .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upTXELUxlF .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upTXELUxlF .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-upTXELUxlF .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upTXELUxlF .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upTXELUxlF .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upTXELUxlF .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upTXELUxlF .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upTXELUxlF .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upTXELUxlF .dragArea.row .form-group .form-control:hover,
.cid-upTXELUxlF .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upTXELUxlF .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upTXELUxlF .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upTXELUxlF .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upTXELUxlF .mbr-title {
  color: #ffffff;
}
.cid-upTXELUxlF .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upTXELUxlF .mbr-section-subtitle {
  color: #08323C;
}
.cid-upTXELUxlF .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upTXELUxlF .list {
  color: #08323C;
}
.cid-upTXELUxlF label {
  color: #08323C;
}
.cid-upTXELUxlF H3 {
  color: #000000;
}
.cid-upTXELUxlF P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upTYQhFXCJ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTYQhFXCJ H1 {
  text-align: center;
}
.cid-uDmD7T9dXV {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmD7T9dXV .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmD7T9dXV .video-block {
    width: 100% !important;
  }
}
.cid-upTYQi7cxE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTYQiptu6 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upTYQiptu6 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTYQiptu6 .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTYQiptu6 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTYQiptu6 .box {
  left: 20%;
}
.cid-upTYQiptu6 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upTYQiptu6 .mbr-section-text,
.cid-upTYQiptu6 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upTYQiptu6 .text-box {
    display: none;
  }
  .cid-upTYQiptu6 .mbr-section-title,
  .cid-upTYQiptu6 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTYQiptu6 .box {
    display: none;
  }
  .cid-upTYQiptu6 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTYQiptu6 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTYQiptu6 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTYQiptu6 .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTYQiptu6 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTYQiptu6 .mbr-section-text DIV {
  text-align: center;
}
.cid-upTYQiGQnt {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTYQiGQnt H1 {
  text-align: center;
}
.cid-upTYQiZ8Bv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTYQjm6S7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTYQjm6S7 h2 {
  text-align: left;
}
.cid-upTYQjm6S7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTYQjm6S7 p {
  color: #767676;
  text-align: left;
}
.cid-upTYQjm6S7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTYQjm6S7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTYQjm6S7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTYQjm6S7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTYQjm6S7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTYQjm6S7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTYQjm6S7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTYQjm6S7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTYQjm6S7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTYQjm6S7 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upTYQjm6S7 P {
  color: #ffffff;
  text-align: left;
}
.cid-upTYQjm6S7 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upTYQjIboo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTYQjIboo H1 {
  color: #000000;
}
.cid-uy73EUJHvA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uy73EUJHvA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy73EUJHvA .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uy73EUJHvA .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uy73EUJHvA .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uy73EUJHvA .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uy73EUJHvA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy73EUJHvA .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uy73EUJHvA .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uy73EUJHvA .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uy73EUJHvA .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uy73EUJHvA .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-uy73EUJHvA .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uy73EUJHvA .image-wrapper {
    padding: 1rem;
  }
}
.cid-uy73EUJHvA .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uy73EUJHvA .mbr-text,
.cid-uy73EUJHvA .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upTYQkv6m1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTYQkv6m1 H1 {
  color: #000000;
}
.cid-uxjxJsDk1Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjxJsDk1Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjxJsDk1Q .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjxJsDk1Q .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjxJsDk1Q .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjxJsDk1Q .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjxJsDk1Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjxJsDk1Q .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjxJsDk1Q .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjxJsDk1Q .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjxJsDk1Q .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjxJsDk1Q .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-uxjxJsDk1Q .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjxJsDk1Q .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjxJsDk1Q .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjxJsDk1Q .mbr-text,
.cid-uxjxJsDk1Q .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTYQloEJr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTYQloEJr H1 {
  color: #000000;
}
.cid-uxjxGWphAQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjxGWphAQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjxGWphAQ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjxGWphAQ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjxGWphAQ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjxGWphAQ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjxGWphAQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjxGWphAQ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjxGWphAQ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjxGWphAQ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjxGWphAQ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjxGWphAQ .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-uxjxGWphAQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjxGWphAQ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjxGWphAQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjxGWphAQ .mbr-text,
.cid-uxjxGWphAQ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjxHwHIu9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjxHwHIu9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjxHwHIu9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjxHwHIu9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjxHwHIu9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjxHwHIu9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjxHwHIu9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjxHwHIu9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjxHwHIu9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjxHwHIu9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjxHwHIu9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjxHwHIu9 .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-uxjxHwHIu9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjxHwHIu9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjxHwHIu9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjxHwHIu9 .mbr-text,
.cid-uxjxHwHIu9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTYQmNXYu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upTYQmNXYu H1 {
  color: #000000;
}
.cid-upTYQn9Ymc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-upTYQn9Ymc h2 {
  text-align: left;
}
.cid-upTYQn9Ymc h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTYQn9Ymc p {
  color: #767676;
  text-align: left;
}
.cid-upTYQn9Ymc .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTYQn9Ymc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTYQn9Ymc .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTYQn9Ymc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTYQn9Ymc .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTYQn9Ymc .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTYQn9Ymc .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-upTYQn9Ymc .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-upTYQn9Ymc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-upTYQn9Ymc .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-upTYQn9Ymc .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTYQnwljL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upTYQnwljL .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTYQnwljL .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTYQnwljL .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTYQnwljL .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upTYQnwljL .box {
  right: 20%;
}
.cid-upTYQnwljL .text-box {
  right: 0;
}
.cid-upTYQnwljL .mbr-section-title,
.cid-upTYQnwljL .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upTYQnwljL .text-box {
    display: none;
  }
  .cid-upTYQnwljL .mbr-section-title,
  .cid-upTYQnwljL .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTYQnwljL .box {
    display: none;
  }
  .cid-upTYQnwljL .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTYQnwljL .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTYQnwljL .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTYQnwljL .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTYQnwljL .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTYQnwljL .mbr-section-text DIV {
  text-align: center;
}
.cid-upTYQnSSz9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTYQofYeF {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upTYQofYeF h2 {
  text-align: left;
}
.cid-upTYQofYeF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTYQofYeF p {
  color: #767676;
  text-align: left;
}
.cid-upTYQofYeF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTYQofYeF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTYQofYeF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTYQofYeF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTYQofYeF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTYQofYeF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTYQofYeF .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTYQofYeF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTYQofYeF .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTYQofYeF .mbr-text {
  color: #232323;
}
.cid-upTYQoAokt {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upTYQoAokt .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTYQoAokt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upTYQoAokt .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upTYQoAokt .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upTYQoAokt .container {
    padding: 0 26px;
  }
}
.cid-upTYQoAokt .row {
  justify-content: center;
}
.cid-upTYQoAokt .item {
  margin-bottom: 32px;
}
.cid-upTYQoAokt .item a {
  display: block;
}
.cid-upTYQoAokt .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upTYQoAokt .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upTYQoAokt .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upTYQoAokt .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-upTYQoAokt .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upTYQoAokt .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upTYQoAokt .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-upTYQoAokt .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upTYQoAokt .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upTYQoAokt .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upTYQoAokt .item-title {
  color: #ffffff;
}
.cid-upTYQoAokt .mbr-date {
  color: #cacaca;
}
.cid-upTYQoAokt .mbr-desc {
  color: #cacaca;
}
.cid-upTYQoYqia {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upTYQoYqia .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTYQoYqia .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-upTYQoYqia .container {
    padding: 0 16px;
  }
}
.cid-upTYQoYqia .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upTYQoYqia .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTYQoYqia .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upTYQoYqia .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTYQoYqia .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upTYQoYqia .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upTYQoYqia .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upTYQoYqia .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upTYQoYqia .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upTYQoYqia .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-upTYQoYqia .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upTYQoYqia .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upTYQoYqia .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upTYQoYqia .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upTYQoYqia .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upTYQoYqia .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upTYQoYqia .dragArea.row .form-group .form-control:hover,
.cid-upTYQoYqia .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upTYQoYqia .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upTYQoYqia .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upTYQoYqia .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upTYQoYqia .mbr-title {
  color: #ffffff;
}
.cid-upTYQoYqia .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upTYQoYqia .mbr-section-subtitle {
  color: #08323C;
}
.cid-upTYQoYqia .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upTYQoYqia .list {
  color: #08323C;
}
.cid-upTYQoYqia label {
  color: #08323C;
}
.cid-upTYQoYqia H3 {
  color: #000000;
}
.cid-upTYQoYqia P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upTZZha2dA {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTZZha2dA H1 {
  text-align: center;
}
.cid-uDmDakFY4H {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmDakFY4H .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmDakFY4H .video-block {
    width: 100% !important;
  }
}
.cid-upTZZhAD0k {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTZZhVplM {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upTZZhVplM .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTZZhVplM .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTZZhVplM .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTZZhVplM .box {
  left: 20%;
}
.cid-upTZZhVplM .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upTZZhVplM .mbr-section-text,
.cid-upTZZhVplM .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upTZZhVplM .text-box {
    display: none;
  }
  .cid-upTZZhVplM .mbr-section-title,
  .cid-upTZZhVplM .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTZZhVplM .box {
    display: none;
  }
  .cid-upTZZhVplM .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTZZhVplM .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTZZhVplM .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTZZhVplM .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTZZhVplM .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTZZhVplM .mbr-section-text DIV {
  text-align: center;
}
.cid-upTZZiddg5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTZZiddg5 H1 {
  text-align: center;
}
.cid-upTZZivCG7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTZZiQ58C {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upTZZiQ58C h2 {
  text-align: left;
}
.cid-upTZZiQ58C h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTZZiQ58C p {
  color: #767676;
  text-align: left;
}
.cid-upTZZiQ58C .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTZZiQ58C .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTZZiQ58C .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTZZiQ58C .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTZZiQ58C .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTZZiQ58C .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTZZiQ58C .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTZZiQ58C .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTZZiQ58C .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTZZiQ58C H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upTZZiQ58C P {
  color: #ffffff;
  text-align: left;
}
.cid-upTZZiQ58C H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upTZZjoWR4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTZZjoWR4 H1 {
  color: #000000;
}
.cid-uy73J8Wp9G {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uy73J8Wp9G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy73J8Wp9G .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uy73J8Wp9G .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uy73J8Wp9G .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uy73J8Wp9G .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uy73J8Wp9G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy73J8Wp9G .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uy73J8Wp9G .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uy73J8Wp9G .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uy73J8Wp9G .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uy73J8Wp9G .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-uy73J8Wp9G .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uy73J8Wp9G .image-wrapper {
    padding: 1rem;
  }
}
.cid-uy73J8Wp9G .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uy73J8Wp9G .mbr-text,
.cid-uy73J8Wp9G .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upTZZkh1TI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTZZkh1TI H1 {
  color: #000000;
}
.cid-uxjxRHpj2Y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjxRHpj2Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjxRHpj2Y .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjxRHpj2Y .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjxRHpj2Y .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjxRHpj2Y .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjxRHpj2Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjxRHpj2Y .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjxRHpj2Y .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjxRHpj2Y .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjxRHpj2Y .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjxRHpj2Y .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-uxjxRHpj2Y .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjxRHpj2Y .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjxRHpj2Y .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjxRHpj2Y .mbr-text,
.cid-uxjxRHpj2Y .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTZZl61HE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upTZZl61HE H1 {
  color: #000000;
}
.cid-uxjxSjVyy0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjxSjVyy0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjxSjVyy0 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjxSjVyy0 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjxSjVyy0 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjxSjVyy0 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjxSjVyy0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjxSjVyy0 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjxSjVyy0 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjxSjVyy0 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjxSjVyy0 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjxSjVyy0 .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-uxjxSjVyy0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjxSjVyy0 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjxSjVyy0 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjxSjVyy0 .mbr-text,
.cid-uxjxSjVyy0 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjxTmCjfB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjxTmCjfB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjxTmCjfB .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjxTmCjfB .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjxTmCjfB .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjxTmCjfB .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjxTmCjfB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjxTmCjfB .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjxTmCjfB .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjxTmCjfB .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjxTmCjfB .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjxTmCjfB .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-uxjxTmCjfB .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjxTmCjfB .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjxTmCjfB .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjxTmCjfB .mbr-text,
.cid-uxjxTmCjfB .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upTZZmvXvb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upTZZmvXvb H1 {
  color: #000000;
}
.cid-uxjxUUVvS7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjxUUVvS7 h2 {
  text-align: left;
}
.cid-uxjxUUVvS7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjxUUVvS7 p {
  color: #767676;
  text-align: left;
}
.cid-uxjxUUVvS7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjxUUVvS7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjxUUVvS7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjxUUVvS7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjxUUVvS7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjxUUVvS7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjxUUVvS7 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjxUUVvS7 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjxUUVvS7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjxUUVvS7 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjxUUVvS7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTZZnd0eD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upTZZnd0eD .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upTZZnd0eD .text-block {
  position: relative;
  z-index: 0;
}
.cid-upTZZnd0eD .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upTZZnd0eD .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upTZZnd0eD .box {
  right: 20%;
}
.cid-upTZZnd0eD .text-box {
  right: 0;
}
.cid-upTZZnd0eD .mbr-section-title,
.cid-upTZZnd0eD .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upTZZnd0eD .text-box {
    display: none;
  }
  .cid-upTZZnd0eD .mbr-section-title,
  .cid-upTZZnd0eD .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upTZZnd0eD .box {
    display: none;
  }
  .cid-upTZZnd0eD .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upTZZnd0eD .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upTZZnd0eD .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upTZZnd0eD .mbr-section-text {
  color: #c1c1c1;
}
.cid-upTZZnd0eD .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upTZZnd0eD .mbr-section-text DIV {
  text-align: center;
}
.cid-upTZZnyJ5r {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upTZZnVbJu {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upTZZnVbJu h2 {
  text-align: left;
}
.cid-upTZZnVbJu h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upTZZnVbJu p {
  color: #767676;
  text-align: left;
}
.cid-upTZZnVbJu .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upTZZnVbJu .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upTZZnVbJu .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upTZZnVbJu .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upTZZnVbJu .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upTZZnVbJu .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upTZZnVbJu .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upTZZnVbJu .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upTZZnVbJu .card-img span {
    font-size: 40px !important;
  }
}
.cid-upTZZnVbJu .mbr-text {
  color: #232323;
}
.cid-upTZZohuNJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upTZZohuNJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTZZohuNJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upTZZohuNJ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upTZZohuNJ .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upTZZohuNJ .container {
    padding: 0 26px;
  }
}
.cid-upTZZohuNJ .row {
  justify-content: center;
}
.cid-upTZZohuNJ .item {
  margin-bottom: 32px;
}
.cid-upTZZohuNJ .item a {
  display: block;
}
.cid-upTZZohuNJ .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upTZZohuNJ .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upTZZohuNJ .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upTZZohuNJ .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-upTZZohuNJ .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upTZZohuNJ .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upTZZohuNJ .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-upTZZohuNJ .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upTZZohuNJ .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upTZZohuNJ .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upTZZohuNJ .item-title {
  color: #ffffff;
}
.cid-upTZZohuNJ .mbr-date {
  color: #cacaca;
}
.cid-upTZZohuNJ .mbr-desc {
  color: #cacaca;
}
.cid-upTZZoGIEP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upTZZoGIEP .mbr-fallback-image.disabled {
  display: none;
}
.cid-upTZZoGIEP .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-upTZZoGIEP .container {
    padding: 0 16px;
  }
}
.cid-upTZZoGIEP .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upTZZoGIEP .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTZZoGIEP .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upTZZoGIEP .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upTZZoGIEP .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upTZZoGIEP .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upTZZoGIEP .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upTZZoGIEP .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upTZZoGIEP .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upTZZoGIEP .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-upTZZoGIEP .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upTZZoGIEP .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upTZZoGIEP .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upTZZoGIEP .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upTZZoGIEP .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upTZZoGIEP .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upTZZoGIEP .dragArea.row .form-group .form-control:hover,
.cid-upTZZoGIEP .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upTZZoGIEP .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upTZZoGIEP .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upTZZoGIEP .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upTZZoGIEP .mbr-title {
  color: #ffffff;
}
.cid-upTZZoGIEP .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upTZZoGIEP .mbr-section-subtitle {
  color: #08323C;
}
.cid-upTZZoGIEP .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upTZZoGIEP .list {
  color: #08323C;
}
.cid-upTZZoGIEP label {
  color: #08323C;
}
.cid-upTZZoGIEP H3 {
  color: #000000;
}
.cid-upTZZoGIEP P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upU1mkfGV3 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upU1mkfGV3 H1 {
  text-align: center;
}
.cid-uDmDcfMBTa {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmDcfMBTa .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmDcfMBTa .video-block {
    width: 100% !important;
  }
}
.cid-upU1mkGNga {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upU1ml4Js1 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upU1ml4Js1 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upU1ml4Js1 .text-block {
  position: relative;
  z-index: 0;
}
.cid-upU1ml4Js1 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upU1ml4Js1 .box {
  left: 20%;
}
.cid-upU1ml4Js1 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upU1ml4Js1 .mbr-section-text,
.cid-upU1ml4Js1 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upU1ml4Js1 .text-box {
    display: none;
  }
  .cid-upU1ml4Js1 .mbr-section-title,
  .cid-upU1ml4Js1 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upU1ml4Js1 .box {
    display: none;
  }
  .cid-upU1ml4Js1 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upU1ml4Js1 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upU1ml4Js1 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upU1ml4Js1 .mbr-section-text {
  color: #c1c1c1;
}
.cid-upU1ml4Js1 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upU1ml4Js1 .mbr-section-text DIV {
  text-align: center;
}
.cid-upU1mlply0 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upU1mlply0 H1 {
  text-align: center;
}
.cid-upU1mlJWTS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upU1mm4h4u {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upU1mm4h4u h2 {
  text-align: left;
}
.cid-upU1mm4h4u h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upU1mm4h4u p {
  color: #767676;
  text-align: left;
}
.cid-upU1mm4h4u .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upU1mm4h4u .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upU1mm4h4u .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upU1mm4h4u .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upU1mm4h4u .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upU1mm4h4u .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upU1mm4h4u .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upU1mm4h4u .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upU1mm4h4u .card-img span {
    font-size: 40px !important;
  }
}
.cid-upU1mm4h4u H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upU1mm4h4u P {
  color: #ffffff;
  text-align: left;
}
.cid-upU1mm4h4u H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upU1mmuipn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upU1mmuipn H1 {
  color: #000000;
}
.cid-uy73NcROce {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uy73NcROce .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy73NcROce .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uy73NcROce .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uy73NcROce .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uy73NcROce .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uy73NcROce .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy73NcROce .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uy73NcROce .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uy73NcROce .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uy73NcROce .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uy73NcROce .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-uy73NcROce .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uy73NcROce .image-wrapper {
    padding: 1rem;
  }
}
.cid-uy73NcROce .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uy73NcROce .mbr-text,
.cid-uy73NcROce .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upU1mnqJ9d {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upU1mnqJ9d H1 {
  color: #000000;
}
.cid-uxjyqCqTEl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjyqCqTEl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjyqCqTEl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjyqCqTEl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjyqCqTEl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjyqCqTEl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjyqCqTEl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjyqCqTEl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjyqCqTEl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjyqCqTEl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjyqCqTEl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjyqCqTEl .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-uxjyqCqTEl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjyqCqTEl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjyqCqTEl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjyqCqTEl .mbr-text,
.cid-uxjyqCqTEl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upU1mojgAx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upU1mojgAx H1 {
  color: #000000;
}
.cid-uxjyre8VeD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjyre8VeD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjyre8VeD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjyre8VeD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjyre8VeD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjyre8VeD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjyre8VeD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjyre8VeD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjyre8VeD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjyre8VeD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjyre8VeD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjyre8VeD .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-uxjyre8VeD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjyre8VeD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjyre8VeD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjyre8VeD .mbr-text,
.cid-uxjyre8VeD .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjyrWbXNZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjyrWbXNZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjyrWbXNZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjyrWbXNZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjyrWbXNZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjyrWbXNZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjyrWbXNZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjyrWbXNZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjyrWbXNZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjyrWbXNZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjyrWbXNZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjyrWbXNZ .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-uxjyrWbXNZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjyrWbXNZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjyrWbXNZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjyrWbXNZ .mbr-text,
.cid-uxjyrWbXNZ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upU1mpRbf5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upU1mpRbf5 H1 {
  color: #000000;
}
.cid-uxjytWtEUF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjytWtEUF h2 {
  text-align: left;
}
.cid-uxjytWtEUF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjytWtEUF p {
  color: #767676;
  text-align: left;
}
.cid-uxjytWtEUF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjytWtEUF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjytWtEUF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjytWtEUF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjytWtEUF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjytWtEUF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjytWtEUF .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjytWtEUF .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjytWtEUF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjytWtEUF .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjytWtEUF .card-img span {
    font-size: 40px !important;
  }
}
.cid-upU1mqEXE3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upU1mqEXE3 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upU1mqEXE3 .text-block {
  position: relative;
  z-index: 0;
}
.cid-upU1mqEXE3 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upU1mqEXE3 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upU1mqEXE3 .box {
  right: 20%;
}
.cid-upU1mqEXE3 .text-box {
  right: 0;
}
.cid-upU1mqEXE3 .mbr-section-title,
.cid-upU1mqEXE3 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upU1mqEXE3 .text-box {
    display: none;
  }
  .cid-upU1mqEXE3 .mbr-section-title,
  .cid-upU1mqEXE3 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upU1mqEXE3 .box {
    display: none;
  }
  .cid-upU1mqEXE3 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upU1mqEXE3 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upU1mqEXE3 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upU1mqEXE3 .mbr-section-text {
  color: #c1c1c1;
}
.cid-upU1mqEXE3 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upU1mqEXE3 .mbr-section-text DIV {
  text-align: center;
}
.cid-upU1mr4zcd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upU1mrqNbz {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upU1mrqNbz h2 {
  text-align: left;
}
.cid-upU1mrqNbz h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upU1mrqNbz p {
  color: #767676;
  text-align: left;
}
.cid-upU1mrqNbz .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upU1mrqNbz .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upU1mrqNbz .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upU1mrqNbz .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upU1mrqNbz .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upU1mrqNbz .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upU1mrqNbz .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upU1mrqNbz .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upU1mrqNbz .card-img span {
    font-size: 40px !important;
  }
}
.cid-upU1mrqNbz .mbr-text {
  color: #232323;
}
.cid-upU1mrNz5W {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upU1mrNz5W .mbr-fallback-image.disabled {
  display: none;
}
.cid-upU1mrNz5W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upU1mrNz5W .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upU1mrNz5W .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upU1mrNz5W .container {
    padding: 0 26px;
  }
}
.cid-upU1mrNz5W .row {
  justify-content: center;
}
.cid-upU1mrNz5W .item {
  margin-bottom: 32px;
}
.cid-upU1mrNz5W .item a {
  display: block;
}
.cid-upU1mrNz5W .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upU1mrNz5W .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upU1mrNz5W .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upU1mrNz5W .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-upU1mrNz5W .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upU1mrNz5W .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upU1mrNz5W .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-upU1mrNz5W .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upU1mrNz5W .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upU1mrNz5W .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upU1mrNz5W .item-title {
  color: #ffffff;
}
.cid-upU1mrNz5W .mbr-date {
  color: #cacaca;
}
.cid-upU1mrNz5W .mbr-desc {
  color: #cacaca;
}
.cid-upU1msfhp0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upU1msfhp0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upU1msfhp0 .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-upU1msfhp0 .container {
    padding: 0 16px;
  }
}
.cid-upU1msfhp0 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upU1msfhp0 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upU1msfhp0 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upU1msfhp0 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upU1msfhp0 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upU1msfhp0 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upU1msfhp0 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upU1msfhp0 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upU1msfhp0 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upU1msfhp0 .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-upU1msfhp0 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upU1msfhp0 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upU1msfhp0 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upU1msfhp0 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upU1msfhp0 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upU1msfhp0 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upU1msfhp0 .dragArea.row .form-group .form-control:hover,
.cid-upU1msfhp0 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upU1msfhp0 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upU1msfhp0 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upU1msfhp0 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upU1msfhp0 .mbr-title {
  color: #ffffff;
}
.cid-upU1msfhp0 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upU1msfhp0 .mbr-section-subtitle {
  color: #08323C;
}
.cid-upU1msfhp0 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upU1msfhp0 .list {
  color: #08323C;
}
.cid-upU1msfhp0 label {
  color: #08323C;
}
.cid-upU1msfhp0 H3 {
  color: #000000;
}
.cid-upU1msfhp0 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upXDkbgOiT {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upXDkbgOiT H1 {
  text-align: center;
}
.cid-uDmDez5wuE {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmDez5wuE .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmDez5wuE .video-block {
    width: 100% !important;
  }
}
.cid-upXDkbCCnW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upXDkbPH1i {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upXDkbPH1i .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upXDkbPH1i .text-block {
  position: relative;
  z-index: 0;
}
.cid-upXDkbPH1i .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upXDkbPH1i .box {
  left: 20%;
}
.cid-upXDkbPH1i .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upXDkbPH1i .mbr-section-text,
.cid-upXDkbPH1i .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upXDkbPH1i .text-box {
    display: none;
  }
  .cid-upXDkbPH1i .mbr-section-title,
  .cid-upXDkbPH1i .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upXDkbPH1i .box {
    display: none;
  }
  .cid-upXDkbPH1i .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upXDkbPH1i .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upXDkbPH1i .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upXDkbPH1i .mbr-section-text {
  color: #c1c1c1;
}
.cid-upXDkbPH1i .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upXDkbPH1i .mbr-section-text DIV {
  text-align: center;
}
.cid-upXDkc4bMb {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upXDkc4bMb H1 {
  text-align: center;
}
.cid-upXDkcgQyS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upXDkcsU2P {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upXDkcsU2P h2 {
  text-align: left;
}
.cid-upXDkcsU2P h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upXDkcsU2P p {
  color: #767676;
  text-align: left;
}
.cid-upXDkcsU2P .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upXDkcsU2P .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upXDkcsU2P .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upXDkcsU2P .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upXDkcsU2P .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upXDkcsU2P .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upXDkcsU2P .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upXDkcsU2P .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upXDkcsU2P .card-img span {
    font-size: 40px !important;
  }
}
.cid-upXDkcsU2P H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upXDkcsU2P P {
  color: #ffffff;
  text-align: left;
}
.cid-upXDkcsU2P H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upXDkcLpT6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upXDkcLpT6 H1 {
  color: #000000;
}
.cid-upXNwVu34R {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upXNwVu34R .mbr-fallback-image.disabled {
  display: none;
}
.cid-upXNwVu34R .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upXNwVu34R .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upXNwVu34R .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upXNwVu34R .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upXNwVu34R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upXNwVu34R .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upXNwVu34R .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upXNwVu34R .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upXNwVu34R .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upXNwVu34R .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-upXNwVu34R .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upXNwVu34R .image-wrapper {
    padding: 1rem;
  }
}
.cid-upXNwVu34R .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upXNwVu34R .mbr-text,
.cid-upXNwVu34R .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvfL8bRitM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfL8bRitM H1 {
  color: #000000;
}
.cid-uxjyVaKLUf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjyVaKLUf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjyVaKLUf .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjyVaKLUf .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjyVaKLUf .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjyVaKLUf .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjyVaKLUf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjyVaKLUf .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjyVaKLUf .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjyVaKLUf .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjyVaKLUf .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjyVaKLUf .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-uxjyVaKLUf .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjyVaKLUf .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjyVaKLUf .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjyVaKLUf .mbr-text,
.cid-uxjyVaKLUf .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upXDkdYygY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upXDkdYygY H1 {
  color: #000000;
}
.cid-uxjyZ2qyBL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjyZ2qyBL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjyZ2qyBL .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjyZ2qyBL .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjyZ2qyBL .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjyZ2qyBL .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjyZ2qyBL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjyZ2qyBL .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjyZ2qyBL .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjyZ2qyBL .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjyZ2qyBL .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjyZ2qyBL .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-uxjyZ2qyBL .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjyZ2qyBL .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjyZ2qyBL .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjyZ2qyBL .mbr-text,
.cid-uxjyZ2qyBL .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjyZSfHM0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjyZSfHM0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjyZSfHM0 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjyZSfHM0 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjyZSfHM0 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjyZSfHM0 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjyZSfHM0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjyZSfHM0 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjyZSfHM0 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjyZSfHM0 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjyZSfHM0 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjyZSfHM0 .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-uxjyZSfHM0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjyZSfHM0 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjyZSfHM0 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjyZSfHM0 .mbr-text,
.cid-uxjyZSfHM0 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upXDkf8Sra {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upXDkf8Sra H1 {
  color: #000000;
}
.cid-uxjz3bzf8C {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjz3bzf8C h2 {
  text-align: left;
}
.cid-uxjz3bzf8C h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjz3bzf8C p {
  color: #767676;
  text-align: left;
}
.cid-uxjz3bzf8C .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjz3bzf8C .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjz3bzf8C .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjz3bzf8C .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjz3bzf8C .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjz3bzf8C .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjz3bzf8C .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjz3bzf8C .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjz3bzf8C .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjz3bzf8C .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjz3bzf8C .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxjz1vLOgq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjz1vLOgq H1 {
  color: #000000;
}
.cid-upXDkfFGqH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upXDkfFGqH .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upXDkfFGqH .text-block {
  position: relative;
  z-index: 0;
}
.cid-upXDkfFGqH .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upXDkfFGqH .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upXDkfFGqH .box {
  right: 20%;
}
.cid-upXDkfFGqH .text-box {
  right: 0;
}
.cid-upXDkfFGqH .mbr-section-title,
.cid-upXDkfFGqH .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upXDkfFGqH .text-box {
    display: none;
  }
  .cid-upXDkfFGqH .mbr-section-title,
  .cid-upXDkfFGqH .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upXDkfFGqH .box {
    display: none;
  }
  .cid-upXDkfFGqH .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upXDkfFGqH .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upXDkfFGqH .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upXDkfFGqH .mbr-section-text {
  color: #c1c1c1;
}
.cid-upXDkfFGqH .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upXDkfFGqH .mbr-section-text DIV {
  text-align: center;
}
.cid-upXDkfWaH4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upXDkgcNy3 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upXDkgcNy3 h2 {
  text-align: left;
}
.cid-upXDkgcNy3 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upXDkgcNy3 p {
  color: #767676;
  text-align: left;
}
.cid-upXDkgcNy3 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upXDkgcNy3 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upXDkgcNy3 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upXDkgcNy3 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upXDkgcNy3 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upXDkgcNy3 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upXDkgcNy3 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upXDkgcNy3 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upXDkgcNy3 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upXDkgcNy3 .mbr-text {
  color: #232323;
}
.cid-upXDkgvDLC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upXDkgvDLC .mbr-fallback-image.disabled {
  display: none;
}
.cid-upXDkgvDLC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upXDkgvDLC .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upXDkgvDLC .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upXDkgvDLC .container {
    padding: 0 26px;
  }
}
.cid-upXDkgvDLC .row {
  justify-content: center;
}
.cid-upXDkgvDLC .item {
  margin-bottom: 32px;
}
.cid-upXDkgvDLC .item a {
  display: block;
}
.cid-upXDkgvDLC .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upXDkgvDLC .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upXDkgvDLC .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upXDkgvDLC .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-upXDkgvDLC .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upXDkgvDLC .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upXDkgvDLC .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-upXDkgvDLC .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upXDkgvDLC .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upXDkgvDLC .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upXDkgvDLC .item-title {
  color: #ffffff;
}
.cid-upXDkgvDLC .mbr-date {
  color: #cacaca;
}
.cid-upXDkgvDLC .mbr-desc {
  color: #cacaca;
}
.cid-upXDkgP0UN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upXDkgP0UN .mbr-fallback-image.disabled {
  display: none;
}
.cid-upXDkgP0UN .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-upXDkgP0UN .container {
    padding: 0 16px;
  }
}
.cid-upXDkgP0UN .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upXDkgP0UN .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upXDkgP0UN .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upXDkgP0UN .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upXDkgP0UN .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upXDkgP0UN .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upXDkgP0UN .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upXDkgP0UN .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upXDkgP0UN .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upXDkgP0UN .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-upXDkgP0UN .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upXDkgP0UN .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upXDkgP0UN .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upXDkgP0UN .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upXDkgP0UN .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upXDkgP0UN .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upXDkgP0UN .dragArea.row .form-group .form-control:hover,
.cid-upXDkgP0UN .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upXDkgP0UN .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upXDkgP0UN .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upXDkgP0UN .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upXDkgP0UN .mbr-title {
  color: #ffffff;
}
.cid-upXDkgP0UN .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upXDkgP0UN .mbr-section-subtitle {
  color: #08323C;
}
.cid-upXDkgP0UN .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upXDkgP0UN .list {
  color: #08323C;
}
.cid-upXDkgP0UN label {
  color: #08323C;
}
.cid-upXDkgP0UN H3 {
  color: #000000;
}
.cid-upXDkgP0UN P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upXGdZW3Fl {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upXGdZW3Fl H1 {
  text-align: center;
}
.cid-uDmDgKc9Cv {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmDgKc9Cv .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmDgKc9Cv .video-block {
    width: 100% !important;
  }
}
.cid-upXGe0nxCA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upXGe0Bfp4 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upXGe0Bfp4 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upXGe0Bfp4 .text-block {
  position: relative;
  z-index: 0;
}
.cid-upXGe0Bfp4 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upXGe0Bfp4 .box {
  left: 20%;
}
.cid-upXGe0Bfp4 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upXGe0Bfp4 .mbr-section-text,
.cid-upXGe0Bfp4 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upXGe0Bfp4 .text-box {
    display: none;
  }
  .cid-upXGe0Bfp4 .mbr-section-title,
  .cid-upXGe0Bfp4 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upXGe0Bfp4 .box {
    display: none;
  }
  .cid-upXGe0Bfp4 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upXGe0Bfp4 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upXGe0Bfp4 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upXGe0Bfp4 .mbr-section-text {
  color: #c1c1c1;
}
.cid-upXGe0Bfp4 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upXGe0Bfp4 .mbr-section-text DIV {
  text-align: center;
}
.cid-upXGe0ReUS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upXGe0ReUS H1 {
  text-align: center;
}
.cid-upXGe14hVV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upXGe1haYX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upXGe1haYX h2 {
  text-align: left;
}
.cid-upXGe1haYX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upXGe1haYX p {
  color: #767676;
  text-align: left;
}
.cid-upXGe1haYX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upXGe1haYX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upXGe1haYX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upXGe1haYX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upXGe1haYX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upXGe1haYX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upXGe1haYX .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upXGe1haYX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upXGe1haYX .card-img span {
    font-size: 40px !important;
  }
}
.cid-upXGe1haYX H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upXGe1haYX P {
  color: #ffffff;
  text-align: left;
}
.cid-upXGe1haYX H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upXGe1zyEW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upXGe1zyEW H1 {
  color: #000000;
}
.cid-uxjzsyEwlZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjzsyEwlZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjzsyEwlZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjzsyEwlZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjzsyEwlZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjzsyEwlZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjzsyEwlZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjzsyEwlZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjzsyEwlZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjzsyEwlZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjzsyEwlZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjzsyEwlZ .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-uxjzsyEwlZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjzsyEwlZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjzsyEwlZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjzsyEwlZ .mbr-text,
.cid-uxjzsyEwlZ .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upXGe2bNgt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upXGe2bNgt H1 {
  color: #000000;
}
.cid-uxjzqPHmrP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjzqPHmrP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjzqPHmrP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjzqPHmrP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjzqPHmrP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjzqPHmrP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjzqPHmrP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjzqPHmrP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjzqPHmrP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjzqPHmrP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjzqPHmrP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjzqPHmrP .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-uxjzqPHmrP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjzqPHmrP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjzqPHmrP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjzqPHmrP .mbr-text,
.cid-uxjzqPHmrP .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upXGe2SMDI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upXGe2SMDI H1 {
  color: #000000;
}
.cid-uxjzoK7dL8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjzoK7dL8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjzoK7dL8 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjzoK7dL8 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjzoK7dL8 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjzoK7dL8 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjzoK7dL8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjzoK7dL8 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjzoK7dL8 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjzoK7dL8 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjzoK7dL8 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjzoK7dL8 .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-uxjzoK7dL8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjzoK7dL8 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjzoK7dL8 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjzoK7dL8 .mbr-text,
.cid-uxjzoK7dL8 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjzpn6WDs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjzpn6WDs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjzpn6WDs .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjzpn6WDs .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjzpn6WDs .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjzpn6WDs .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjzpn6WDs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjzpn6WDs .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjzpn6WDs .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjzpn6WDs .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjzpn6WDs .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjzpn6WDs .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-uxjzpn6WDs .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjzpn6WDs .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjzpn6WDs .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjzpn6WDs .mbr-text,
.cid-uxjzpn6WDs .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upXGe3Z2hI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upXGe3Z2hI H1 {
  color: #000000;
}
.cid-upXGe4h9qd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-upXGe4h9qd h2 {
  text-align: left;
}
.cid-upXGe4h9qd h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upXGe4h9qd p {
  color: #767676;
  text-align: left;
}
.cid-upXGe4h9qd .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upXGe4h9qd .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upXGe4h9qd .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upXGe4h9qd .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upXGe4h9qd .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upXGe4h9qd .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upXGe4h9qd .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-upXGe4h9qd .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-upXGe4h9qd .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-upXGe4h9qd .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-upXGe4h9qd .card-img span {
    font-size: 40px !important;
  }
}
.cid-upXGe4CSFj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upXGe4CSFj .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upXGe4CSFj .text-block {
  position: relative;
  z-index: 0;
}
.cid-upXGe4CSFj .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upXGe4CSFj .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upXGe4CSFj .box {
  right: 20%;
}
.cid-upXGe4CSFj .text-box {
  right: 0;
}
.cid-upXGe4CSFj .mbr-section-title,
.cid-upXGe4CSFj .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upXGe4CSFj .text-box {
    display: none;
  }
  .cid-upXGe4CSFj .mbr-section-title,
  .cid-upXGe4CSFj .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upXGe4CSFj .box {
    display: none;
  }
  .cid-upXGe4CSFj .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upXGe4CSFj .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upXGe4CSFj .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upXGe4CSFj .mbr-section-text {
  color: #c1c1c1;
}
.cid-upXGe4CSFj .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upXGe4CSFj .mbr-section-text DIV {
  text-align: center;
}
.cid-upXGe4TjSA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upXGe5bQxM {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upXGe5bQxM h2 {
  text-align: left;
}
.cid-upXGe5bQxM h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upXGe5bQxM p {
  color: #767676;
  text-align: left;
}
.cid-upXGe5bQxM .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upXGe5bQxM .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upXGe5bQxM .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upXGe5bQxM .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upXGe5bQxM .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upXGe5bQxM .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upXGe5bQxM .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upXGe5bQxM .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upXGe5bQxM .card-img span {
    font-size: 40px !important;
  }
}
.cid-upXGe5bQxM .mbr-text {
  color: #232323;
}
.cid-upXGe5uTwe {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upXGe5uTwe .mbr-fallback-image.disabled {
  display: none;
}
.cid-upXGe5uTwe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upXGe5uTwe .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upXGe5uTwe .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upXGe5uTwe .container {
    padding: 0 26px;
  }
}
.cid-upXGe5uTwe .row {
  justify-content: center;
}
.cid-upXGe5uTwe .item {
  margin-bottom: 32px;
}
.cid-upXGe5uTwe .item a {
  display: block;
}
.cid-upXGe5uTwe .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upXGe5uTwe .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upXGe5uTwe .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upXGe5uTwe .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-upXGe5uTwe .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upXGe5uTwe .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upXGe5uTwe .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-upXGe5uTwe .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upXGe5uTwe .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upXGe5uTwe .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upXGe5uTwe .item-title {
  color: #ffffff;
}
.cid-upXGe5uTwe .mbr-date {
  color: #cacaca;
}
.cid-upXGe5uTwe .mbr-desc {
  color: #cacaca;
}
.cid-upXGe5N5Yh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upXGe5N5Yh .mbr-fallback-image.disabled {
  display: none;
}
.cid-upXGe5N5Yh .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-upXGe5N5Yh .container {
    padding: 0 16px;
  }
}
.cid-upXGe5N5Yh .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upXGe5N5Yh .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upXGe5N5Yh .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upXGe5N5Yh .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upXGe5N5Yh .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upXGe5N5Yh .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upXGe5N5Yh .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upXGe5N5Yh .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upXGe5N5Yh .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upXGe5N5Yh .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-upXGe5N5Yh .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upXGe5N5Yh .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upXGe5N5Yh .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upXGe5N5Yh .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upXGe5N5Yh .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upXGe5N5Yh .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upXGe5N5Yh .dragArea.row .form-group .form-control:hover,
.cid-upXGe5N5Yh .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upXGe5N5Yh .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upXGe5N5Yh .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upXGe5N5Yh .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upXGe5N5Yh .mbr-title {
  color: #ffffff;
}
.cid-upXGe5N5Yh .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upXGe5N5Yh .mbr-section-subtitle {
  color: #08323C;
}
.cid-upXGe5N5Yh .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upXGe5N5Yh .list {
  color: #08323C;
}
.cid-upXGe5N5Yh label {
  color: #08323C;
}
.cid-upXGe5N5Yh H3 {
  color: #000000;
}
.cid-upXGe5N5Yh P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upXI9uC6Yz {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upXI9uC6Yz H1 {
  text-align: center;
}
.cid-uDmDiVZoJ1 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmDiVZoJ1 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmDiVZoJ1 .video-block {
    width: 100% !important;
  }
}
.cid-upXI9uVvCf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upXI9v9GF8 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upXI9v9GF8 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upXI9v9GF8 .text-block {
  position: relative;
  z-index: 0;
}
.cid-upXI9v9GF8 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upXI9v9GF8 .box {
  left: 20%;
}
.cid-upXI9v9GF8 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upXI9v9GF8 .mbr-section-text,
.cid-upXI9v9GF8 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upXI9v9GF8 .text-box {
    display: none;
  }
  .cid-upXI9v9GF8 .mbr-section-title,
  .cid-upXI9v9GF8 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upXI9v9GF8 .box {
    display: none;
  }
  .cid-upXI9v9GF8 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upXI9v9GF8 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upXI9v9GF8 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upXI9v9GF8 .mbr-section-text {
  color: #c1c1c1;
}
.cid-upXI9v9GF8 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upXI9v9GF8 .mbr-section-text DIV {
  text-align: center;
}
.cid-upXI9vqSQv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upXI9vqSQv H1 {
  text-align: center;
}
.cid-upXI9vDWen {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upXI9vS0Q7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upXI9vS0Q7 h2 {
  text-align: left;
}
.cid-upXI9vS0Q7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upXI9vS0Q7 p {
  color: #767676;
  text-align: left;
}
.cid-upXI9vS0Q7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upXI9vS0Q7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upXI9vS0Q7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upXI9vS0Q7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upXI9vS0Q7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upXI9vS0Q7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upXI9vS0Q7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upXI9vS0Q7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upXI9vS0Q7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upXI9vS0Q7 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upXI9vS0Q7 P {
  color: #ffffff;
  text-align: left;
}
.cid-upXI9vS0Q7 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upXI9waTlF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upXI9waTlF H1 {
  color: #000000;
}
.cid-uxjzzcQePn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjzzcQePn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjzzcQePn .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjzzcQePn .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjzzcQePn .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjzzcQePn .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjzzcQePn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjzzcQePn .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjzzcQePn .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjzzcQePn .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjzzcQePn .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjzzcQePn .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-uxjzzcQePn .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjzzcQePn .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjzzcQePn .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjzzcQePn .mbr-text,
.cid-uxjzzcQePn .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upXI9wQGfR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upXI9wQGfR H1 {
  color: #000000;
}
.cid-uxjzzN2oij {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjzzN2oij .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjzzN2oij .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjzzN2oij .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjzzN2oij .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjzzN2oij .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjzzN2oij .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjzzN2oij .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjzzN2oij .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjzzN2oij .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjzzN2oij .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjzzN2oij .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-uxjzzN2oij .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjzzN2oij .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjzzN2oij .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjzzN2oij .mbr-text,
.cid-uxjzzN2oij .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upXI9xw0XW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upXI9xw0XW H1 {
  color: #000000;
}
.cid-uxjzAqWydL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjzAqWydL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjzAqWydL .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjzAqWydL .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjzAqWydL .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjzAqWydL .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjzAqWydL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjzAqWydL .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjzAqWydL .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjzAqWydL .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjzAqWydL .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjzAqWydL .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-uxjzAqWydL .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjzAqWydL .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjzAqWydL .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjzAqWydL .mbr-text,
.cid-uxjzAqWydL .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjzB54YIP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjzB54YIP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjzB54YIP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjzB54YIP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjzB54YIP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjzB54YIP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjzB54YIP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjzB54YIP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjzB54YIP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjzB54YIP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjzB54YIP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjzB54YIP .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-uxjzB54YIP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjzB54YIP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjzB54YIP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjzB54YIP .mbr-text,
.cid-uxjzB54YIP .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upXI9yGdje {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upXI9yGdje H1 {
  color: #000000;
}
.cid-uxjzDykUW4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjzDykUW4 h2 {
  text-align: left;
}
.cid-uxjzDykUW4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjzDykUW4 p {
  color: #767676;
  text-align: left;
}
.cid-uxjzDykUW4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjzDykUW4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjzDykUW4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjzDykUW4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjzDykUW4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjzDykUW4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjzDykUW4 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjzDykUW4 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjzDykUW4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjzDykUW4 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjzDykUW4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxjzCtgPwX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjzCtgPwX H1 {
  color: #000000;
}
.cid-upXI9zgVAY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upXI9zgVAY .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upXI9zgVAY .text-block {
  position: relative;
  z-index: 0;
}
.cid-upXI9zgVAY .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upXI9zgVAY .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upXI9zgVAY .box {
  right: 20%;
}
.cid-upXI9zgVAY .text-box {
  right: 0;
}
.cid-upXI9zgVAY .mbr-section-title,
.cid-upXI9zgVAY .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upXI9zgVAY .text-box {
    display: none;
  }
  .cid-upXI9zgVAY .mbr-section-title,
  .cid-upXI9zgVAY .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upXI9zgVAY .box {
    display: none;
  }
  .cid-upXI9zgVAY .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upXI9zgVAY .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upXI9zgVAY .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upXI9zgVAY .mbr-section-text {
  color: #c1c1c1;
}
.cid-upXI9zgVAY .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upXI9zgVAY .mbr-section-text DIV {
  text-align: center;
}
.cid-upXI9zylAW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upXI9zR7vU {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upXI9zR7vU h2 {
  text-align: left;
}
.cid-upXI9zR7vU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upXI9zR7vU p {
  color: #767676;
  text-align: left;
}
.cid-upXI9zR7vU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upXI9zR7vU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upXI9zR7vU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upXI9zR7vU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upXI9zR7vU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upXI9zR7vU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upXI9zR7vU .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upXI9zR7vU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upXI9zR7vU .card-img span {
    font-size: 40px !important;
  }
}
.cid-upXI9zR7vU .mbr-text {
  color: #232323;
}
.cid-upXI9AcDss {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upXI9AcDss .mbr-fallback-image.disabled {
  display: none;
}
.cid-upXI9AcDss .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upXI9AcDss .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upXI9AcDss .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upXI9AcDss .container {
    padding: 0 26px;
  }
}
.cid-upXI9AcDss .row {
  justify-content: center;
}
.cid-upXI9AcDss .item {
  margin-bottom: 32px;
}
.cid-upXI9AcDss .item a {
  display: block;
}
.cid-upXI9AcDss .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upXI9AcDss .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upXI9AcDss .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upXI9AcDss .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-upXI9AcDss .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upXI9AcDss .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upXI9AcDss .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-upXI9AcDss .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upXI9AcDss .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upXI9AcDss .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upXI9AcDss .item-title {
  color: #ffffff;
}
.cid-upXI9AcDss .mbr-date {
  color: #cacaca;
}
.cid-upXI9AcDss .mbr-desc {
  color: #cacaca;
}
.cid-upXI9AANBW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upXI9AANBW .mbr-fallback-image.disabled {
  display: none;
}
.cid-upXI9AANBW .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-upXI9AANBW .container {
    padding: 0 16px;
  }
}
.cid-upXI9AANBW .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upXI9AANBW .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upXI9AANBW .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upXI9AANBW .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upXI9AANBW .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upXI9AANBW .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upXI9AANBW .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upXI9AANBW .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upXI9AANBW .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upXI9AANBW .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-upXI9AANBW .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upXI9AANBW .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upXI9AANBW .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upXI9AANBW .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upXI9AANBW .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upXI9AANBW .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upXI9AANBW .dragArea.row .form-group .form-control:hover,
.cid-upXI9AANBW .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upXI9AANBW .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upXI9AANBW .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upXI9AANBW .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upXI9AANBW .mbr-title {
  color: #ffffff;
}
.cid-upXI9AANBW .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upXI9AANBW .mbr-section-subtitle {
  color: #08323C;
}
.cid-upXI9AANBW .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upXI9AANBW .list {
  color: #08323C;
}
.cid-upXI9AANBW label {
  color: #08323C;
}
.cid-upXI9AANBW H3 {
  color: #000000;
}
.cid-upXI9AANBW P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upXJF3eXmU {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upXJF3eXmU H1 {
  text-align: center;
}
.cid-uDmDlNzzzV {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmDlNzzzV .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmDlNzzzV .video-block {
    width: 100% !important;
  }
}
.cid-upXJF3B9vC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upXJF3TVLv {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upXJF3TVLv .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upXJF3TVLv .text-block {
  position: relative;
  z-index: 0;
}
.cid-upXJF3TVLv .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upXJF3TVLv .box {
  left: 20%;
}
.cid-upXJF3TVLv .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upXJF3TVLv .mbr-section-text,
.cid-upXJF3TVLv .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upXJF3TVLv .text-box {
    display: none;
  }
  .cid-upXJF3TVLv .mbr-section-title,
  .cid-upXJF3TVLv .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upXJF3TVLv .box {
    display: none;
  }
  .cid-upXJF3TVLv .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upXJF3TVLv .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upXJF3TVLv .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upXJF3TVLv .mbr-section-text {
  color: #c1c1c1;
}
.cid-upXJF3TVLv .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upXJF3TVLv .mbr-section-text DIV {
  text-align: center;
}
.cid-upXJF4hd0y {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upXJF4hd0y H1 {
  text-align: center;
}
.cid-upXJF4xwUc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upXJF4LClp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upXJF4LClp h2 {
  text-align: left;
}
.cid-upXJF4LClp h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upXJF4LClp p {
  color: #767676;
  text-align: left;
}
.cid-upXJF4LClp .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upXJF4LClp .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upXJF4LClp .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upXJF4LClp .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upXJF4LClp .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upXJF4LClp .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upXJF4LClp .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upXJF4LClp .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upXJF4LClp .card-img span {
    font-size: 40px !important;
  }
}
.cid-upXJF4LClp H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upXJF4LClp P {
  color: #ffffff;
  text-align: left;
}
.cid-upXJF4LClp H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upXJF59BSI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upXJF59BSI H1 {
  color: #000000;
}
.cid-uxjzMR4Tnr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjzMR4Tnr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjzMR4Tnr .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjzMR4Tnr .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjzMR4Tnr .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjzMR4Tnr .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjzMR4Tnr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjzMR4Tnr .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjzMR4Tnr .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjzMR4Tnr .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjzMR4Tnr .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjzMR4Tnr .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-uxjzMR4Tnr .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjzMR4Tnr .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjzMR4Tnr .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjzMR4Tnr .mbr-text,
.cid-uxjzMR4Tnr .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upXJF5S8O7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upXJF5S8O7 H1 {
  color: #000000;
}
.cid-uxjzNBikVx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjzNBikVx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjzNBikVx .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjzNBikVx .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjzNBikVx .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjzNBikVx .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjzNBikVx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjzNBikVx .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjzNBikVx .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjzNBikVx .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjzNBikVx .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjzNBikVx .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-uxjzNBikVx .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjzNBikVx .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjzNBikVx .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjzNBikVx .mbr-text,
.cid-uxjzNBikVx .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upXJF6BrKL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upXJF6BrKL H1 {
  color: #000000;
}
.cid-uxjzKyMAf9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjzKyMAf9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjzKyMAf9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjzKyMAf9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjzKyMAf9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjzKyMAf9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjzKyMAf9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjzKyMAf9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjzKyMAf9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjzKyMAf9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjzKyMAf9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjzKyMAf9 .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-uxjzKyMAf9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjzKyMAf9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjzKyMAf9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjzKyMAf9 .mbr-text,
.cid-uxjzKyMAf9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjzLuiZu7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjzLuiZu7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjzLuiZu7 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjzLuiZu7 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjzLuiZu7 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjzLuiZu7 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjzLuiZu7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjzLuiZu7 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjzLuiZu7 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjzLuiZu7 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjzLuiZu7 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjzLuiZu7 .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-uxjzLuiZu7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjzLuiZu7 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjzLuiZu7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjzLuiZu7 .mbr-text,
.cid-uxjzLuiZu7 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upXJF7WCM9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upXJF7WCM9 H1 {
  color: #000000;
}
.cid-uxjzPepPud {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjzPepPud h2 {
  text-align: left;
}
.cid-uxjzPepPud h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjzPepPud p {
  color: #767676;
  text-align: left;
}
.cid-uxjzPepPud .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjzPepPud .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjzPepPud .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjzPepPud .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjzPepPud .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjzPepPud .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjzPepPud .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjzPepPud .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjzPepPud .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjzPepPud .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjzPepPud .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxjzPXT1N5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjzPXT1N5 H1 {
  color: #000000;
}
.cid-upXJF8w6Ud {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upXJF8w6Ud .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upXJF8w6Ud .text-block {
  position: relative;
  z-index: 0;
}
.cid-upXJF8w6Ud .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upXJF8w6Ud .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upXJF8w6Ud .box {
  right: 20%;
}
.cid-upXJF8w6Ud .text-box {
  right: 0;
}
.cid-upXJF8w6Ud .mbr-section-title,
.cid-upXJF8w6Ud .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upXJF8w6Ud .text-box {
    display: none;
  }
  .cid-upXJF8w6Ud .mbr-section-title,
  .cid-upXJF8w6Ud .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upXJF8w6Ud .box {
    display: none;
  }
  .cid-upXJF8w6Ud .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upXJF8w6Ud .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upXJF8w6Ud .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upXJF8w6Ud .mbr-section-text {
  color: #c1c1c1;
}
.cid-upXJF8w6Ud .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upXJF8w6Ud .mbr-section-text DIV {
  text-align: center;
}
.cid-upXJF8SWvu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upXJF99yt4 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upXJF99yt4 h2 {
  text-align: left;
}
.cid-upXJF99yt4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upXJF99yt4 p {
  color: #767676;
  text-align: left;
}
.cid-upXJF99yt4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upXJF99yt4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upXJF99yt4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upXJF99yt4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upXJF99yt4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upXJF99yt4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upXJF99yt4 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upXJF99yt4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upXJF99yt4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upXJF99yt4 .mbr-text {
  color: #232323;
}
.cid-upXJF9tbgb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upXJF9tbgb .mbr-fallback-image.disabled {
  display: none;
}
.cid-upXJF9tbgb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upXJF9tbgb .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upXJF9tbgb .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upXJF9tbgb .container {
    padding: 0 26px;
  }
}
.cid-upXJF9tbgb .row {
  justify-content: center;
}
.cid-upXJF9tbgb .item {
  margin-bottom: 32px;
}
.cid-upXJF9tbgb .item a {
  display: block;
}
.cid-upXJF9tbgb .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upXJF9tbgb .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upXJF9tbgb .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upXJF9tbgb .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-upXJF9tbgb .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upXJF9tbgb .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upXJF9tbgb .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-upXJF9tbgb .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upXJF9tbgb .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upXJF9tbgb .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upXJF9tbgb .item-title {
  color: #ffffff;
}
.cid-upXJF9tbgb .mbr-date {
  color: #cacaca;
}
.cid-upXJF9tbgb .mbr-desc {
  color: #cacaca;
}
.cid-upXJF9OflO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upXJF9OflO .mbr-fallback-image.disabled {
  display: none;
}
.cid-upXJF9OflO .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-upXJF9OflO .container {
    padding: 0 16px;
  }
}
.cid-upXJF9OflO .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upXJF9OflO .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upXJF9OflO .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upXJF9OflO .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upXJF9OflO .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upXJF9OflO .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upXJF9OflO .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upXJF9OflO .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upXJF9OflO .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upXJF9OflO .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-upXJF9OflO .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upXJF9OflO .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upXJF9OflO .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upXJF9OflO .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upXJF9OflO .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upXJF9OflO .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upXJF9OflO .dragArea.row .form-group .form-control:hover,
.cid-upXJF9OflO .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upXJF9OflO .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upXJF9OflO .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upXJF9OflO .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upXJF9OflO .mbr-title {
  color: #ffffff;
}
.cid-upXJF9OflO .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upXJF9OflO .mbr-section-subtitle {
  color: #08323C;
}
.cid-upXJF9OflO .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upXJF9OflO .list {
  color: #08323C;
}
.cid-upXJF9OflO label {
  color: #08323C;
}
.cid-upXJF9OflO H3 {
  color: #000000;
}
.cid-upXJF9OflO P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upXJiOOtiQ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upXJiOOtiQ H1 {
  text-align: center;
}
.cid-uDmDsBLzC7 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmDsBLzC7 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmDsBLzC7 .video-block {
    width: 100% !important;
  }
}
.cid-upXJiP91FC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upXJiPo3fX {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upXJiPo3fX .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upXJiPo3fX .text-block {
  position: relative;
  z-index: 0;
}
.cid-upXJiPo3fX .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upXJiPo3fX .box {
  left: 20%;
}
.cid-upXJiPo3fX .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upXJiPo3fX .mbr-section-text,
.cid-upXJiPo3fX .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upXJiPo3fX .text-box {
    display: none;
  }
  .cid-upXJiPo3fX .mbr-section-title,
  .cid-upXJiPo3fX .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upXJiPo3fX .box {
    display: none;
  }
  .cid-upXJiPo3fX .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upXJiPo3fX .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upXJiPo3fX .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upXJiPo3fX .mbr-section-text {
  color: #c1c1c1;
}
.cid-upXJiPo3fX .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upXJiPo3fX .mbr-section-text DIV {
  text-align: center;
}
.cid-upXJiPFiBC {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upXJiPFiBC H1 {
  text-align: center;
}
.cid-upXJiPV203 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upXJiQ8MH1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upXJiQ8MH1 h2 {
  text-align: left;
}
.cid-upXJiQ8MH1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upXJiQ8MH1 p {
  color: #767676;
  text-align: left;
}
.cid-upXJiQ8MH1 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upXJiQ8MH1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upXJiQ8MH1 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upXJiQ8MH1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upXJiQ8MH1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upXJiQ8MH1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upXJiQ8MH1 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upXJiQ8MH1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upXJiQ8MH1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upXJiQ8MH1 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upXJiQ8MH1 P {
  color: #ffffff;
  text-align: left;
}
.cid-upXJiQ8MH1 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upXJiQsoPA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upXJiQsoPA H1 {
  color: #000000;
}
.cid-uxjzXBzBZo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjzXBzBZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjzXBzBZo .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjzXBzBZo .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjzXBzBZo .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjzXBzBZo .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjzXBzBZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjzXBzBZo .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjzXBzBZo .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjzXBzBZo .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjzXBzBZo .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjzXBzBZo .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-uxjzXBzBZo .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjzXBzBZo .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjzXBzBZo .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjzXBzBZo .mbr-text,
.cid-uxjzXBzBZo .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upXJiRfeKr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upXJiRfeKr H1 {
  color: #000000;
}
.cid-uxjzYlSBEZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjzYlSBEZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjzYlSBEZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjzYlSBEZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjzYlSBEZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjzYlSBEZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjzYlSBEZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjzYlSBEZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjzYlSBEZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjzYlSBEZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjzYlSBEZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjzYlSBEZ .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-uxjzYlSBEZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjzYlSBEZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjzYlSBEZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjzYlSBEZ .mbr-text,
.cid-uxjzYlSBEZ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upXJiRYBvD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upXJiRYBvD H1 {
  color: #000000;
}
.cid-uxjzYYj1lT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjzYYj1lT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjzYYj1lT .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjzYYj1lT .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjzYYj1lT .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjzYYj1lT .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjzYYj1lT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjzYYj1lT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjzYYj1lT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjzYYj1lT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjzYYj1lT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjzYYj1lT .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-uxjzYYj1lT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjzYYj1lT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjzYYj1lT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjzYYj1lT .mbr-text,
.cid-uxjzYYj1lT .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjzZzanWl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjzZzanWl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjzZzanWl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjzZzanWl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjzZzanWl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjzZzanWl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjzZzanWl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjzZzanWl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjzZzanWl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjzZzanWl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjzZzanWl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjzZzanWl .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-uxjzZzanWl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjzZzanWl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjzZzanWl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjzZzanWl .mbr-text,
.cid-uxjzZzanWl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upXJiTa8lL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upXJiTa8lL H1 {
  color: #000000;
}
.cid-uxjA1obGl1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjA1obGl1 h2 {
  text-align: left;
}
.cid-uxjA1obGl1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjA1obGl1 p {
  color: #767676;
  text-align: left;
}
.cid-uxjA1obGl1 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjA1obGl1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjA1obGl1 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjA1obGl1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjA1obGl1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjA1obGl1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjA1obGl1 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjA1obGl1 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjA1obGl1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjA1obGl1 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjA1obGl1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxjA20Uz0U {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjA20Uz0U H1 {
  color: #000000;
}
.cid-upXJiTLlQ2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upXJiTLlQ2 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upXJiTLlQ2 .text-block {
  position: relative;
  z-index: 0;
}
.cid-upXJiTLlQ2 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upXJiTLlQ2 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upXJiTLlQ2 .box {
  right: 20%;
}
.cid-upXJiTLlQ2 .text-box {
  right: 0;
}
.cid-upXJiTLlQ2 .mbr-section-title,
.cid-upXJiTLlQ2 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upXJiTLlQ2 .text-box {
    display: none;
  }
  .cid-upXJiTLlQ2 .mbr-section-title,
  .cid-upXJiTLlQ2 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upXJiTLlQ2 .box {
    display: none;
  }
  .cid-upXJiTLlQ2 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upXJiTLlQ2 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upXJiTLlQ2 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upXJiTLlQ2 .mbr-section-text {
  color: #c1c1c1;
}
.cid-upXJiTLlQ2 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upXJiTLlQ2 .mbr-section-text DIV {
  text-align: center;
}
.cid-upXJiU5hIf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upXJiUmT3y {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upXJiUmT3y h2 {
  text-align: left;
}
.cid-upXJiUmT3y h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upXJiUmT3y p {
  color: #767676;
  text-align: left;
}
.cid-upXJiUmT3y .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upXJiUmT3y .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upXJiUmT3y .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upXJiUmT3y .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upXJiUmT3y .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upXJiUmT3y .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upXJiUmT3y .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upXJiUmT3y .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upXJiUmT3y .card-img span {
    font-size: 40px !important;
  }
}
.cid-upXJiUmT3y .mbr-text {
  color: #232323;
}
.cid-upXJiUFaHz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upXJiUFaHz .mbr-fallback-image.disabled {
  display: none;
}
.cid-upXJiUFaHz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upXJiUFaHz .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upXJiUFaHz .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upXJiUFaHz .container {
    padding: 0 26px;
  }
}
.cid-upXJiUFaHz .row {
  justify-content: center;
}
.cid-upXJiUFaHz .item {
  margin-bottom: 32px;
}
.cid-upXJiUFaHz .item a {
  display: block;
}
.cid-upXJiUFaHz .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upXJiUFaHz .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upXJiUFaHz .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upXJiUFaHz .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-upXJiUFaHz .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upXJiUFaHz .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upXJiUFaHz .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-upXJiUFaHz .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upXJiUFaHz .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upXJiUFaHz .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upXJiUFaHz .item-title {
  color: #ffffff;
}
.cid-upXJiUFaHz .mbr-date {
  color: #cacaca;
}
.cid-upXJiUFaHz .mbr-desc {
  color: #cacaca;
}
.cid-upXJiUYdAg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upXJiUYdAg .mbr-fallback-image.disabled {
  display: none;
}
.cid-upXJiUYdAg .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-upXJiUYdAg .container {
    padding: 0 16px;
  }
}
.cid-upXJiUYdAg .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upXJiUYdAg .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upXJiUYdAg .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upXJiUYdAg .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upXJiUYdAg .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upXJiUYdAg .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upXJiUYdAg .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upXJiUYdAg .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upXJiUYdAg .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upXJiUYdAg .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-upXJiUYdAg .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upXJiUYdAg .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upXJiUYdAg .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upXJiUYdAg .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upXJiUYdAg .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upXJiUYdAg .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upXJiUYdAg .dragArea.row .form-group .form-control:hover,
.cid-upXJiUYdAg .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upXJiUYdAg .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upXJiUYdAg .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upXJiUYdAg .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upXJiUYdAg .mbr-title {
  color: #ffffff;
}
.cid-upXJiUYdAg .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upXJiUYdAg .mbr-section-subtitle {
  color: #08323C;
}
.cid-upXJiUYdAg .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upXJiUYdAg .list {
  color: #08323C;
}
.cid-upXJiUYdAg label {
  color: #08323C;
}
.cid-upXJiUYdAg H3 {
  color: #000000;
}
.cid-upXJiUYdAg P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upXP6yWKqa {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upXP6yWKqa H1 {
  text-align: center;
}
.cid-uDmDFopBoq {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmDFopBoq .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmDFopBoq .video-block {
    width: 100% !important;
  }
}
.cid-upXP6zmYUO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upXP6zJ0nd {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upXP6zJ0nd .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upXP6zJ0nd .text-block {
  position: relative;
  z-index: 0;
}
.cid-upXP6zJ0nd .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upXP6zJ0nd .box {
  left: 20%;
}
.cid-upXP6zJ0nd .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upXP6zJ0nd .mbr-section-text,
.cid-upXP6zJ0nd .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upXP6zJ0nd .text-box {
    display: none;
  }
  .cid-upXP6zJ0nd .mbr-section-title,
  .cid-upXP6zJ0nd .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upXP6zJ0nd .box {
    display: none;
  }
  .cid-upXP6zJ0nd .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upXP6zJ0nd .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upXP6zJ0nd .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upXP6zJ0nd .mbr-section-text {
  color: #c1c1c1;
}
.cid-upXP6zJ0nd .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upXP6zJ0nd .mbr-section-text DIV {
  text-align: center;
}
.cid-upXP6A0nvI {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upXP6A0nvI H1 {
  text-align: center;
}
.cid-upXP6AhsjU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upXP6AzjjE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upXP6AzjjE h2 {
  text-align: left;
}
.cid-upXP6AzjjE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upXP6AzjjE p {
  color: #767676;
  text-align: left;
}
.cid-upXP6AzjjE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upXP6AzjjE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upXP6AzjjE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upXP6AzjjE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upXP6AzjjE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upXP6AzjjE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upXP6AzjjE .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upXP6AzjjE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upXP6AzjjE .card-img span {
    font-size: 40px !important;
  }
}
.cid-upXP6AzjjE H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upXP6AzjjE P {
  color: #ffffff;
  text-align: left;
}
.cid-upXP6AzjjE H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upXP6AY76u {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upXP6AY76u H1 {
  color: #000000;
}
.cid-upYna19JxI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upYna19JxI .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYna19JxI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upYna19JxI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upYna19JxI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upYna19JxI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upYna19JxI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upYna19JxI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upYna19JxI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upYna19JxI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upYna19JxI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upYna19JxI .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-upYna19JxI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upYna19JxI .image-wrapper {
    padding: 1rem;
  }
}
.cid-upYna19JxI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upYna19JxI .mbr-text,
.cid-upYna19JxI .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upXP6BNzfp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upXP6BNzfp H1 {
  color: #000000;
}
.cid-uxjAY8nQsH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjAY8nQsH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjAY8nQsH .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjAY8nQsH .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjAY8nQsH .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjAY8nQsH .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjAY8nQsH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjAY8nQsH .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjAY8nQsH .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjAY8nQsH .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjAY8nQsH .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjAY8nQsH .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-uxjAY8nQsH .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjAY8nQsH .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjAY8nQsH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjAY8nQsH .mbr-text,
.cid-uxjAY8nQsH .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upXP6CE8k7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upXP6CE8k7 H1 {
  color: #000000;
}
.cid-uxjAYJwcaM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjAYJwcaM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjAYJwcaM .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjAYJwcaM .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjAYJwcaM .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjAYJwcaM .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjAYJwcaM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjAYJwcaM .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjAYJwcaM .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjAYJwcaM .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjAYJwcaM .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjAYJwcaM .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-uxjAYJwcaM .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjAYJwcaM .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjAYJwcaM .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjAYJwcaM .mbr-text,
.cid-uxjAYJwcaM .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjAZjWIRW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjAZjWIRW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjAZjWIRW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjAZjWIRW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjAZjWIRW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjAZjWIRW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjAZjWIRW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjAZjWIRW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjAZjWIRW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjAZjWIRW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjAZjWIRW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjAZjWIRW .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-uxjAZjWIRW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjAZjWIRW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjAZjWIRW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjAZjWIRW .mbr-text,
.cid-uxjAZjWIRW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upXP6DVZUS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upXP6DVZUS H1 {
  color: #000000;
}
.cid-uxjB0wMBDi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjB0wMBDi h2 {
  text-align: left;
}
.cid-uxjB0wMBDi h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjB0wMBDi p {
  color: #767676;
  text-align: left;
}
.cid-uxjB0wMBDi .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjB0wMBDi .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjB0wMBDi .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjB0wMBDi .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjB0wMBDi .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjB0wMBDi .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjB0wMBDi .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjB0wMBDi .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjB0wMBDi .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjB0wMBDi .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjB0wMBDi .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxjB3Q00QO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjB3Q00QO H1 {
  color: #000000;
}
.cid-upXP6EHZ8n {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upXP6EHZ8n .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upXP6EHZ8n .text-block {
  position: relative;
  z-index: 0;
}
.cid-upXP6EHZ8n .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upXP6EHZ8n .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upXP6EHZ8n .box {
  right: 20%;
}
.cid-upXP6EHZ8n .text-box {
  right: 0;
}
.cid-upXP6EHZ8n .mbr-section-title,
.cid-upXP6EHZ8n .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upXP6EHZ8n .text-box {
    display: none;
  }
  .cid-upXP6EHZ8n .mbr-section-title,
  .cid-upXP6EHZ8n .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upXP6EHZ8n .box {
    display: none;
  }
  .cid-upXP6EHZ8n .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upXP6EHZ8n .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upXP6EHZ8n .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upXP6EHZ8n .mbr-section-text {
  color: #c1c1c1;
}
.cid-upXP6EHZ8n .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upXP6EHZ8n .mbr-section-text DIV {
  text-align: center;
}
.cid-upXP6F56Yo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upXP6FpsFF {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upXP6FpsFF h2 {
  text-align: left;
}
.cid-upXP6FpsFF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upXP6FpsFF p {
  color: #767676;
  text-align: left;
}
.cid-upXP6FpsFF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upXP6FpsFF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upXP6FpsFF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upXP6FpsFF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upXP6FpsFF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upXP6FpsFF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upXP6FpsFF .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upXP6FpsFF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upXP6FpsFF .card-img span {
    font-size: 40px !important;
  }
}
.cid-upXP6FpsFF .mbr-text {
  color: #232323;
}
.cid-upXP6FLRGS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upXP6FLRGS .mbr-fallback-image.disabled {
  display: none;
}
.cid-upXP6FLRGS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upXP6FLRGS .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upXP6FLRGS .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upXP6FLRGS .container {
    padding: 0 26px;
  }
}
.cid-upXP6FLRGS .row {
  justify-content: center;
}
.cid-upXP6FLRGS .item {
  margin-bottom: 32px;
}
.cid-upXP6FLRGS .item a {
  display: block;
}
.cid-upXP6FLRGS .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upXP6FLRGS .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upXP6FLRGS .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upXP6FLRGS .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-upXP6FLRGS .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upXP6FLRGS .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upXP6FLRGS .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-upXP6FLRGS .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upXP6FLRGS .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upXP6FLRGS .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upXP6FLRGS .item-title {
  color: #ffffff;
}
.cid-upXP6FLRGS .mbr-date {
  color: #cacaca;
}
.cid-upXP6FLRGS .mbr-desc {
  color: #cacaca;
}
.cid-upXP6GasW5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upXP6GasW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upXP6GasW5 .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-upXP6GasW5 .container {
    padding: 0 16px;
  }
}
.cid-upXP6GasW5 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upXP6GasW5 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upXP6GasW5 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upXP6GasW5 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upXP6GasW5 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upXP6GasW5 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upXP6GasW5 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upXP6GasW5 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upXP6GasW5 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upXP6GasW5 .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-upXP6GasW5 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upXP6GasW5 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upXP6GasW5 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upXP6GasW5 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upXP6GasW5 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upXP6GasW5 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upXP6GasW5 .dragArea.row .form-group .form-control:hover,
.cid-upXP6GasW5 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upXP6GasW5 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upXP6GasW5 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upXP6GasW5 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upXP6GasW5 .mbr-title {
  color: #ffffff;
}
.cid-upXP6GasW5 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upXP6GasW5 .mbr-section-subtitle {
  color: #08323C;
}
.cid-upXP6GasW5 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upXP6GasW5 .list {
  color: #08323C;
}
.cid-upXP6GasW5 label {
  color: #08323C;
}
.cid-upXP6GasW5 H3 {
  color: #000000;
}
.cid-upXP6GasW5 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upY5JOV2KP {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upY5JOV2KP H1 {
  text-align: center;
}
.cid-uDmDHAGF5Z {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmDHAGF5Z .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmDHAGF5Z .video-block {
    width: 100% !important;
  }
}
.cid-upY5JPhXDK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upY5JPCgIV {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upY5JPCgIV .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upY5JPCgIV .text-block {
  position: relative;
  z-index: 0;
}
.cid-upY5JPCgIV .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upY5JPCgIV .box {
  left: 20%;
}
.cid-upY5JPCgIV .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upY5JPCgIV .mbr-section-text,
.cid-upY5JPCgIV .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upY5JPCgIV .text-box {
    display: none;
  }
  .cid-upY5JPCgIV .mbr-section-title,
  .cid-upY5JPCgIV .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upY5JPCgIV .box {
    display: none;
  }
  .cid-upY5JPCgIV .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upY5JPCgIV .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upY5JPCgIV .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upY5JPCgIV .mbr-section-text {
  color: #c1c1c1;
}
.cid-upY5JPCgIV .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upY5JPCgIV .mbr-section-text DIV {
  text-align: center;
}
.cid-upY5JPW99B {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upY5JPW99B H1 {
  text-align: center;
}
.cid-upY5JQdYc9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upY5JQt93r {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upY5JQt93r h2 {
  text-align: left;
}
.cid-upY5JQt93r h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upY5JQt93r p {
  color: #767676;
  text-align: left;
}
.cid-upY5JQt93r .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upY5JQt93r .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upY5JQt93r .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upY5JQt93r .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upY5JQt93r .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upY5JQt93r .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upY5JQt93r .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upY5JQt93r .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upY5JQt93r .card-img span {
    font-size: 40px !important;
  }
}
.cid-upY5JQt93r H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upY5JQt93r P {
  color: #ffffff;
  text-align: left;
}
.cid-upY5JQt93r H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upY5JQR1G1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upY5JQR1G1 H1 {
  color: #000000;
}
.cid-uxjBbM50pS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjBbM50pS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjBbM50pS .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjBbM50pS .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjBbM50pS .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjBbM50pS .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjBbM50pS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjBbM50pS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjBbM50pS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjBbM50pS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjBbM50pS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjBbM50pS .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-uxjBbM50pS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjBbM50pS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjBbM50pS .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjBbM50pS .mbr-text,
.cid-uxjBbM50pS .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upY5JRBbpX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upY5JRBbpX H1 {
  color: #000000;
}
.cid-uxjBctWI7Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjBctWI7Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjBctWI7Q .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjBctWI7Q .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjBctWI7Q .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjBctWI7Q .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjBctWI7Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjBctWI7Q .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjBctWI7Q .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjBctWI7Q .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjBctWI7Q .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjBctWI7Q .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-uxjBctWI7Q .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjBctWI7Q .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjBctWI7Q .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjBctWI7Q .mbr-text,
.cid-uxjBctWI7Q .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upY5JSqGT5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upY5JSqGT5 H1 {
  color: #000000;
}
.cid-uxjBde9tCE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjBde9tCE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjBde9tCE .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjBde9tCE .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjBde9tCE .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjBde9tCE .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjBde9tCE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjBde9tCE .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjBde9tCE .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjBde9tCE .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjBde9tCE .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjBde9tCE .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-uxjBde9tCE .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjBde9tCE .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjBde9tCE .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjBde9tCE .mbr-text,
.cid-uxjBde9tCE .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjBe8QWPj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjBe8QWPj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjBe8QWPj .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjBe8QWPj .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjBe8QWPj .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjBe8QWPj .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjBe8QWPj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjBe8QWPj .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjBe8QWPj .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjBe8QWPj .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjBe8QWPj .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjBe8QWPj .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-uxjBe8QWPj .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjBe8QWPj .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjBe8QWPj .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjBe8QWPj .mbr-text,
.cid-uxjBe8QWPj .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upY5JTKajZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upY5JTKajZ H1 {
  color: #000000;
}
.cid-uxjBfIX82C {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjBfIX82C h2 {
  text-align: left;
}
.cid-uxjBfIX82C h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjBfIX82C p {
  color: #767676;
  text-align: left;
}
.cid-uxjBfIX82C .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjBfIX82C .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjBfIX82C .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjBfIX82C .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjBfIX82C .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjBfIX82C .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjBfIX82C .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjBfIX82C .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjBfIX82C .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjBfIX82C .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjBfIX82C .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxjBgxhjqZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjBgxhjqZ H1 {
  color: #000000;
}
.cid-upY5JUrJ97 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upY5JUrJ97 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upY5JUrJ97 .text-block {
  position: relative;
  z-index: 0;
}
.cid-upY5JUrJ97 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upY5JUrJ97 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upY5JUrJ97 .box {
  right: 20%;
}
.cid-upY5JUrJ97 .text-box {
  right: 0;
}
.cid-upY5JUrJ97 .mbr-section-title,
.cid-upY5JUrJ97 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upY5JUrJ97 .text-box {
    display: none;
  }
  .cid-upY5JUrJ97 .mbr-section-title,
  .cid-upY5JUrJ97 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upY5JUrJ97 .box {
    display: none;
  }
  .cid-upY5JUrJ97 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upY5JUrJ97 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upY5JUrJ97 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upY5JUrJ97 .mbr-section-text {
  color: #c1c1c1;
}
.cid-upY5JUrJ97 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upY5JUrJ97 .mbr-section-text DIV {
  text-align: center;
}
.cid-upY5JUNcSg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upY5JV87qM {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upY5JV87qM h2 {
  text-align: left;
}
.cid-upY5JV87qM h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upY5JV87qM p {
  color: #767676;
  text-align: left;
}
.cid-upY5JV87qM .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upY5JV87qM .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upY5JV87qM .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upY5JV87qM .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upY5JV87qM .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upY5JV87qM .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upY5JV87qM .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upY5JV87qM .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upY5JV87qM .card-img span {
    font-size: 40px !important;
  }
}
.cid-upY5JV87qM .mbr-text {
  color: #232323;
}
.cid-upY5JVuMdN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upY5JVuMdN .mbr-fallback-image.disabled {
  display: none;
}
.cid-upY5JVuMdN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upY5JVuMdN .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upY5JVuMdN .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upY5JVuMdN .container {
    padding: 0 26px;
  }
}
.cid-upY5JVuMdN .row {
  justify-content: center;
}
.cid-upY5JVuMdN .item {
  margin-bottom: 32px;
}
.cid-upY5JVuMdN .item a {
  display: block;
}
.cid-upY5JVuMdN .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upY5JVuMdN .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upY5JVuMdN .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upY5JVuMdN .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-upY5JVuMdN .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upY5JVuMdN .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upY5JVuMdN .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-upY5JVuMdN .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upY5JVuMdN .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upY5JVuMdN .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upY5JVuMdN .item-title {
  color: #ffffff;
}
.cid-upY5JVuMdN .mbr-date {
  color: #cacaca;
}
.cid-upY5JVuMdN .mbr-desc {
  color: #cacaca;
}
.cid-upY5JVUIQD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upY5JVUIQD .mbr-fallback-image.disabled {
  display: none;
}
.cid-upY5JVUIQD .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-upY5JVUIQD .container {
    padding: 0 16px;
  }
}
.cid-upY5JVUIQD .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upY5JVUIQD .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upY5JVUIQD .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upY5JVUIQD .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upY5JVUIQD .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upY5JVUIQD .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upY5JVUIQD .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upY5JVUIQD .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upY5JVUIQD .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upY5JVUIQD .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-upY5JVUIQD .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upY5JVUIQD .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upY5JVUIQD .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upY5JVUIQD .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upY5JVUIQD .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upY5JVUIQD .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upY5JVUIQD .dragArea.row .form-group .form-control:hover,
.cid-upY5JVUIQD .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upY5JVUIQD .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upY5JVUIQD .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upY5JVUIQD .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upY5JVUIQD .mbr-title {
  color: #ffffff;
}
.cid-upY5JVUIQD .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upY5JVUIQD .mbr-section-subtitle {
  color: #08323C;
}
.cid-upY5JVUIQD .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upY5JVUIQD .list {
  color: #08323C;
}
.cid-upY5JVUIQD label {
  color: #08323C;
}
.cid-upY5JVUIQD H3 {
  color: #000000;
}
.cid-upY5JVUIQD P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upY78dXWTX {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upY78dXWTX H1 {
  text-align: center;
}
.cid-uDmDKCcUuw {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmDKCcUuw .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmDKCcUuw .video-block {
    width: 100% !important;
  }
}
.cid-upY78eq0rN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upY78eLdox {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upY78eLdox .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upY78eLdox .text-block {
  position: relative;
  z-index: 0;
}
.cid-upY78eLdox .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upY78eLdox .box {
  left: 20%;
}
.cid-upY78eLdox .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upY78eLdox .mbr-section-text,
.cid-upY78eLdox .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upY78eLdox .text-box {
    display: none;
  }
  .cid-upY78eLdox .mbr-section-title,
  .cid-upY78eLdox .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upY78eLdox .box {
    display: none;
  }
  .cid-upY78eLdox .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upY78eLdox .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upY78eLdox .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upY78eLdox .mbr-section-text {
  color: #c1c1c1;
}
.cid-upY78eLdox .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upY78eLdox .mbr-section-text DIV {
  text-align: center;
}
.cid-upY78f6hY2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upY78f6hY2 H1 {
  text-align: center;
}
.cid-upY78fp5cs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upY78fHNoq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upY78fHNoq h2 {
  text-align: left;
}
.cid-upY78fHNoq h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upY78fHNoq p {
  color: #767676;
  text-align: left;
}
.cid-upY78fHNoq .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upY78fHNoq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upY78fHNoq .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upY78fHNoq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upY78fHNoq .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upY78fHNoq .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upY78fHNoq .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upY78fHNoq .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upY78fHNoq .card-img span {
    font-size: 40px !important;
  }
}
.cid-upY78fHNoq H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upY78fHNoq P {
  color: #ffffff;
  text-align: left;
}
.cid-upY78fHNoq H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upY78g60iF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upY78g60iF H1 {
  color: #000000;
}
.cid-uxjBHbGIye {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjBHbGIye .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjBHbGIye .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjBHbGIye .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjBHbGIye .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjBHbGIye .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjBHbGIye .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjBHbGIye .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjBHbGIye .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjBHbGIye .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjBHbGIye .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjBHbGIye .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-uxjBHbGIye .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjBHbGIye .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjBHbGIye .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjBHbGIye .mbr-text,
.cid-uxjBHbGIye .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upY78gSjU7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upY78gSjU7 H1 {
  color: #000000;
}
.cid-uxjBHXpqo6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjBHXpqo6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjBHXpqo6 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjBHXpqo6 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjBHXpqo6 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjBHXpqo6 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjBHXpqo6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjBHXpqo6 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjBHXpqo6 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjBHXpqo6 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjBHXpqo6 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjBHXpqo6 .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-uxjBHXpqo6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjBHXpqo6 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjBHXpqo6 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjBHXpqo6 .mbr-text,
.cid-uxjBHXpqo6 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upY78hOAYI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upY78hOAYI H1 {
  color: #000000;
}
.cid-uxjBIBtdCk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjBIBtdCk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjBIBtdCk .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjBIBtdCk .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjBIBtdCk .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjBIBtdCk .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjBIBtdCk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjBIBtdCk .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjBIBtdCk .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjBIBtdCk .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjBIBtdCk .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjBIBtdCk .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-uxjBIBtdCk .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjBIBtdCk .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjBIBtdCk .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjBIBtdCk .mbr-text,
.cid-uxjBIBtdCk .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjBJchYBM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjBJchYBM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjBJchYBM .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjBJchYBM .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjBJchYBM .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjBJchYBM .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjBJchYBM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjBJchYBM .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjBJchYBM .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjBJchYBM .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjBJchYBM .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjBJchYBM .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-uxjBJchYBM .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjBJchYBM .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjBJchYBM .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjBJchYBM .mbr-text,
.cid-uxjBJchYBM .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upY78jfu4B {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upY78jfu4B H1 {
  color: #000000;
}
.cid-uxjBKzYJju {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjBKzYJju h2 {
  text-align: left;
}
.cid-uxjBKzYJju h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjBKzYJju p {
  color: #767676;
  text-align: left;
}
.cid-uxjBKzYJju .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjBKzYJju .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjBKzYJju .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjBKzYJju .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjBKzYJju .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjBKzYJju .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjBKzYJju .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjBKzYJju .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjBKzYJju .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjBKzYJju .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjBKzYJju .card-img span {
    font-size: 40px !important;
  }
}
.cid-upY78k35JS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upY78k35JS .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upY78k35JS .text-block {
  position: relative;
  z-index: 0;
}
.cid-upY78k35JS .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upY78k35JS .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upY78k35JS .box {
  right: 20%;
}
.cid-upY78k35JS .text-box {
  right: 0;
}
.cid-upY78k35JS .mbr-section-title,
.cid-upY78k35JS .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upY78k35JS .text-box {
    display: none;
  }
  .cid-upY78k35JS .mbr-section-title,
  .cid-upY78k35JS .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upY78k35JS .box {
    display: none;
  }
  .cid-upY78k35JS .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upY78k35JS .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upY78k35JS .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upY78k35JS .mbr-section-text {
  color: #c1c1c1;
}
.cid-upY78k35JS .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upY78k35JS .mbr-section-text DIV {
  text-align: center;
}
.cid-upY78kps3w {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upY78kKvTE {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upY78kKvTE h2 {
  text-align: left;
}
.cid-upY78kKvTE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upY78kKvTE p {
  color: #767676;
  text-align: left;
}
.cid-upY78kKvTE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upY78kKvTE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upY78kKvTE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upY78kKvTE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upY78kKvTE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upY78kKvTE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upY78kKvTE .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upY78kKvTE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upY78kKvTE .card-img span {
    font-size: 40px !important;
  }
}
.cid-upY78kKvTE .mbr-text {
  color: #232323;
}
.cid-upY78l8cPz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upY78l8cPz .mbr-fallback-image.disabled {
  display: none;
}
.cid-upY78l8cPz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upY78l8cPz .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upY78l8cPz .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upY78l8cPz .container {
    padding: 0 26px;
  }
}
.cid-upY78l8cPz .row {
  justify-content: center;
}
.cid-upY78l8cPz .item {
  margin-bottom: 32px;
}
.cid-upY78l8cPz .item a {
  display: block;
}
.cid-upY78l8cPz .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upY78l8cPz .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upY78l8cPz .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upY78l8cPz .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-upY78l8cPz .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upY78l8cPz .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upY78l8cPz .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-upY78l8cPz .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upY78l8cPz .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upY78l8cPz .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upY78l8cPz .item-title {
  color: #ffffff;
}
.cid-upY78l8cPz .mbr-date {
  color: #cacaca;
}
.cid-upY78l8cPz .mbr-desc {
  color: #cacaca;
}
.cid-upY78lwxId {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upY78lwxId .mbr-fallback-image.disabled {
  display: none;
}
.cid-upY78lwxId .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-upY78lwxId .container {
    padding: 0 16px;
  }
}
.cid-upY78lwxId .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upY78lwxId .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upY78lwxId .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upY78lwxId .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upY78lwxId .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upY78lwxId .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upY78lwxId .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upY78lwxId .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upY78lwxId .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upY78lwxId .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-upY78lwxId .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upY78lwxId .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upY78lwxId .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upY78lwxId .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upY78lwxId .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upY78lwxId .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upY78lwxId .dragArea.row .form-group .form-control:hover,
.cid-upY78lwxId .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upY78lwxId .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upY78lwxId .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upY78lwxId .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upY78lwxId .mbr-title {
  color: #ffffff;
}
.cid-upY78lwxId .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upY78lwxId .mbr-section-subtitle {
  color: #08323C;
}
.cid-upY78lwxId .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upY78lwxId .list {
  color: #08323C;
}
.cid-upY78lwxId label {
  color: #08323C;
}
.cid-upY78lwxId H3 {
  color: #000000;
}
.cid-upY78lwxId P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upY8fxGaLw {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upY8fxGaLw H1 {
  text-align: center;
}
.cid-uDmDPuA4bV {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmDPuA4bV .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmDPuA4bV .video-block {
    width: 100% !important;
  }
}
.cid-upY8fy8Vod {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upY8fysjsv {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upY8fysjsv .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upY8fysjsv .text-block {
  position: relative;
  z-index: 0;
}
.cid-upY8fysjsv .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upY8fysjsv .box {
  left: 20%;
}
.cid-upY8fysjsv .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upY8fysjsv .mbr-section-text,
.cid-upY8fysjsv .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upY8fysjsv .text-box {
    display: none;
  }
  .cid-upY8fysjsv .mbr-section-title,
  .cid-upY8fysjsv .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upY8fysjsv .box {
    display: none;
  }
  .cid-upY8fysjsv .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upY8fysjsv .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upY8fysjsv .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upY8fysjsv .mbr-section-text {
  color: #c1c1c1;
}
.cid-upY8fysjsv .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upY8fysjsv .mbr-section-text DIV {
  text-align: center;
}
.cid-upY8fyM92c {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upY8fyM92c H1 {
  text-align: center;
}
.cid-upY8fz6WKL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upY8fzowFH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upY8fzowFH h2 {
  text-align: left;
}
.cid-upY8fzowFH h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upY8fzowFH p {
  color: #767676;
  text-align: left;
}
.cid-upY8fzowFH .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upY8fzowFH .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upY8fzowFH .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upY8fzowFH .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upY8fzowFH .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upY8fzowFH .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upY8fzowFH .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upY8fzowFH .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upY8fzowFH .card-img span {
    font-size: 40px !important;
  }
}
.cid-upY8fzowFH H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upY8fzowFH P {
  color: #ffffff;
  text-align: left;
}
.cid-upY8fzowFH H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upY8fzNizP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upY8fzNizP H1 {
  color: #000000;
}
.cid-uxjBQwrwhD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjBQwrwhD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjBQwrwhD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjBQwrwhD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjBQwrwhD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjBQwrwhD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjBQwrwhD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjBQwrwhD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjBQwrwhD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjBQwrwhD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjBQwrwhD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjBQwrwhD .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-uxjBQwrwhD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjBQwrwhD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjBQwrwhD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjBQwrwhD .mbr-text,
.cid-uxjBQwrwhD .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upY8fAEhkS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upY8fAEhkS H1 {
  color: #000000;
}
.cid-uxjBR7I4kM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjBR7I4kM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjBR7I4kM .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjBR7I4kM .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjBR7I4kM .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjBR7I4kM .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjBR7I4kM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjBR7I4kM .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjBR7I4kM .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjBR7I4kM .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjBR7I4kM .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjBR7I4kM .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-uxjBR7I4kM .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjBR7I4kM .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjBR7I4kM .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjBR7I4kM .mbr-text,
.cid-uxjBR7I4kM .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upY8fBzhuj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upY8fBzhuj H1 {
  color: #000000;
}
.cid-uxjBRPnMcH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjBRPnMcH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjBRPnMcH .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjBRPnMcH .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjBRPnMcH .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjBRPnMcH .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjBRPnMcH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjBRPnMcH .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjBRPnMcH .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjBRPnMcH .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjBRPnMcH .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjBRPnMcH .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-uxjBRPnMcH .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjBRPnMcH .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjBRPnMcH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjBRPnMcH .mbr-text,
.cid-uxjBRPnMcH .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjBSq1bLK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjBSq1bLK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjBSq1bLK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjBSq1bLK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjBSq1bLK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjBSq1bLK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjBSq1bLK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjBSq1bLK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjBSq1bLK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjBSq1bLK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjBSq1bLK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjBSq1bLK .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-uxjBSq1bLK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjBSq1bLK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjBSq1bLK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjBSq1bLK .mbr-text,
.cid-uxjBSq1bLK .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upY8fD4MkY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upY8fD4MkY H1 {
  color: #000000;
}
.cid-uxjBTISyxX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjBTISyxX h2 {
  text-align: left;
}
.cid-uxjBTISyxX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjBTISyxX p {
  color: #767676;
  text-align: left;
}
.cid-uxjBTISyxX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjBTISyxX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjBTISyxX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjBTISyxX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjBTISyxX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjBTISyxX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjBTISyxX .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjBTISyxX .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjBTISyxX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjBTISyxX .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjBTISyxX .card-img span {
    font-size: 40px !important;
  }
}
.cid-upY8fDPzKF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upY8fDPzKF .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upY8fDPzKF .text-block {
  position: relative;
  z-index: 0;
}
.cid-upY8fDPzKF .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upY8fDPzKF .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upY8fDPzKF .box {
  right: 20%;
}
.cid-upY8fDPzKF .text-box {
  right: 0;
}
.cid-upY8fDPzKF .mbr-section-title,
.cid-upY8fDPzKF .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upY8fDPzKF .text-box {
    display: none;
  }
  .cid-upY8fDPzKF .mbr-section-title,
  .cid-upY8fDPzKF .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upY8fDPzKF .box {
    display: none;
  }
  .cid-upY8fDPzKF .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upY8fDPzKF .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upY8fDPzKF .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upY8fDPzKF .mbr-section-text {
  color: #c1c1c1;
}
.cid-upY8fDPzKF .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upY8fDPzKF .mbr-section-text DIV {
  text-align: center;
}
.cid-upY8fEdTaZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upY8fEz596 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upY8fEz596 h2 {
  text-align: left;
}
.cid-upY8fEz596 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upY8fEz596 p {
  color: #767676;
  text-align: left;
}
.cid-upY8fEz596 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upY8fEz596 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upY8fEz596 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upY8fEz596 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upY8fEz596 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upY8fEz596 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upY8fEz596 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upY8fEz596 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upY8fEz596 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upY8fEz596 .mbr-text {
  color: #232323;
}
.cid-upY8fF5mDw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upY8fF5mDw .mbr-fallback-image.disabled {
  display: none;
}
.cid-upY8fF5mDw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upY8fF5mDw .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upY8fF5mDw .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upY8fF5mDw .container {
    padding: 0 26px;
  }
}
.cid-upY8fF5mDw .row {
  justify-content: center;
}
.cid-upY8fF5mDw .item {
  margin-bottom: 32px;
}
.cid-upY8fF5mDw .item a {
  display: block;
}
.cid-upY8fF5mDw .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upY8fF5mDw .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upY8fF5mDw .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upY8fF5mDw .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-upY8fF5mDw .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upY8fF5mDw .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upY8fF5mDw .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-upY8fF5mDw .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upY8fF5mDw .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upY8fF5mDw .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upY8fF5mDw .item-title {
  color: #ffffff;
}
.cid-upY8fF5mDw .mbr-date {
  color: #cacaca;
}
.cid-upY8fF5mDw .mbr-desc {
  color: #cacaca;
}
.cid-upY8fFuM9R {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upY8fFuM9R .mbr-fallback-image.disabled {
  display: none;
}
.cid-upY8fFuM9R .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-upY8fFuM9R .container {
    padding: 0 16px;
  }
}
.cid-upY8fFuM9R .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upY8fFuM9R .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upY8fFuM9R .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upY8fFuM9R .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upY8fFuM9R .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upY8fFuM9R .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upY8fFuM9R .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upY8fFuM9R .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upY8fFuM9R .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upY8fFuM9R .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-upY8fFuM9R .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upY8fFuM9R .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upY8fFuM9R .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upY8fFuM9R .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upY8fFuM9R .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upY8fFuM9R .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upY8fFuM9R .dragArea.row .form-group .form-control:hover,
.cid-upY8fFuM9R .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upY8fFuM9R .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upY8fFuM9R .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upY8fFuM9R .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upY8fFuM9R .mbr-title {
  color: #ffffff;
}
.cid-upY8fFuM9R .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upY8fFuM9R .mbr-section-subtitle {
  color: #08323C;
}
.cid-upY8fFuM9R .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upY8fFuM9R .list {
  color: #08323C;
}
.cid-upY8fFuM9R label {
  color: #08323C;
}
.cid-upY8fFuM9R H3 {
  color: #000000;
}
.cid-upY8fFuM9R P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upY9dl29oU {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upY9dl29oU H1 {
  text-align: center;
}
.cid-uDmDRUXxRM {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmDRUXxRM .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmDRUXxRM .video-block {
    width: 100% !important;
  }
}
.cid-upY9dlrvhn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upY9dlOO7N {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upY9dlOO7N .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upY9dlOO7N .text-block {
  position: relative;
  z-index: 0;
}
.cid-upY9dlOO7N .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upY9dlOO7N .box {
  left: 20%;
}
.cid-upY9dlOO7N .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upY9dlOO7N .mbr-section-text,
.cid-upY9dlOO7N .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upY9dlOO7N .text-box {
    display: none;
  }
  .cid-upY9dlOO7N .mbr-section-title,
  .cid-upY9dlOO7N .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upY9dlOO7N .box {
    display: none;
  }
  .cid-upY9dlOO7N .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upY9dlOO7N .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upY9dlOO7N .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upY9dlOO7N .mbr-section-text {
  color: #c1c1c1;
}
.cid-upY9dlOO7N .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upY9dlOO7N .mbr-section-text DIV {
  text-align: center;
}
.cid-upY9dm9ifC {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upY9dm9ifC H1 {
  text-align: center;
}
.cid-upY9dmtZAH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upY9dmO0A9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upY9dmO0A9 h2 {
  text-align: left;
}
.cid-upY9dmO0A9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upY9dmO0A9 p {
  color: #767676;
  text-align: left;
}
.cid-upY9dmO0A9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upY9dmO0A9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upY9dmO0A9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upY9dmO0A9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upY9dmO0A9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upY9dmO0A9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upY9dmO0A9 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upY9dmO0A9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upY9dmO0A9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upY9dmO0A9 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upY9dmO0A9 P {
  color: #ffffff;
  text-align: left;
}
.cid-upY9dmO0A9 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upY9dnc53c {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upY9dnc53c H1 {
  color: #000000;
}
.cid-uxjC6l4pNM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjC6l4pNM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjC6l4pNM .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjC6l4pNM .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjC6l4pNM .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjC6l4pNM .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjC6l4pNM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjC6l4pNM .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjC6l4pNM .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjC6l4pNM .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjC6l4pNM .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjC6l4pNM .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-uxjC6l4pNM .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjC6l4pNM .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjC6l4pNM .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjC6l4pNM .mbr-text,
.cid-uxjC6l4pNM .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upY9do0vYF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upY9do0vYF H1 {
  color: #000000;
}
.cid-uxjC70BGFw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjC70BGFw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjC70BGFw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjC70BGFw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjC70BGFw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjC70BGFw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjC70BGFw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjC70BGFw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjC70BGFw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjC70BGFw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjC70BGFw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjC70BGFw .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-uxjC70BGFw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjC70BGFw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjC70BGFw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjC70BGFw .mbr-text,
.cid-uxjC70BGFw .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upY9doTaNk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upY9doTaNk H1 {
  color: #000000;
}
.cid-uxjC7DB7y0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjC7DB7y0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjC7DB7y0 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjC7DB7y0 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjC7DB7y0 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjC7DB7y0 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjC7DB7y0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjC7DB7y0 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjC7DB7y0 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjC7DB7y0 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjC7DB7y0 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjC7DB7y0 .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-uxjC7DB7y0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjC7DB7y0 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjC7DB7y0 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjC7DB7y0 .mbr-text,
.cid-uxjC7DB7y0 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjC8izi2E {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjC8izi2E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjC8izi2E .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjC8izi2E .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjC8izi2E .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjC8izi2E .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjC8izi2E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjC8izi2E .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjC8izi2E .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjC8izi2E .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjC8izi2E .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjC8izi2E .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-uxjC8izi2E .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjC8izi2E .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjC8izi2E .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjC8izi2E .mbr-text,
.cid-uxjC8izi2E .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upY9dqkEFN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upY9dqkEFN H1 {
  color: #000000;
}
.cid-uxjCa59FYY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjCa59FYY h2 {
  text-align: left;
}
.cid-uxjCa59FYY h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjCa59FYY p {
  color: #767676;
  text-align: left;
}
.cid-uxjCa59FYY .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjCa59FYY .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjCa59FYY .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjCa59FYY .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjCa59FYY .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjCa59FYY .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjCa59FYY .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjCa59FYY .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjCa59FYY .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjCa59FYY .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjCa59FYY .card-img span {
    font-size: 40px !important;
  }
}
.cid-upY9dr4Flx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upY9dr4Flx .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upY9dr4Flx .text-block {
  position: relative;
  z-index: 0;
}
.cid-upY9dr4Flx .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upY9dr4Flx .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upY9dr4Flx .box {
  right: 20%;
}
.cid-upY9dr4Flx .text-box {
  right: 0;
}
.cid-upY9dr4Flx .mbr-section-title,
.cid-upY9dr4Flx .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upY9dr4Flx .text-box {
    display: none;
  }
  .cid-upY9dr4Flx .mbr-section-title,
  .cid-upY9dr4Flx .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upY9dr4Flx .box {
    display: none;
  }
  .cid-upY9dr4Flx .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upY9dr4Flx .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upY9dr4Flx .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upY9dr4Flx .mbr-section-text {
  color: #c1c1c1;
}
.cid-upY9dr4Flx .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upY9dr4Flx .mbr-section-text DIV {
  text-align: center;
}
.cid-upY9druO5H {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upY9drSCns {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upY9drSCns h2 {
  text-align: left;
}
.cid-upY9drSCns h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upY9drSCns p {
  color: #767676;
  text-align: left;
}
.cid-upY9drSCns .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upY9drSCns .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upY9drSCns .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upY9drSCns .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upY9drSCns .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upY9drSCns .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upY9drSCns .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upY9drSCns .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upY9drSCns .card-img span {
    font-size: 40px !important;
  }
}
.cid-upY9drSCns .mbr-text {
  color: #232323;
}
.cid-upY9dsjPlh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upY9dsjPlh .mbr-fallback-image.disabled {
  display: none;
}
.cid-upY9dsjPlh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upY9dsjPlh .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upY9dsjPlh .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upY9dsjPlh .container {
    padding: 0 26px;
  }
}
.cid-upY9dsjPlh .row {
  justify-content: center;
}
.cid-upY9dsjPlh .item {
  margin-bottom: 32px;
}
.cid-upY9dsjPlh .item a {
  display: block;
}
.cid-upY9dsjPlh .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upY9dsjPlh .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upY9dsjPlh .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upY9dsjPlh .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-upY9dsjPlh .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upY9dsjPlh .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upY9dsjPlh .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-upY9dsjPlh .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upY9dsjPlh .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upY9dsjPlh .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upY9dsjPlh .item-title {
  color: #ffffff;
}
.cid-upY9dsjPlh .mbr-date {
  color: #cacaca;
}
.cid-upY9dsjPlh .mbr-desc {
  color: #cacaca;
}
.cid-upY9dsLYvR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upY9dsLYvR .mbr-fallback-image.disabled {
  display: none;
}
.cid-upY9dsLYvR .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-upY9dsLYvR .container {
    padding: 0 16px;
  }
}
.cid-upY9dsLYvR .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upY9dsLYvR .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upY9dsLYvR .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upY9dsLYvR .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upY9dsLYvR .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upY9dsLYvR .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upY9dsLYvR .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upY9dsLYvR .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upY9dsLYvR .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upY9dsLYvR .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-upY9dsLYvR .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upY9dsLYvR .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upY9dsLYvR .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upY9dsLYvR .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upY9dsLYvR .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upY9dsLYvR .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upY9dsLYvR .dragArea.row .form-group .form-control:hover,
.cid-upY9dsLYvR .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upY9dsLYvR .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upY9dsLYvR .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upY9dsLYvR .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upY9dsLYvR .mbr-title {
  color: #ffffff;
}
.cid-upY9dsLYvR .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upY9dsLYvR .mbr-section-subtitle {
  color: #08323C;
}
.cid-upY9dsLYvR .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upY9dsLYvR .list {
  color: #08323C;
}
.cid-upY9dsLYvR label {
  color: #08323C;
}
.cid-upY9dsLYvR H3 {
  color: #000000;
}
.cid-upY9dsLYvR P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upYa4H36EG {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYa4H36EG H1 {
  text-align: center;
}
.cid-uDmDU5hbs1 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmDU5hbs1 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmDU5hbs1 .video-block {
    width: 100% !important;
  }
}
.cid-upYa4HvJph {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYa4HPCGw {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upYa4HPCGw .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYa4HPCGw .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYa4HPCGw .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYa4HPCGw .box {
  left: 20%;
}
.cid-upYa4HPCGw .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upYa4HPCGw .mbr-section-text,
.cid-upYa4HPCGw .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upYa4HPCGw .text-box {
    display: none;
  }
  .cid-upYa4HPCGw .mbr-section-title,
  .cid-upYa4HPCGw .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYa4HPCGw .box {
    display: none;
  }
  .cid-upYa4HPCGw .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYa4HPCGw .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYa4HPCGw .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYa4HPCGw .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYa4HPCGw .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYa4HPCGw .mbr-section-text DIV {
  text-align: center;
}
.cid-upYa4IaQr2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYa4IaQr2 H1 {
  text-align: center;
}
.cid-upYa4IxLJH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYa4IPZeF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYa4IPZeF h2 {
  text-align: left;
}
.cid-upYa4IPZeF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYa4IPZeF p {
  color: #767676;
  text-align: left;
}
.cid-upYa4IPZeF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYa4IPZeF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYa4IPZeF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYa4IPZeF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYa4IPZeF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYa4IPZeF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYa4IPZeF .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYa4IPZeF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYa4IPZeF .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYa4IPZeF H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upYa4IPZeF P {
  color: #ffffff;
  text-align: left;
}
.cid-upYa4IPZeF H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upYa4JfUcx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYa4JfUcx H1 {
  color: #000000;
}
.cid-uxjCiHElfS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjCiHElfS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjCiHElfS .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjCiHElfS .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjCiHElfS .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjCiHElfS .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjCiHElfS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjCiHElfS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjCiHElfS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjCiHElfS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjCiHElfS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjCiHElfS .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-uxjCiHElfS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjCiHElfS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjCiHElfS .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjCiHElfS .mbr-text,
.cid-uxjCiHElfS .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upYa4K5mBO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYa4K5mBO H1 {
  color: #000000;
}
.cid-uxjCjkWtPk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjCjkWtPk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjCjkWtPk .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjCjkWtPk .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjCjkWtPk .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjCjkWtPk .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjCjkWtPk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjCjkWtPk .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjCjkWtPk .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjCjkWtPk .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjCjkWtPk .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjCjkWtPk .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-uxjCjkWtPk .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjCjkWtPk .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjCjkWtPk .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjCjkWtPk .mbr-text,
.cid-uxjCjkWtPk .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYa4L2zx1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYa4L2zx1 H1 {
  color: #000000;
}
.cid-uxjCkdr58B {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjCkdr58B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjCkdr58B .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjCkdr58B .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjCkdr58B .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjCkdr58B .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjCkdr58B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjCkdr58B .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjCkdr58B .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjCkdr58B .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjCkdr58B .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjCkdr58B .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-uxjCkdr58B .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjCkdr58B .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjCkdr58B .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjCkdr58B .mbr-text,
.cid-uxjCkdr58B .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjCkWHAsU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjCkWHAsU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjCkWHAsU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjCkWHAsU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjCkWHAsU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjCkWHAsU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjCkWHAsU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjCkWHAsU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjCkWHAsU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjCkWHAsU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjCkWHAsU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjCkWHAsU .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-uxjCkWHAsU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjCkWHAsU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjCkWHAsU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjCkWHAsU .mbr-text,
.cid-uxjCkWHAsU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYa4MuvRy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upYa4MuvRy H1 {
  color: #000000;
}
.cid-uxjCn7SqrS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjCn7SqrS h2 {
  text-align: left;
}
.cid-uxjCn7SqrS h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjCn7SqrS p {
  color: #767676;
  text-align: left;
}
.cid-uxjCn7SqrS .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjCn7SqrS .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjCn7SqrS .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjCn7SqrS .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjCn7SqrS .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjCn7SqrS .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjCn7SqrS .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjCn7SqrS .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjCn7SqrS .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjCn7SqrS .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjCn7SqrS .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYa4NnrUK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upYa4NnrUK .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYa4NnrUK .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYa4NnrUK .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYa4NnrUK .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upYa4NnrUK .box {
  right: 20%;
}
.cid-upYa4NnrUK .text-box {
  right: 0;
}
.cid-upYa4NnrUK .mbr-section-title,
.cid-upYa4NnrUK .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upYa4NnrUK .text-box {
    display: none;
  }
  .cid-upYa4NnrUK .mbr-section-title,
  .cid-upYa4NnrUK .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYa4NnrUK .box {
    display: none;
  }
  .cid-upYa4NnrUK .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYa4NnrUK .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYa4NnrUK .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYa4NnrUK .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYa4NnrUK .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYa4NnrUK .mbr-section-text DIV {
  text-align: center;
}
.cid-upYa4NOQRW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYa4OclgT {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upYa4OclgT h2 {
  text-align: left;
}
.cid-upYa4OclgT h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYa4OclgT p {
  color: #767676;
  text-align: left;
}
.cid-upYa4OclgT .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYa4OclgT .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYa4OclgT .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYa4OclgT .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYa4OclgT .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYa4OclgT .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYa4OclgT .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYa4OclgT .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYa4OclgT .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYa4OclgT .mbr-text {
  color: #232323;
}
.cid-upYa4OGZCX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upYa4OGZCX .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYa4OGZCX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upYa4OGZCX .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upYa4OGZCX .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upYa4OGZCX .container {
    padding: 0 26px;
  }
}
.cid-upYa4OGZCX .row {
  justify-content: center;
}
.cid-upYa4OGZCX .item {
  margin-bottom: 32px;
}
.cid-upYa4OGZCX .item a {
  display: block;
}
.cid-upYa4OGZCX .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upYa4OGZCX .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upYa4OGZCX .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upYa4OGZCX .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-upYa4OGZCX .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upYa4OGZCX .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upYa4OGZCX .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-upYa4OGZCX .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upYa4OGZCX .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upYa4OGZCX .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upYa4OGZCX .item-title {
  color: #ffffff;
}
.cid-upYa4OGZCX .mbr-date {
  color: #cacaca;
}
.cid-upYa4OGZCX .mbr-desc {
  color: #cacaca;
}
.cid-upYa4P6UU3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upYa4P6UU3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYa4P6UU3 .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-upYa4P6UU3 .container {
    padding: 0 16px;
  }
}
.cid-upYa4P6UU3 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upYa4P6UU3 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYa4P6UU3 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upYa4P6UU3 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYa4P6UU3 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upYa4P6UU3 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upYa4P6UU3 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upYa4P6UU3 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upYa4P6UU3 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upYa4P6UU3 .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-upYa4P6UU3 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upYa4P6UU3 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upYa4P6UU3 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upYa4P6UU3 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upYa4P6UU3 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upYa4P6UU3 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upYa4P6UU3 .dragArea.row .form-group .form-control:hover,
.cid-upYa4P6UU3 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upYa4P6UU3 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upYa4P6UU3 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upYa4P6UU3 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upYa4P6UU3 .mbr-title {
  color: #ffffff;
}
.cid-upYa4P6UU3 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upYa4P6UU3 .mbr-section-subtitle {
  color: #08323C;
}
.cid-upYa4P6UU3 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upYa4P6UU3 .list {
  color: #08323C;
}
.cid-upYa4P6UU3 label {
  color: #08323C;
}
.cid-upYa4P6UU3 H3 {
  color: #000000;
}
.cid-upYa4P6UU3 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upYhs1jySw {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYhs1jySw H1 {
  text-align: center;
}
.cid-uDmEnp6Ryx {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmEnp6Ryx .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmEnp6Ryx .video-block {
    width: 100% !important;
  }
}
.cid-upYhs1Lxge {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYhs2bHHx {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upYhs2bHHx .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYhs2bHHx .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYhs2bHHx .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYhs2bHHx .box {
  left: 20%;
}
.cid-upYhs2bHHx .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upYhs2bHHx .mbr-section-text,
.cid-upYhs2bHHx .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upYhs2bHHx .text-box {
    display: none;
  }
  .cid-upYhs2bHHx .mbr-section-title,
  .cid-upYhs2bHHx .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYhs2bHHx .box {
    display: none;
  }
  .cid-upYhs2bHHx .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYhs2bHHx .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYhs2bHHx .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYhs2bHHx .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYhs2bHHx .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYhs2bHHx .mbr-section-text DIV {
  text-align: center;
}
.cid-upYhs2xnGG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYhs2xnGG H1 {
  text-align: center;
}
.cid-upYhs2TsyK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYhs3iOfP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYhs3iOfP h2 {
  text-align: left;
}
.cid-upYhs3iOfP h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYhs3iOfP p {
  color: #767676;
  text-align: left;
}
.cid-upYhs3iOfP .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYhs3iOfP .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYhs3iOfP .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYhs3iOfP .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYhs3iOfP .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYhs3iOfP .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYhs3iOfP .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYhs3iOfP .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYhs3iOfP .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYhs3iOfP H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upYhs3iOfP P {
  color: #ffffff;
  text-align: left;
}
.cid-upYhs3iOfP H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upYhs3Ijek {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYhs3Ijek H1 {
  color: #000000;
}
.cid-uxjDDxbEnE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjDDxbEnE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjDDxbEnE .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjDDxbEnE .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjDDxbEnE .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjDDxbEnE .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjDDxbEnE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjDDxbEnE .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjDDxbEnE .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjDDxbEnE .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjDDxbEnE .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjDDxbEnE .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-uxjDDxbEnE .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjDDxbEnE .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjDDxbEnE .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjDDxbEnE .mbr-text,
.cid-uxjDDxbEnE .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upYhs4EMgt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYhs4EMgt H1 {
  color: #000000;
}
.cid-uxjDEcpHE2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjDEcpHE2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjDEcpHE2 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjDEcpHE2 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjDEcpHE2 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjDEcpHE2 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjDEcpHE2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjDEcpHE2 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjDEcpHE2 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjDEcpHE2 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjDEcpHE2 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjDEcpHE2 .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-uxjDEcpHE2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjDEcpHE2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjDEcpHE2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjDEcpHE2 .mbr-text,
.cid-uxjDEcpHE2 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYhs5APGW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYhs5APGW H1 {
  color: #000000;
}
.cid-uxjDESv0z7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjDESv0z7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjDESv0z7 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjDESv0z7 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjDESv0z7 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjDESv0z7 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjDESv0z7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjDESv0z7 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjDESv0z7 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjDESv0z7 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjDESv0z7 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjDESv0z7 .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-uxjDESv0z7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjDESv0z7 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjDESv0z7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjDESv0z7 .mbr-text,
.cid-uxjDESv0z7 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjDFDzJvf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjDFDzJvf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjDFDzJvf .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjDFDzJvf .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjDFDzJvf .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjDFDzJvf .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjDFDzJvf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjDFDzJvf .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjDFDzJvf .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjDFDzJvf .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjDFDzJvf .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjDFDzJvf .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-uxjDFDzJvf .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjDFDzJvf .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjDFDzJvf .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjDFDzJvf .mbr-text,
.cid-uxjDFDzJvf .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYhs7cgQG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upYhs7cgQG H1 {
  color: #000000;
}
.cid-uxjDINCQ9k {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjDINCQ9k h2 {
  text-align: left;
}
.cid-uxjDINCQ9k h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjDINCQ9k p {
  color: #767676;
  text-align: left;
}
.cid-uxjDINCQ9k .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjDINCQ9k .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjDINCQ9k .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjDINCQ9k .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjDINCQ9k .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjDINCQ9k .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjDINCQ9k .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjDINCQ9k .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjDINCQ9k .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjDINCQ9k .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjDINCQ9k .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxjDKfqoet {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjDKfqoet H1 {
  color: #000000;
}
.cid-upYhs83RyX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upYhs83RyX .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYhs83RyX .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYhs83RyX .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYhs83RyX .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upYhs83RyX .box {
  right: 20%;
}
.cid-upYhs83RyX .text-box {
  right: 0;
}
.cid-upYhs83RyX .mbr-section-title,
.cid-upYhs83RyX .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upYhs83RyX .text-box {
    display: none;
  }
  .cid-upYhs83RyX .mbr-section-title,
  .cid-upYhs83RyX .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYhs83RyX .box {
    display: none;
  }
  .cid-upYhs83RyX .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYhs83RyX .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYhs83RyX .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYhs83RyX .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYhs83RyX .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYhs83RyX .mbr-section-text DIV {
  text-align: center;
}
.cid-upYhs8s3eo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYhs8UNEe {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upYhs8UNEe h2 {
  text-align: left;
}
.cid-upYhs8UNEe h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYhs8UNEe p {
  color: #767676;
  text-align: left;
}
.cid-upYhs8UNEe .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYhs8UNEe .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYhs8UNEe .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYhs8UNEe .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYhs8UNEe .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYhs8UNEe .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYhs8UNEe .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYhs8UNEe .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYhs8UNEe .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYhs8UNEe .mbr-text {
  color: #232323;
}
.cid-upYhs9nzUu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upYhs9nzUu .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYhs9nzUu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upYhs9nzUu .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upYhs9nzUu .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upYhs9nzUu .container {
    padding: 0 26px;
  }
}
.cid-upYhs9nzUu .row {
  justify-content: center;
}
.cid-upYhs9nzUu .item {
  margin-bottom: 32px;
}
.cid-upYhs9nzUu .item a {
  display: block;
}
.cid-upYhs9nzUu .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upYhs9nzUu .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upYhs9nzUu .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upYhs9nzUu .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-upYhs9nzUu .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upYhs9nzUu .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upYhs9nzUu .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-upYhs9nzUu .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upYhs9nzUu .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upYhs9nzUu .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upYhs9nzUu .item-title {
  color: #ffffff;
}
.cid-upYhs9nzUu .mbr-date {
  color: #cacaca;
}
.cid-upYhs9nzUu .mbr-desc {
  color: #cacaca;
}
.cid-upYhs9Qsvh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upYhs9Qsvh .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYhs9Qsvh .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-upYhs9Qsvh .container {
    padding: 0 16px;
  }
}
.cid-upYhs9Qsvh .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upYhs9Qsvh .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYhs9Qsvh .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upYhs9Qsvh .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYhs9Qsvh .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upYhs9Qsvh .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upYhs9Qsvh .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upYhs9Qsvh .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upYhs9Qsvh .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upYhs9Qsvh .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-upYhs9Qsvh .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upYhs9Qsvh .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upYhs9Qsvh .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upYhs9Qsvh .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upYhs9Qsvh .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upYhs9Qsvh .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upYhs9Qsvh .dragArea.row .form-group .form-control:hover,
.cid-upYhs9Qsvh .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upYhs9Qsvh .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upYhs9Qsvh .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upYhs9Qsvh .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upYhs9Qsvh .mbr-title {
  color: #ffffff;
}
.cid-upYhs9Qsvh .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upYhs9Qsvh .mbr-section-subtitle {
  color: #08323C;
}
.cid-upYhs9Qsvh .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upYhs9Qsvh .list {
  color: #08323C;
}
.cid-upYhs9Qsvh label {
  color: #08323C;
}
.cid-upYhs9Qsvh H3 {
  color: #000000;
}
.cid-upYhs9Qsvh P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upYgKme57c {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYgKme57c H1 {
  text-align: center;
}
.cid-uDmE88JDfm {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmE88JDfm .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmE88JDfm .video-block {
    width: 100% !important;
  }
}
.cid-upYgKmHkJU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYgKn4Aaa {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upYgKn4Aaa .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYgKn4Aaa .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYgKn4Aaa .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYgKn4Aaa .box {
  left: 20%;
}
.cid-upYgKn4Aaa .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upYgKn4Aaa .mbr-section-text,
.cid-upYgKn4Aaa .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upYgKn4Aaa .text-box {
    display: none;
  }
  .cid-upYgKn4Aaa .mbr-section-title,
  .cid-upYgKn4Aaa .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYgKn4Aaa .box {
    display: none;
  }
  .cid-upYgKn4Aaa .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYgKn4Aaa .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYgKn4Aaa .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYgKn4Aaa .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYgKn4Aaa .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYgKn4Aaa .mbr-section-text DIV {
  text-align: center;
}
.cid-upYgKntxoz {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYgKntxoz H1 {
  text-align: center;
}
.cid-upYgKnOkEn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYgKo9OMy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYgKo9OMy h2 {
  text-align: left;
}
.cid-upYgKo9OMy h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYgKo9OMy p {
  color: #767676;
  text-align: left;
}
.cid-upYgKo9OMy .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYgKo9OMy .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYgKo9OMy .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYgKo9OMy .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYgKo9OMy .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYgKo9OMy .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYgKo9OMy .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYgKo9OMy .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYgKo9OMy .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYgKo9OMy H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upYgKo9OMy P {
  color: #ffffff;
  text-align: left;
}
.cid-upYgKo9OMy H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upYgKoD63E {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYgKoD63E H1 {
  color: #000000;
}
.cid-uxjDryVUhk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjDryVUhk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjDryVUhk .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjDryVUhk .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjDryVUhk .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjDryVUhk .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjDryVUhk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjDryVUhk .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjDryVUhk .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjDryVUhk .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjDryVUhk .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjDryVUhk .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-uxjDryVUhk .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjDryVUhk .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjDryVUhk .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjDryVUhk .mbr-text,
.cid-uxjDryVUhk .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upYgKpBiK2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYgKpBiK2 H1 {
  color: #000000;
}
.cid-uxjDsljWYZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjDsljWYZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjDsljWYZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjDsljWYZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjDsljWYZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjDsljWYZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjDsljWYZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjDsljWYZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjDsljWYZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjDsljWYZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjDsljWYZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjDsljWYZ .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-uxjDsljWYZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjDsljWYZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjDsljWYZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjDsljWYZ .mbr-text,
.cid-uxjDsljWYZ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYgKqy6Xr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYgKqy6Xr H1 {
  color: #000000;
}
.cid-uxjDt18lIs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjDt18lIs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjDt18lIs .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjDt18lIs .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjDt18lIs .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjDt18lIs .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjDt18lIs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjDt18lIs .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjDt18lIs .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjDt18lIs .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjDt18lIs .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjDt18lIs .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-uxjDt18lIs .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjDt18lIs .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjDt18lIs .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjDt18lIs .mbr-text,
.cid-uxjDt18lIs .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjDtNtda8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjDtNtda8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjDtNtda8 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjDtNtda8 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjDtNtda8 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjDtNtda8 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjDtNtda8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjDtNtda8 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjDtNtda8 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjDtNtda8 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjDtNtda8 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjDtNtda8 .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-uxjDtNtda8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjDtNtda8 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjDtNtda8 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjDtNtda8 .mbr-text,
.cid-uxjDtNtda8 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYgKs7d5C {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upYgKs7d5C H1 {
  color: #000000;
}
.cid-uxjDvGlB6d {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjDvGlB6d h2 {
  text-align: left;
}
.cid-uxjDvGlB6d h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjDvGlB6d p {
  color: #767676;
  text-align: left;
}
.cid-uxjDvGlB6d .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjDvGlB6d .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjDvGlB6d .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjDvGlB6d .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjDvGlB6d .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjDvGlB6d .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjDvGlB6d .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjDvGlB6d .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjDvGlB6d .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjDvGlB6d .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjDvGlB6d .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYgKsVh3w {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upYgKsVh3w .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYgKsVh3w .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYgKsVh3w .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYgKsVh3w .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upYgKsVh3w .box {
  right: 20%;
}
.cid-upYgKsVh3w .text-box {
  right: 0;
}
.cid-upYgKsVh3w .mbr-section-title,
.cid-upYgKsVh3w .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upYgKsVh3w .text-box {
    display: none;
  }
  .cid-upYgKsVh3w .mbr-section-title,
  .cid-upYgKsVh3w .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYgKsVh3w .box {
    display: none;
  }
  .cid-upYgKsVh3w .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYgKsVh3w .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYgKsVh3w .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYgKsVh3w .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYgKsVh3w .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYgKsVh3w .mbr-section-text DIV {
  text-align: center;
}
.cid-upYgKtp5A9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYgKtNapR {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upYgKtNapR h2 {
  text-align: left;
}
.cid-upYgKtNapR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYgKtNapR p {
  color: #767676;
  text-align: left;
}
.cid-upYgKtNapR .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYgKtNapR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYgKtNapR .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYgKtNapR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYgKtNapR .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYgKtNapR .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYgKtNapR .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYgKtNapR .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYgKtNapR .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYgKtNapR .mbr-text {
  color: #232323;
}
.cid-upYgKug1Qw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upYgKug1Qw .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYgKug1Qw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upYgKug1Qw .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upYgKug1Qw .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upYgKug1Qw .container {
    padding: 0 26px;
  }
}
.cid-upYgKug1Qw .row {
  justify-content: center;
}
.cid-upYgKug1Qw .item {
  margin-bottom: 32px;
}
.cid-upYgKug1Qw .item a {
  display: block;
}
.cid-upYgKug1Qw .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upYgKug1Qw .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upYgKug1Qw .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upYgKug1Qw .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-upYgKug1Qw .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upYgKug1Qw .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upYgKug1Qw .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-upYgKug1Qw .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upYgKug1Qw .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upYgKug1Qw .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upYgKug1Qw .item-title {
  color: #ffffff;
}
.cid-upYgKug1Qw .mbr-date {
  color: #cacaca;
}
.cid-upYgKug1Qw .mbr-desc {
  color: #cacaca;
}
.cid-upYgKuLeVV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upYgKuLeVV .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYgKuLeVV .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-upYgKuLeVV .container {
    padding: 0 16px;
  }
}
.cid-upYgKuLeVV .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upYgKuLeVV .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYgKuLeVV .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upYgKuLeVV .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYgKuLeVV .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upYgKuLeVV .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upYgKuLeVV .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upYgKuLeVV .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upYgKuLeVV .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upYgKuLeVV .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-upYgKuLeVV .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upYgKuLeVV .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upYgKuLeVV .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upYgKuLeVV .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upYgKuLeVV .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upYgKuLeVV .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upYgKuLeVV .dragArea.row .form-group .form-control:hover,
.cid-upYgKuLeVV .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upYgKuLeVV .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upYgKuLeVV .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upYgKuLeVV .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upYgKuLeVV .mbr-title {
  color: #ffffff;
}
.cid-upYgKuLeVV .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upYgKuLeVV .mbr-section-subtitle {
  color: #08323C;
}
.cid-upYgKuLeVV .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upYgKuLeVV .list {
  color: #08323C;
}
.cid-upYgKuLeVV label {
  color: #08323C;
}
.cid-upYgKuLeVV H3 {
  color: #000000;
}
.cid-upYgKuLeVV P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upYfZ7WQum {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYfZ7WQum H1 {
  text-align: center;
}
.cid-uDmE5YD1u6 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmE5YD1u6 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmE5YD1u6 .video-block {
    width: 100% !important;
  }
}
.cid-upYfZ8okvj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYfZ8MwEI {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upYfZ8MwEI .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYfZ8MwEI .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYfZ8MwEI .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYfZ8MwEI .box {
  left: 20%;
}
.cid-upYfZ8MwEI .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upYfZ8MwEI .mbr-section-text,
.cid-upYfZ8MwEI .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upYfZ8MwEI .text-box {
    display: none;
  }
  .cid-upYfZ8MwEI .mbr-section-title,
  .cid-upYfZ8MwEI .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYfZ8MwEI .box {
    display: none;
  }
  .cid-upYfZ8MwEI .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYfZ8MwEI .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYfZ8MwEI .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYfZ8MwEI .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYfZ8MwEI .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYfZ8MwEI .mbr-section-text DIV {
  text-align: center;
}
.cid-upYfZ9cMxH {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYfZ9cMxH H1 {
  text-align: center;
}
.cid-upYfZ9xjsd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYfZ9RilF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYfZ9RilF h2 {
  text-align: left;
}
.cid-upYfZ9RilF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYfZ9RilF p {
  color: #767676;
  text-align: left;
}
.cid-upYfZ9RilF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYfZ9RilF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYfZ9RilF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYfZ9RilF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYfZ9RilF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYfZ9RilF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYfZ9RilF .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYfZ9RilF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYfZ9RilF .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYfZ9RilF H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upYfZ9RilF P {
  color: #ffffff;
  text-align: left;
}
.cid-upYfZ9RilF H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upYfZaloxa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYfZaloxa H1 {
  color: #000000;
}
.cid-uxjDe5Q6iw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjDe5Q6iw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjDe5Q6iw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjDe5Q6iw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjDe5Q6iw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjDe5Q6iw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjDe5Q6iw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjDe5Q6iw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjDe5Q6iw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjDe5Q6iw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjDe5Q6iw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjDe5Q6iw .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-uxjDe5Q6iw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjDe5Q6iw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjDe5Q6iw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjDe5Q6iw .mbr-text,
.cid-uxjDe5Q6iw .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upYfZbh409 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYfZbh409 H1 {
  color: #000000;
}
.cid-uxjDf2svnv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjDf2svnv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjDf2svnv .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjDf2svnv .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjDf2svnv .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjDf2svnv .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjDf2svnv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjDf2svnv .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjDf2svnv .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjDf2svnv .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjDf2svnv .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjDf2svnv .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-uxjDf2svnv .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjDf2svnv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjDf2svnv .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjDf2svnv .mbr-text,
.cid-uxjDf2svnv .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYfZcdtxb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYfZcdtxb H1 {
  color: #000000;
}
.cid-uxjDfEtHvB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjDfEtHvB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjDfEtHvB .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjDfEtHvB .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjDfEtHvB .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjDfEtHvB .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjDfEtHvB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjDfEtHvB .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjDfEtHvB .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjDfEtHvB .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjDfEtHvB .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjDfEtHvB .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-uxjDfEtHvB .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjDfEtHvB .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjDfEtHvB .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjDfEtHvB .mbr-text,
.cid-uxjDfEtHvB .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjDgfWPtb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjDgfWPtb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjDgfWPtb .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjDgfWPtb .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjDgfWPtb .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjDgfWPtb .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjDgfWPtb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjDgfWPtb .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjDgfWPtb .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjDgfWPtb .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjDgfWPtb .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjDgfWPtb .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-uxjDgfWPtb .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjDgfWPtb .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjDgfWPtb .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjDgfWPtb .mbr-text,
.cid-uxjDgfWPtb .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYfZdKbyh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upYfZdKbyh H1 {
  color: #000000;
}
.cid-uxjDjHE1QI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjDjHE1QI h2 {
  text-align: left;
}
.cid-uxjDjHE1QI h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjDjHE1QI p {
  color: #767676;
  text-align: left;
}
.cid-uxjDjHE1QI .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjDjHE1QI .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjDjHE1QI .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjDjHE1QI .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjDjHE1QI .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjDjHE1QI .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjDjHE1QI .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjDjHE1QI .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjDjHE1QI .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjDjHE1QI .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjDjHE1QI .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYfZey9up {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upYfZey9up .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYfZey9up .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYfZey9up .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYfZey9up .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upYfZey9up .box {
  right: 20%;
}
.cid-upYfZey9up .text-box {
  right: 0;
}
.cid-upYfZey9up .mbr-section-title,
.cid-upYfZey9up .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upYfZey9up .text-box {
    display: none;
  }
  .cid-upYfZey9up .mbr-section-title,
  .cid-upYfZey9up .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYfZey9up .box {
    display: none;
  }
  .cid-upYfZey9up .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYfZey9up .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYfZey9up .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYfZey9up .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYfZey9up .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYfZey9up .mbr-section-text DIV {
  text-align: center;
}
.cid-upYfZeZRtM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYfZfoCPg {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upYfZfoCPg h2 {
  text-align: left;
}
.cid-upYfZfoCPg h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYfZfoCPg p {
  color: #767676;
  text-align: left;
}
.cid-upYfZfoCPg .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYfZfoCPg .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYfZfoCPg .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYfZfoCPg .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYfZfoCPg .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYfZfoCPg .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYfZfoCPg .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYfZfoCPg .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYfZfoCPg .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYfZfoCPg .mbr-text {
  color: #232323;
}
.cid-upYfZfPAQV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upYfZfPAQV .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYfZfPAQV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upYfZfPAQV .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upYfZfPAQV .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upYfZfPAQV .container {
    padding: 0 26px;
  }
}
.cid-upYfZfPAQV .row {
  justify-content: center;
}
.cid-upYfZfPAQV .item {
  margin-bottom: 32px;
}
.cid-upYfZfPAQV .item a {
  display: block;
}
.cid-upYfZfPAQV .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upYfZfPAQV .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upYfZfPAQV .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upYfZfPAQV .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-upYfZfPAQV .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upYfZfPAQV .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upYfZfPAQV .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-upYfZfPAQV .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upYfZfPAQV .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upYfZfPAQV .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upYfZfPAQV .item-title {
  color: #ffffff;
}
.cid-upYfZfPAQV .mbr-date {
  color: #cacaca;
}
.cid-upYfZfPAQV .mbr-desc {
  color: #cacaca;
}
.cid-upYfZgf5eK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upYfZgf5eK .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYfZgf5eK .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-upYfZgf5eK .container {
    padding: 0 16px;
  }
}
.cid-upYfZgf5eK .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upYfZgf5eK .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYfZgf5eK .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upYfZgf5eK .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYfZgf5eK .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upYfZgf5eK .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upYfZgf5eK .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upYfZgf5eK .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upYfZgf5eK .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upYfZgf5eK .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-upYfZgf5eK .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upYfZgf5eK .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upYfZgf5eK .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upYfZgf5eK .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upYfZgf5eK .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upYfZgf5eK .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upYfZgf5eK .dragArea.row .form-group .form-control:hover,
.cid-upYfZgf5eK .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upYfZgf5eK .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upYfZgf5eK .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upYfZgf5eK .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upYfZgf5eK .mbr-title {
  color: #ffffff;
}
.cid-upYfZgf5eK .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upYfZgf5eK .mbr-section-subtitle {
  color: #08323C;
}
.cid-upYfZgf5eK .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upYfZgf5eK .list {
  color: #08323C;
}
.cid-upYfZgf5eK label {
  color: #08323C;
}
.cid-upYfZgf5eK H3 {
  color: #000000;
}
.cid-upYfZgf5eK P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upYeVMtqb7 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYeVMtqb7 H1 {
  text-align: center;
}
.cid-uDmE3LKlK8 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmE3LKlK8 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmE3LKlK8 .video-block {
    width: 100% !important;
  }
}
.cid-upYeVMUpPd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYeVNfgwa {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upYeVNfgwa .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYeVNfgwa .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYeVNfgwa .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYeVNfgwa .box {
  left: 20%;
}
.cid-upYeVNfgwa .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upYeVNfgwa .mbr-section-text,
.cid-upYeVNfgwa .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upYeVNfgwa .text-box {
    display: none;
  }
  .cid-upYeVNfgwa .mbr-section-title,
  .cid-upYeVNfgwa .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYeVNfgwa .box {
    display: none;
  }
  .cid-upYeVNfgwa .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYeVNfgwa .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYeVNfgwa .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYeVNfgwa .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYeVNfgwa .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYeVNfgwa .mbr-section-text DIV {
  text-align: center;
}
.cid-upYeVNE8ql {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYeVNE8ql H1 {
  text-align: center;
}
.cid-upYeVNZL5K {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYeVOjg9E {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYeVOjg9E h2 {
  text-align: left;
}
.cid-upYeVOjg9E h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYeVOjg9E p {
  color: #767676;
  text-align: left;
}
.cid-upYeVOjg9E .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYeVOjg9E .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYeVOjg9E .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYeVOjg9E .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYeVOjg9E .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYeVOjg9E .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYeVOjg9E .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYeVOjg9E .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYeVOjg9E .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYeVOjg9E H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upYeVOjg9E P {
  color: #ffffff;
  text-align: left;
}
.cid-upYeVOjg9E H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upYeVOM7Js {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYeVOM7Js H1 {
  color: #000000;
}
.cid-uxjD3UyoEe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjD3UyoEe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjD3UyoEe .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjD3UyoEe .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjD3UyoEe .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjD3UyoEe .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjD3UyoEe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjD3UyoEe .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjD3UyoEe .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjD3UyoEe .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjD3UyoEe .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjD3UyoEe .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-uxjD3UyoEe .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjD3UyoEe .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjD3UyoEe .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjD3UyoEe .mbr-text,
.cid-uxjD3UyoEe .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upYeVPIaLg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYeVPIaLg H1 {
  color: #000000;
}
.cid-uxjD4I5GmO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjD4I5GmO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjD4I5GmO .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjD4I5GmO .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjD4I5GmO .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjD4I5GmO .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjD4I5GmO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjD4I5GmO .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjD4I5GmO .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjD4I5GmO .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjD4I5GmO .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjD4I5GmO .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-uxjD4I5GmO .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjD4I5GmO .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjD4I5GmO .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjD4I5GmO .mbr-text,
.cid-uxjD4I5GmO .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYeVQFgcZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYeVQFgcZ H1 {
  color: #000000;
}
.cid-uxjD5sQijP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjD5sQijP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjD5sQijP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjD5sQijP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjD5sQijP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjD5sQijP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjD5sQijP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjD5sQijP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjD5sQijP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjD5sQijP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjD5sQijP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjD5sQijP .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-uxjD5sQijP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjD5sQijP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjD5sQijP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjD5sQijP .mbr-text,
.cid-uxjD5sQijP .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjD64MKQK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjD64MKQK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjD64MKQK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjD64MKQK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjD64MKQK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjD64MKQK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjD64MKQK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjD64MKQK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjD64MKQK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjD64MKQK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjD64MKQK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjD64MKQK .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-uxjD64MKQK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjD64MKQK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjD64MKQK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjD64MKQK .mbr-text,
.cid-uxjD64MKQK .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYeVSfJ0j {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upYeVSfJ0j H1 {
  color: #000000;
}
.cid-uxjD7jNXQU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjD7jNXQU h2 {
  text-align: left;
}
.cid-uxjD7jNXQU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjD7jNXQU p {
  color: #767676;
  text-align: left;
}
.cid-uxjD7jNXQU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjD7jNXQU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjD7jNXQU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjD7jNXQU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjD7jNXQU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjD7jNXQU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjD7jNXQU .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjD7jNXQU .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjD7jNXQU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjD7jNXQU .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjD7jNXQU .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYeVT6J9x {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upYeVT6J9x .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYeVT6J9x .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYeVT6J9x .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYeVT6J9x .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upYeVT6J9x .box {
  right: 20%;
}
.cid-upYeVT6J9x .text-box {
  right: 0;
}
.cid-upYeVT6J9x .mbr-section-title,
.cid-upYeVT6J9x .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upYeVT6J9x .text-box {
    display: none;
  }
  .cid-upYeVT6J9x .mbr-section-title,
  .cid-upYeVT6J9x .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYeVT6J9x .box {
    display: none;
  }
  .cid-upYeVT6J9x .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYeVT6J9x .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYeVT6J9x .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYeVT6J9x .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYeVT6J9x .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYeVT6J9x .mbr-section-text DIV {
  text-align: center;
}
.cid-upYeVTybgJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYeVTWAJB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upYeVTWAJB h2 {
  text-align: left;
}
.cid-upYeVTWAJB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYeVTWAJB p {
  color: #767676;
  text-align: left;
}
.cid-upYeVTWAJB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYeVTWAJB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYeVTWAJB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYeVTWAJB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYeVTWAJB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYeVTWAJB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYeVTWAJB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYeVTWAJB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYeVTWAJB .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYeVTWAJB .mbr-text {
  color: #232323;
}
.cid-upYeVUnfur {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upYeVUnfur .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYeVUnfur .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upYeVUnfur .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upYeVUnfur .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upYeVUnfur .container {
    padding: 0 26px;
  }
}
.cid-upYeVUnfur .row {
  justify-content: center;
}
.cid-upYeVUnfur .item {
  margin-bottom: 32px;
}
.cid-upYeVUnfur .item a {
  display: block;
}
.cid-upYeVUnfur .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upYeVUnfur .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upYeVUnfur .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upYeVUnfur .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-upYeVUnfur .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upYeVUnfur .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upYeVUnfur .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-upYeVUnfur .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upYeVUnfur .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upYeVUnfur .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upYeVUnfur .item-title {
  color: #ffffff;
}
.cid-upYeVUnfur .mbr-date {
  color: #cacaca;
}
.cid-upYeVUnfur .mbr-desc {
  color: #cacaca;
}
.cid-upYeVUOixS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upYeVUOixS .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYeVUOixS .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-upYeVUOixS .container {
    padding: 0 16px;
  }
}
.cid-upYeVUOixS .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upYeVUOixS .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYeVUOixS .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upYeVUOixS .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYeVUOixS .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upYeVUOixS .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upYeVUOixS .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upYeVUOixS .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upYeVUOixS .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upYeVUOixS .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-upYeVUOixS .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upYeVUOixS .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upYeVUOixS .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upYeVUOixS .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upYeVUOixS .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upYeVUOixS .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upYeVUOixS .dragArea.row .form-group .form-control:hover,
.cid-upYeVUOixS .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upYeVUOixS .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upYeVUOixS .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upYeVUOixS .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upYeVUOixS .mbr-title {
  color: #ffffff;
}
.cid-upYeVUOixS .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upYeVUOixS .mbr-section-subtitle {
  color: #08323C;
}
.cid-upYeVUOixS .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upYeVUOixS .list {
  color: #08323C;
}
.cid-upYeVUOixS label {
  color: #08323C;
}
.cid-upYeVUOixS H3 {
  color: #000000;
}
.cid-upYeVUOixS P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upYdTVvuqX {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYdTVvuqX H1 {
  text-align: center;
}
.cid-uDmE13Q71I {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmE13Q71I .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmE13Q71I .video-block {
    width: 100% !important;
  }
}
.cid-upYdTVXeCa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYdTWi7rr {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upYdTWi7rr .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYdTWi7rr .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYdTWi7rr .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYdTWi7rr .box {
  left: 20%;
}
.cid-upYdTWi7rr .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upYdTWi7rr .mbr-section-text,
.cid-upYdTWi7rr .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upYdTWi7rr .text-box {
    display: none;
  }
  .cid-upYdTWi7rr .mbr-section-title,
  .cid-upYdTWi7rr .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYdTWi7rr .box {
    display: none;
  }
  .cid-upYdTWi7rr .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYdTWi7rr .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYdTWi7rr .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYdTWi7rr .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYdTWi7rr .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYdTWi7rr .mbr-section-text DIV {
  text-align: center;
}
.cid-upYdTWGPQs {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYdTWGPQs H1 {
  text-align: center;
}
.cid-upYdTX2XzS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYdTXlcQR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYdTXlcQR h2 {
  text-align: left;
}
.cid-upYdTXlcQR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYdTXlcQR p {
  color: #767676;
  text-align: left;
}
.cid-upYdTXlcQR .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYdTXlcQR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYdTXlcQR .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYdTXlcQR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYdTXlcQR .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYdTXlcQR .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYdTXlcQR .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYdTXlcQR .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYdTXlcQR .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYdTXlcQR H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upYdTXlcQR P {
  color: #ffffff;
  text-align: left;
}
.cid-upYdTXlcQR H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upYdTXN11C {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYdTXN11C H1 {
  color: #000000;
}
.cid-uxjCSaguFl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjCSaguFl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjCSaguFl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjCSaguFl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjCSaguFl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjCSaguFl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjCSaguFl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjCSaguFl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjCSaguFl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjCSaguFl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjCSaguFl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjCSaguFl .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-uxjCSaguFl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjCSaguFl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjCSaguFl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjCSaguFl .mbr-text,
.cid-uxjCSaguFl .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upYdTYIMa1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYdTYIMa1 H1 {
  color: #000000;
}
.cid-uxjCSMCMB3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjCSMCMB3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjCSMCMB3 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjCSMCMB3 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjCSMCMB3 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjCSMCMB3 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjCSMCMB3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjCSMCMB3 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjCSMCMB3 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjCSMCMB3 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjCSMCMB3 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjCSMCMB3 .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-uxjCSMCMB3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjCSMCMB3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjCSMCMB3 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjCSMCMB3 .mbr-text,
.cid-uxjCSMCMB3 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYdTZDwEk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYdTZDwEk H1 {
  color: #000000;
}
.cid-uxjCTnT3K7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjCTnT3K7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjCTnT3K7 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjCTnT3K7 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjCTnT3K7 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjCTnT3K7 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjCTnT3K7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjCTnT3K7 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjCTnT3K7 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjCTnT3K7 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjCTnT3K7 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjCTnT3K7 .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-uxjCTnT3K7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjCTnT3K7 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjCTnT3K7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjCTnT3K7 .mbr-text,
.cid-uxjCTnT3K7 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjCTZ6kO1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjCTZ6kO1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjCTZ6kO1 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjCTZ6kO1 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjCTZ6kO1 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjCTZ6kO1 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjCTZ6kO1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjCTZ6kO1 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjCTZ6kO1 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjCTZ6kO1 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjCTZ6kO1 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjCTZ6kO1 .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-uxjCTZ6kO1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjCTZ6kO1 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjCTZ6kO1 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjCTZ6kO1 .mbr-text,
.cid-uxjCTZ6kO1 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYdU17fzr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upYdU17fzr H1 {
  color: #000000;
}
.cid-uxjCVwx6oI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjCVwx6oI h2 {
  text-align: left;
}
.cid-uxjCVwx6oI h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjCVwx6oI p {
  color: #767676;
  text-align: left;
}
.cid-uxjCVwx6oI .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjCVwx6oI .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjCVwx6oI .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjCVwx6oI .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjCVwx6oI .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjCVwx6oI .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjCVwx6oI .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjCVwx6oI .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjCVwx6oI .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjCVwx6oI .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjCVwx6oI .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYdU1WOgO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upYdU1WOgO .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYdU1WOgO .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYdU1WOgO .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYdU1WOgO .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upYdU1WOgO .box {
  right: 20%;
}
.cid-upYdU1WOgO .text-box {
  right: 0;
}
.cid-upYdU1WOgO .mbr-section-title,
.cid-upYdU1WOgO .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upYdU1WOgO .text-box {
    display: none;
  }
  .cid-upYdU1WOgO .mbr-section-title,
  .cid-upYdU1WOgO .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYdU1WOgO .box {
    display: none;
  }
  .cid-upYdU1WOgO .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYdU1WOgO .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYdU1WOgO .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYdU1WOgO .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYdU1WOgO .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYdU1WOgO .mbr-section-text DIV {
  text-align: center;
}
.cid-upYdU2n8n1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYdU2KtVu {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upYdU2KtVu h2 {
  text-align: left;
}
.cid-upYdU2KtVu h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYdU2KtVu p {
  color: #767676;
  text-align: left;
}
.cid-upYdU2KtVu .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYdU2KtVu .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYdU2KtVu .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYdU2KtVu .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYdU2KtVu .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYdU2KtVu .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYdU2KtVu .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYdU2KtVu .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYdU2KtVu .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYdU2KtVu .mbr-text {
  color: #232323;
}
.cid-upYdU3aQMT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upYdU3aQMT .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYdU3aQMT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upYdU3aQMT .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upYdU3aQMT .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upYdU3aQMT .container {
    padding: 0 26px;
  }
}
.cid-upYdU3aQMT .row {
  justify-content: center;
}
.cid-upYdU3aQMT .item {
  margin-bottom: 32px;
}
.cid-upYdU3aQMT .item a {
  display: block;
}
.cid-upYdU3aQMT .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upYdU3aQMT .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upYdU3aQMT .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upYdU3aQMT .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-upYdU3aQMT .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upYdU3aQMT .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upYdU3aQMT .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-upYdU3aQMT .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upYdU3aQMT .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upYdU3aQMT .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upYdU3aQMT .item-title {
  color: #ffffff;
}
.cid-upYdU3aQMT .mbr-date {
  color: #cacaca;
}
.cid-upYdU3aQMT .mbr-desc {
  color: #cacaca;
}
.cid-upYdU3IqwA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upYdU3IqwA .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYdU3IqwA .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-upYdU3IqwA .container {
    padding: 0 16px;
  }
}
.cid-upYdU3IqwA .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upYdU3IqwA .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYdU3IqwA .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upYdU3IqwA .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYdU3IqwA .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upYdU3IqwA .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upYdU3IqwA .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upYdU3IqwA .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upYdU3IqwA .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upYdU3IqwA .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-upYdU3IqwA .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upYdU3IqwA .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upYdU3IqwA .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upYdU3IqwA .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upYdU3IqwA .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upYdU3IqwA .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upYdU3IqwA .dragArea.row .form-group .form-control:hover,
.cid-upYdU3IqwA .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upYdU3IqwA .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upYdU3IqwA .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upYdU3IqwA .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upYdU3IqwA .mbr-title {
  color: #ffffff;
}
.cid-upYdU3IqwA .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upYdU3IqwA .mbr-section-subtitle {
  color: #08323C;
}
.cid-upYdU3IqwA .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upYdU3IqwA .list {
  color: #08323C;
}
.cid-upYdU3IqwA label {
  color: #08323C;
}
.cid-upYdU3IqwA H3 {
  color: #000000;
}
.cid-upYdU3IqwA P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upYcib5g6b {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYcib5g6b H1 {
  text-align: center;
}
.cid-uDmDYLtfLZ {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmDYLtfLZ .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmDYLtfLZ .video-block {
    width: 100% !important;
  }
}
.cid-upYcibzZIl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYcibVsKA {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upYcibVsKA .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYcibVsKA .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYcibVsKA .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYcibVsKA .box {
  left: 20%;
}
.cid-upYcibVsKA .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upYcibVsKA .mbr-section-text,
.cid-upYcibVsKA .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upYcibVsKA .text-box {
    display: none;
  }
  .cid-upYcibVsKA .mbr-section-title,
  .cid-upYcibVsKA .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYcibVsKA .box {
    display: none;
  }
  .cid-upYcibVsKA .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYcibVsKA .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYcibVsKA .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYcibVsKA .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYcibVsKA .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYcibVsKA .mbr-section-text DIV {
  text-align: center;
}
.cid-upYcich1O3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYcich1O3 H1 {
  text-align: center;
}
.cid-upYcicAr4M {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYcicWGdv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYcicWGdv h2 {
  text-align: left;
}
.cid-upYcicWGdv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYcicWGdv p {
  color: #767676;
  text-align: left;
}
.cid-upYcicWGdv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYcicWGdv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYcicWGdv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYcicWGdv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYcicWGdv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYcicWGdv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYcicWGdv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYcicWGdv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYcicWGdv .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYcicWGdv H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upYcicWGdv P {
  color: #ffffff;
  text-align: left;
}
.cid-upYcicWGdv H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upYcidmH73 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYcidmH73 H1 {
  color: #000000;
}
.cid-uxjCFSvhEK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjCFSvhEK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjCFSvhEK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjCFSvhEK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjCFSvhEK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjCFSvhEK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjCFSvhEK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjCFSvhEK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjCFSvhEK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjCFSvhEK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjCFSvhEK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjCFSvhEK .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-uxjCFSvhEK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjCFSvhEK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjCFSvhEK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjCFSvhEK .mbr-text,
.cid-uxjCFSvhEK .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upYciemHjO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYciemHjO H1 {
  color: #000000;
}
.cid-uxjCGtDhK9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjCGtDhK9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjCGtDhK9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjCGtDhK9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjCGtDhK9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjCGtDhK9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjCGtDhK9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjCGtDhK9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjCGtDhK9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjCGtDhK9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjCGtDhK9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjCGtDhK9 .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-uxjCGtDhK9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjCGtDhK9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjCGtDhK9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjCGtDhK9 .mbr-text,
.cid-uxjCGtDhK9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYcifiK6M {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYcifiK6M H1 {
  color: #000000;
}
.cid-uxjCH2aJ2T {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjCH2aJ2T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjCH2aJ2T .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjCH2aJ2T .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjCH2aJ2T .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjCH2aJ2T .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjCH2aJ2T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjCH2aJ2T .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjCH2aJ2T .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjCH2aJ2T .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjCH2aJ2T .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjCH2aJ2T .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-uxjCH2aJ2T .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjCH2aJ2T .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjCH2aJ2T .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjCH2aJ2T .mbr-text,
.cid-uxjCH2aJ2T .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjCHWUgmH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjCHWUgmH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjCHWUgmH .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjCHWUgmH .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjCHWUgmH .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjCHWUgmH .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjCHWUgmH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjCHWUgmH .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjCHWUgmH .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjCHWUgmH .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjCHWUgmH .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjCHWUgmH .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-uxjCHWUgmH .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjCHWUgmH .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjCHWUgmH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjCHWUgmH .mbr-text,
.cid-uxjCHWUgmH .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYcigPLK5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upYcigPLK5 H1 {
  color: #000000;
}
.cid-uxjCJhuhfl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjCJhuhfl h2 {
  text-align: left;
}
.cid-uxjCJhuhfl h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjCJhuhfl p {
  color: #767676;
  text-align: left;
}
.cid-uxjCJhuhfl .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjCJhuhfl .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjCJhuhfl .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjCJhuhfl .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjCJhuhfl .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjCJhuhfl .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjCJhuhfl .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjCJhuhfl .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjCJhuhfl .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjCJhuhfl .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjCJhuhfl .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYcihD01L {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upYcihD01L .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYcihD01L .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYcihD01L .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYcihD01L .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upYcihD01L .box {
  right: 20%;
}
.cid-upYcihD01L .text-box {
  right: 0;
}
.cid-upYcihD01L .mbr-section-title,
.cid-upYcihD01L .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upYcihD01L .text-box {
    display: none;
  }
  .cid-upYcihD01L .mbr-section-title,
  .cid-upYcihD01L .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYcihD01L .box {
    display: none;
  }
  .cid-upYcihD01L .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYcihD01L .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYcihD01L .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYcihD01L .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYcihD01L .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYcihD01L .mbr-section-text DIV {
  text-align: center;
}
.cid-upYcii1wLs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYciiq8fd {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upYciiq8fd h2 {
  text-align: left;
}
.cid-upYciiq8fd h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYciiq8fd p {
  color: #767676;
  text-align: left;
}
.cid-upYciiq8fd .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYciiq8fd .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYciiq8fd .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYciiq8fd .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYciiq8fd .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYciiq8fd .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYciiq8fd .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYciiq8fd .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYciiq8fd .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYciiq8fd .mbr-text {
  color: #232323;
}
.cid-upYciiP6QW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upYciiP6QW .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYciiP6QW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upYciiP6QW .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upYciiP6QW .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upYciiP6QW .container {
    padding: 0 26px;
  }
}
.cid-upYciiP6QW .row {
  justify-content: center;
}
.cid-upYciiP6QW .item {
  margin-bottom: 32px;
}
.cid-upYciiP6QW .item a {
  display: block;
}
.cid-upYciiP6QW .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upYciiP6QW .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upYciiP6QW .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upYciiP6QW .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-upYciiP6QW .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upYciiP6QW .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upYciiP6QW .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-upYciiP6QW .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upYciiP6QW .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upYciiP6QW .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upYciiP6QW .item-title {
  color: #ffffff;
}
.cid-upYciiP6QW .mbr-date {
  color: #cacaca;
}
.cid-upYciiP6QW .mbr-desc {
  color: #cacaca;
}
.cid-upYcijgtaq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upYcijgtaq .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYcijgtaq .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-upYcijgtaq .container {
    padding: 0 16px;
  }
}
.cid-upYcijgtaq .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upYcijgtaq .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYcijgtaq .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upYcijgtaq .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYcijgtaq .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upYcijgtaq .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upYcijgtaq .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upYcijgtaq .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upYcijgtaq .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upYcijgtaq .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-upYcijgtaq .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upYcijgtaq .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upYcijgtaq .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upYcijgtaq .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upYcijgtaq .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upYcijgtaq .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upYcijgtaq .dragArea.row .form-group .form-control:hover,
.cid-upYcijgtaq .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upYcijgtaq .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upYcijgtaq .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upYcijgtaq .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upYcijgtaq .mbr-title {
  color: #ffffff;
}
.cid-upYcijgtaq .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upYcijgtaq .mbr-section-subtitle {
  color: #08323C;
}
.cid-upYcijgtaq .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upYcijgtaq .list {
  color: #08323C;
}
.cid-upYcijgtaq label {
  color: #08323C;
}
.cid-upYcijgtaq H3 {
  color: #000000;
}
.cid-upYcijgtaq P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upYbfkIGyJ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYbfkIGyJ H1 {
  text-align: center;
}
.cid-uDmDWCVXCM {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmDWCVXCM .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmDWCVXCM .video-block {
    width: 100% !important;
  }
}
.cid-upYbflcgFi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYbflyVhH {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upYbflyVhH .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYbflyVhH .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYbflyVhH .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYbflyVhH .box {
  left: 20%;
}
.cid-upYbflyVhH .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upYbflyVhH .mbr-section-text,
.cid-upYbflyVhH .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upYbflyVhH .text-box {
    display: none;
  }
  .cid-upYbflyVhH .mbr-section-title,
  .cid-upYbflyVhH .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYbflyVhH .box {
    display: none;
  }
  .cid-upYbflyVhH .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYbflyVhH .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYbflyVhH .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYbflyVhH .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYbflyVhH .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYbflyVhH .mbr-section-text DIV {
  text-align: center;
}
.cid-upYbflVXb7 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYbflVXb7 H1 {
  text-align: center;
}
.cid-upYbfmh1oC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYbfmAu2P {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYbfmAu2P h2 {
  text-align: left;
}
.cid-upYbfmAu2P h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYbfmAu2P p {
  color: #767676;
  text-align: left;
}
.cid-upYbfmAu2P .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYbfmAu2P .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYbfmAu2P .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYbfmAu2P .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYbfmAu2P .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYbfmAu2P .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYbfmAu2P .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYbfmAu2P .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYbfmAu2P .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYbfmAu2P H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upYbfmAu2P P {
  color: #ffffff;
  text-align: left;
}
.cid-upYbfmAu2P H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upYbfn0XPZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYbfn0XPZ H1 {
  color: #000000;
}
.cid-uxjCw3AROw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjCw3AROw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjCw3AROw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjCw3AROw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjCw3AROw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjCw3AROw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjCw3AROw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjCw3AROw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjCw3AROw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjCw3AROw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjCw3AROw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjCw3AROw .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-uxjCw3AROw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjCw3AROw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjCw3AROw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjCw3AROw .mbr-text,
.cid-uxjCw3AROw .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upYbfnRtu3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYbfnRtu3 H1 {
  color: #000000;
}
.cid-uxjCwKXh23 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjCwKXh23 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjCwKXh23 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjCwKXh23 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjCwKXh23 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjCwKXh23 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjCwKXh23 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjCwKXh23 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjCwKXh23 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjCwKXh23 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjCwKXh23 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjCwKXh23 .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-uxjCwKXh23 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjCwKXh23 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjCwKXh23 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjCwKXh23 .mbr-text,
.cid-uxjCwKXh23 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYbfoMztu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYbfoMztu H1 {
  color: #000000;
}
.cid-uxjCxlStrH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjCxlStrH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjCxlStrH .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjCxlStrH .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjCxlStrH .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjCxlStrH .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjCxlStrH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjCxlStrH .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjCxlStrH .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjCxlStrH .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjCxlStrH .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjCxlStrH .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-uxjCxlStrH .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjCxlStrH .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjCxlStrH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjCxlStrH .mbr-text,
.cid-uxjCxlStrH .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjCy1KWTY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjCy1KWTY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjCy1KWTY .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjCy1KWTY .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjCy1KWTY .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjCy1KWTY .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjCy1KWTY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjCy1KWTY .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjCy1KWTY .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjCy1KWTY .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjCy1KWTY .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjCy1KWTY .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-uxjCy1KWTY .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjCy1KWTY .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjCy1KWTY .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjCy1KWTY .mbr-text,
.cid-uxjCy1KWTY .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYbfqgJBj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upYbfqgJBj H1 {
  color: #000000;
}
.cid-uxjCzls37W {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjCzls37W h2 {
  text-align: left;
}
.cid-uxjCzls37W h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjCzls37W p {
  color: #767676;
  text-align: left;
}
.cid-uxjCzls37W .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjCzls37W .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjCzls37W .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjCzls37W .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjCzls37W .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjCzls37W .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjCzls37W .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjCzls37W .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjCzls37W .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjCzls37W .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjCzls37W .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYbfr3ivo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upYbfr3ivo .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYbfr3ivo .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYbfr3ivo .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYbfr3ivo .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upYbfr3ivo .box {
  right: 20%;
}
.cid-upYbfr3ivo .text-box {
  right: 0;
}
.cid-upYbfr3ivo .mbr-section-title,
.cid-upYbfr3ivo .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upYbfr3ivo .text-box {
    display: none;
  }
  .cid-upYbfr3ivo .mbr-section-title,
  .cid-upYbfr3ivo .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYbfr3ivo .box {
    display: none;
  }
  .cid-upYbfr3ivo .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYbfr3ivo .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYbfr3ivo .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYbfr3ivo .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYbfr3ivo .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYbfr3ivo .mbr-section-text DIV {
  text-align: center;
}
.cid-upYbfrrKTc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYbfrQdxG {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upYbfrQdxG h2 {
  text-align: left;
}
.cid-upYbfrQdxG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYbfrQdxG p {
  color: #767676;
  text-align: left;
}
.cid-upYbfrQdxG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYbfrQdxG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYbfrQdxG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYbfrQdxG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYbfrQdxG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYbfrQdxG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYbfrQdxG .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYbfrQdxG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYbfrQdxG .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYbfrQdxG .mbr-text {
  color: #232323;
}
.cid-upYbfsfAAM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upYbfsfAAM .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYbfsfAAM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upYbfsfAAM .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upYbfsfAAM .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upYbfsfAAM .container {
    padding: 0 26px;
  }
}
.cid-upYbfsfAAM .row {
  justify-content: center;
}
.cid-upYbfsfAAM .item {
  margin-bottom: 32px;
}
.cid-upYbfsfAAM .item a {
  display: block;
}
.cid-upYbfsfAAM .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upYbfsfAAM .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upYbfsfAAM .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upYbfsfAAM .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-upYbfsfAAM .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upYbfsfAAM .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upYbfsfAAM .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-upYbfsfAAM .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upYbfsfAAM .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upYbfsfAAM .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upYbfsfAAM .item-title {
  color: #ffffff;
}
.cid-upYbfsfAAM .mbr-date {
  color: #cacaca;
}
.cid-upYbfsfAAM .mbr-desc {
  color: #cacaca;
}
.cid-upYbfsFsKS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upYbfsFsKS .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYbfsFsKS .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-upYbfsFsKS .container {
    padding: 0 16px;
  }
}
.cid-upYbfsFsKS .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upYbfsFsKS .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYbfsFsKS .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upYbfsFsKS .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYbfsFsKS .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upYbfsFsKS .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upYbfsFsKS .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upYbfsFsKS .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upYbfsFsKS .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upYbfsFsKS .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-upYbfsFsKS .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upYbfsFsKS .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upYbfsFsKS .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upYbfsFsKS .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upYbfsFsKS .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upYbfsFsKS .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upYbfsFsKS .dragArea.row .form-group .form-control:hover,
.cid-upYbfsFsKS .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upYbfsFsKS .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upYbfsFsKS .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upYbfsFsKS .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upYbfsFsKS .mbr-title {
  color: #ffffff;
}
.cid-upYbfsFsKS .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upYbfsFsKS .mbr-section-subtitle {
  color: #08323C;
}
.cid-upYbfsFsKS .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upYbfsFsKS .list {
  color: #08323C;
}
.cid-upYbfsFsKS label {
  color: #08323C;
}
.cid-upYbfsFsKS H3 {
  color: #000000;
}
.cid-upYbfsFsKS P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upYiX4sQkf {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYiX4sQkf H1 {
  text-align: center;
}
.cid-uDmEpEo5fX {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmEpEo5fX .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmEpEo5fX .video-block {
    width: 100% !important;
  }
}
.cid-upYiX51StN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYiX5rkAq {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upYiX5rkAq .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYiX5rkAq .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYiX5rkAq .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYiX5rkAq .box {
  left: 20%;
}
.cid-upYiX5rkAq .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upYiX5rkAq .mbr-section-text,
.cid-upYiX5rkAq .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upYiX5rkAq .text-box {
    display: none;
  }
  .cid-upYiX5rkAq .mbr-section-title,
  .cid-upYiX5rkAq .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYiX5rkAq .box {
    display: none;
  }
  .cid-upYiX5rkAq .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYiX5rkAq .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYiX5rkAq .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYiX5rkAq .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYiX5rkAq .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYiX5rkAq .mbr-section-text DIV {
  text-align: center;
}
.cid-upYiX5S4cw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYiX5S4cw H1 {
  text-align: center;
}
.cid-upYiX6ksS7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYiX6JCaG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYiX6JCaG h2 {
  text-align: left;
}
.cid-upYiX6JCaG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYiX6JCaG p {
  color: #767676;
  text-align: left;
}
.cid-upYiX6JCaG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYiX6JCaG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYiX6JCaG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYiX6JCaG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYiX6JCaG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYiX6JCaG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYiX6JCaG .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYiX6JCaG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYiX6JCaG .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYiX6JCaG H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upYiX6JCaG P {
  color: #ffffff;
  text-align: left;
}
.cid-upYiX6JCaG H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upYiX7fw6q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYiX7fw6q H1 {
  color: #000000;
}
.cid-uxjEcldX5h {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjEcldX5h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjEcldX5h .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjEcldX5h .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjEcldX5h .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjEcldX5h .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjEcldX5h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjEcldX5h .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjEcldX5h .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjEcldX5h .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjEcldX5h .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjEcldX5h .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-uxjEcldX5h .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjEcldX5h .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjEcldX5h .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjEcldX5h .mbr-text,
.cid-uxjEcldX5h .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upYiX8kLSN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYiX8kLSN H1 {
  color: #000000;
}
.cid-uxjEcWsZQ8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjEcWsZQ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjEcWsZQ8 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjEcWsZQ8 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjEcWsZQ8 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjEcWsZQ8 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjEcWsZQ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjEcWsZQ8 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjEcWsZQ8 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjEcWsZQ8 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjEcWsZQ8 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjEcWsZQ8 .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-uxjEcWsZQ8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjEcWsZQ8 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjEcWsZQ8 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjEcWsZQ8 .mbr-text,
.cid-uxjEcWsZQ8 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYiX9qNWQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYiX9qNWQ H1 {
  color: #000000;
}
.cid-uxjEdEHbQ1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjEdEHbQ1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjEdEHbQ1 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjEdEHbQ1 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjEdEHbQ1 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjEdEHbQ1 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjEdEHbQ1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjEdEHbQ1 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjEdEHbQ1 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjEdEHbQ1 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjEdEHbQ1 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjEdEHbQ1 .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-uxjEdEHbQ1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjEdEHbQ1 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjEdEHbQ1 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjEdEHbQ1 .mbr-text,
.cid-uxjEdEHbQ1 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjEegpGbb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjEegpGbb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjEegpGbb .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjEegpGbb .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjEegpGbb .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjEegpGbb .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjEegpGbb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjEegpGbb .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjEegpGbb .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjEegpGbb .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjEegpGbb .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjEegpGbb .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-uxjEegpGbb .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjEegpGbb .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjEegpGbb .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjEegpGbb .mbr-text,
.cid-uxjEegpGbb .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYiXbfzt8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upYiXbfzt8 H1 {
  color: #000000;
}
.cid-uxjEfNjq61 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjEfNjq61 h2 {
  text-align: left;
}
.cid-uxjEfNjq61 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjEfNjq61 p {
  color: #767676;
  text-align: left;
}
.cid-uxjEfNjq61 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjEfNjq61 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjEfNjq61 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjEfNjq61 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjEfNjq61 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjEfNjq61 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjEfNjq61 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjEfNjq61 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjEfNjq61 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjEfNjq61 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjEfNjq61 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYiXce66H {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upYiXce66H .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYiXce66H .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYiXce66H .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYiXce66H .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upYiXce66H .box {
  right: 20%;
}
.cid-upYiXce66H .text-box {
  right: 0;
}
.cid-upYiXce66H .mbr-section-title,
.cid-upYiXce66H .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upYiXce66H .text-box {
    display: none;
  }
  .cid-upYiXce66H .mbr-section-title,
  .cid-upYiXce66H .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYiXce66H .box {
    display: none;
  }
  .cid-upYiXce66H .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYiXce66H .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYiXce66H .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYiXce66H .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYiXce66H .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYiXce66H .mbr-section-text DIV {
  text-align: center;
}
.cid-upYiXcJ7jM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYiXddeWe {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upYiXddeWe h2 {
  text-align: left;
}
.cid-upYiXddeWe h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYiXddeWe p {
  color: #767676;
  text-align: left;
}
.cid-upYiXddeWe .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYiXddeWe .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYiXddeWe .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYiXddeWe .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYiXddeWe .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYiXddeWe .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYiXddeWe .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYiXddeWe .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYiXddeWe .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYiXddeWe .mbr-text {
  color: #232323;
}
.cid-upYiXdIyqT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upYiXdIyqT .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYiXdIyqT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upYiXdIyqT .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upYiXdIyqT .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upYiXdIyqT .container {
    padding: 0 26px;
  }
}
.cid-upYiXdIyqT .row {
  justify-content: center;
}
.cid-upYiXdIyqT .item {
  margin-bottom: 32px;
}
.cid-upYiXdIyqT .item a {
  display: block;
}
.cid-upYiXdIyqT .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upYiXdIyqT .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upYiXdIyqT .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upYiXdIyqT .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-upYiXdIyqT .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upYiXdIyqT .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upYiXdIyqT .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-upYiXdIyqT .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upYiXdIyqT .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upYiXdIyqT .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upYiXdIyqT .item-title {
  color: #ffffff;
}
.cid-upYiXdIyqT .mbr-date {
  color: #cacaca;
}
.cid-upYiXdIyqT .mbr-desc {
  color: #cacaca;
}
.cid-upYiXefQyj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upYiXefQyj .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYiXefQyj .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-upYiXefQyj .container {
    padding: 0 16px;
  }
}
.cid-upYiXefQyj .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upYiXefQyj .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYiXefQyj .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upYiXefQyj .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYiXefQyj .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upYiXefQyj .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upYiXefQyj .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upYiXefQyj .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upYiXefQyj .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upYiXefQyj .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-upYiXefQyj .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upYiXefQyj .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upYiXefQyj .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upYiXefQyj .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upYiXefQyj .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upYiXefQyj .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upYiXefQyj .dragArea.row .form-group .form-control:hover,
.cid-upYiXefQyj .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upYiXefQyj .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upYiXefQyj .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upYiXefQyj .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upYiXefQyj .mbr-title {
  color: #ffffff;
}
.cid-upYiXefQyj .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upYiXefQyj .mbr-section-subtitle {
  color: #08323C;
}
.cid-upYiXefQyj .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upYiXefQyj .list {
  color: #08323C;
}
.cid-upYiXefQyj label {
  color: #08323C;
}
.cid-upYiXefQyj H3 {
  color: #000000;
}
.cid-upYiXefQyj P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upYTKGZUjd {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYTKGZUjd H1 {
  text-align: center;
}
.cid-uDmEs8TXTV {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmEs8TXTV .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmEs8TXTV .video-block {
    width: 100% !important;
  }
}
.cid-upYTKHo8LV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYTKHAVrX {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upYTKHAVrX .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYTKHAVrX .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYTKHAVrX .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYTKHAVrX .box {
  left: 20%;
}
.cid-upYTKHAVrX .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upYTKHAVrX .mbr-section-text,
.cid-upYTKHAVrX .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upYTKHAVrX .text-box {
    display: none;
  }
  .cid-upYTKHAVrX .mbr-section-title,
  .cid-upYTKHAVrX .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYTKHAVrX .box {
    display: none;
  }
  .cid-upYTKHAVrX .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYTKHAVrX .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYTKHAVrX .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYTKHAVrX .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYTKHAVrX .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYTKHAVrX .mbr-section-text DIV {
  text-align: center;
}
.cid-upYTKHM90s {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYTKHM90s H1 {
  text-align: center;
}
.cid-upYTKHXsT0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYTKI5MG0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYTKI5MG0 h2 {
  text-align: left;
}
.cid-upYTKI5MG0 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYTKI5MG0 p {
  color: #767676;
  text-align: left;
}
.cid-upYTKI5MG0 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYTKI5MG0 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYTKI5MG0 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYTKI5MG0 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYTKI5MG0 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYTKI5MG0 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYTKI5MG0 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYTKI5MG0 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYTKI5MG0 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYTKI5MG0 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upYTKI5MG0 P {
  color: #ffffff;
  text-align: left;
}
.cid-upYTKI5MG0 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upYTKIneJW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYTKIneJW H1 {
  color: #000000;
}
.cid-upZ2MtBuSA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upZ2MtBuSA .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZ2MtBuSA .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upZ2MtBuSA .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upZ2MtBuSA .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upZ2MtBuSA .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upZ2MtBuSA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZ2MtBuSA .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upZ2MtBuSA .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upZ2MtBuSA .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upZ2MtBuSA .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upZ2MtBuSA .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-upZ2MtBuSA .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upZ2MtBuSA .image-wrapper {
    padding: 1rem;
  }
}
.cid-upZ2MtBuSA .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upZ2MtBuSA .mbr-text,
.cid-upZ2MtBuSA .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upYTKIZd7l {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYTKIZd7l H1 {
  color: #000000;
}
.cid-uxjEFyIkgN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjEFyIkgN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjEFyIkgN .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjEFyIkgN .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjEFyIkgN .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjEFyIkgN .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjEFyIkgN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjEFyIkgN .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjEFyIkgN .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjEFyIkgN .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjEFyIkgN .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjEFyIkgN .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-uxjEFyIkgN .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjEFyIkgN .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjEFyIkgN .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjEFyIkgN .mbr-text,
.cid-uxjEFyIkgN .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYTKJwz7d {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYTKJwz7d H1 {
  color: #000000;
}
.cid-uxjEGffIxd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjEGffIxd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjEGffIxd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjEGffIxd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjEGffIxd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjEGffIxd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjEGffIxd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjEGffIxd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjEGffIxd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjEGffIxd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjEGffIxd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjEGffIxd .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-uxjEGffIxd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjEGffIxd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjEGffIxd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjEGffIxd .mbr-text,
.cid-uxjEGffIxd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjEGTmjd2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjEGTmjd2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjEGTmjd2 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjEGTmjd2 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjEGTmjd2 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjEGTmjd2 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjEGTmjd2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjEGTmjd2 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjEGTmjd2 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjEGTmjd2 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjEGTmjd2 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjEGTmjd2 .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-uxjEGTmjd2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjEGTmjd2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjEGTmjd2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjEGTmjd2 .mbr-text,
.cid-uxjEGTmjd2 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYTKKq7vb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upYTKKq7vb H1 {
  color: #000000;
}
.cid-uxjEIg06Yt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjEIg06Yt h2 {
  text-align: left;
}
.cid-uxjEIg06Yt h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjEIg06Yt p {
  color: #767676;
  text-align: left;
}
.cid-uxjEIg06Yt .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjEIg06Yt .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjEIg06Yt .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjEIg06Yt .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjEIg06Yt .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjEIg06Yt .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjEIg06Yt .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjEIg06Yt .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjEIg06Yt .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjEIg06Yt .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjEIg06Yt .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYTKKU95c {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upYTKKU95c .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYTKKU95c .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYTKKU95c .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYTKKU95c .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upYTKKU95c .box {
  right: 20%;
}
.cid-upYTKKU95c .text-box {
  right: 0;
}
.cid-upYTKKU95c .mbr-section-title,
.cid-upYTKKU95c .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upYTKKU95c .text-box {
    display: none;
  }
  .cid-upYTKKU95c .mbr-section-title,
  .cid-upYTKKU95c .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYTKKU95c .box {
    display: none;
  }
  .cid-upYTKKU95c .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYTKKU95c .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYTKKU95c .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYTKKU95c .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYTKKU95c .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYTKKU95c .mbr-section-text DIV {
  text-align: center;
}
.cid-upYTKL71UY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYTKLkgWE {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upYTKLkgWE h2 {
  text-align: left;
}
.cid-upYTKLkgWE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYTKLkgWE p {
  color: #767676;
  text-align: left;
}
.cid-upYTKLkgWE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYTKLkgWE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYTKLkgWE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYTKLkgWE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYTKLkgWE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYTKLkgWE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYTKLkgWE .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYTKLkgWE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYTKLkgWE .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYTKLkgWE .mbr-text {
  color: #232323;
}
.cid-upYTKLyOjG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upYTKLyOjG .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYTKLyOjG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upYTKLyOjG .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upYTKLyOjG .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upYTKLyOjG .container {
    padding: 0 26px;
  }
}
.cid-upYTKLyOjG .row {
  justify-content: center;
}
.cid-upYTKLyOjG .item {
  margin-bottom: 32px;
}
.cid-upYTKLyOjG .item a {
  display: block;
}
.cid-upYTKLyOjG .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upYTKLyOjG .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upYTKLyOjG .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upYTKLyOjG .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-upYTKLyOjG .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upYTKLyOjG .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upYTKLyOjG .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-upYTKLyOjG .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upYTKLyOjG .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upYTKLyOjG .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upYTKLyOjG .item-title {
  color: #ffffff;
}
.cid-upYTKLyOjG .mbr-date {
  color: #cacaca;
}
.cid-upYTKLyOjG .mbr-desc {
  color: #cacaca;
}
.cid-upYTKLPacF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upYTKLPacF .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYTKLPacF .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-upYTKLPacF .container {
    padding: 0 16px;
  }
}
.cid-upYTKLPacF .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upYTKLPacF .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYTKLPacF .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upYTKLPacF .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYTKLPacF .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upYTKLPacF .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upYTKLPacF .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upYTKLPacF .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upYTKLPacF .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upYTKLPacF .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-upYTKLPacF .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upYTKLPacF .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upYTKLPacF .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upYTKLPacF .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upYTKLPacF .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upYTKLPacF .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upYTKLPacF .dragArea.row .form-group .form-control:hover,
.cid-upYTKLPacF .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upYTKLPacF .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upYTKLPacF .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upYTKLPacF .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upYTKLPacF .mbr-title {
  color: #ffffff;
}
.cid-upYTKLPacF .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upYTKLPacF .mbr-section-subtitle {
  color: #08323C;
}
.cid-upYTKLPacF .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upYTKLPacF .list {
  color: #08323C;
}
.cid-upYTKLPacF label {
  color: #08323C;
}
.cid-upYTKLPacF H3 {
  color: #000000;
}
.cid-upYTKLPacF P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upYVPafozP {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYVPafozP H1 {
  text-align: center;
}
.cid-uDmEusHSJs {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmEusHSJs .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmEusHSJs .video-block {
    width: 100% !important;
  }
}
.cid-upYVPauEu5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYVPaIX6r {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upYVPaIX6r .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYVPaIX6r .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYVPaIX6r .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYVPaIX6r .box {
  left: 20%;
}
.cid-upYVPaIX6r .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upYVPaIX6r .mbr-section-text,
.cid-upYVPaIX6r .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upYVPaIX6r .text-box {
    display: none;
  }
  .cid-upYVPaIX6r .mbr-section-title,
  .cid-upYVPaIX6r .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYVPaIX6r .box {
    display: none;
  }
  .cid-upYVPaIX6r .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYVPaIX6r .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYVPaIX6r .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYVPaIX6r .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYVPaIX6r .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYVPaIX6r .mbr-section-text DIV {
  text-align: center;
}
.cid-upYVPaSzwa {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYVPaSzwa H1 {
  text-align: center;
}
.cid-upYVPb3NbF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYVPbbY4q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYVPbbY4q h2 {
  text-align: left;
}
.cid-upYVPbbY4q h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYVPbbY4q p {
  color: #767676;
  text-align: left;
}
.cid-upYVPbbY4q .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYVPbbY4q .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYVPbbY4q .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYVPbbY4q .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYVPbbY4q .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYVPbbY4q .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYVPbbY4q .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYVPbbY4q .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYVPbbY4q .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYVPbbY4q H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upYVPbbY4q P {
  color: #ffffff;
  text-align: left;
}
.cid-upYVPbbY4q H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upYVPbqtg6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYVPbqtg6 H1 {
  color: #000000;
}
.cid-uxjEQGd2Xc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjEQGd2Xc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjEQGd2Xc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjEQGd2Xc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjEQGd2Xc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjEQGd2Xc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjEQGd2Xc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjEQGd2Xc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjEQGd2Xc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjEQGd2Xc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjEQGd2Xc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjEQGd2Xc .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-uxjEQGd2Xc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjEQGd2Xc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjEQGd2Xc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjEQGd2Xc .mbr-text,
.cid-uxjEQGd2Xc .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upYVPbWa84 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYVPbWa84 H1 {
  color: #000000;
}
.cid-uxjERukYbx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjERukYbx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjERukYbx .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjERukYbx .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjERukYbx .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjERukYbx .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjERukYbx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjERukYbx .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjERukYbx .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjERukYbx .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjERukYbx .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjERukYbx .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-uxjERukYbx .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjERukYbx .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjERukYbx .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjERukYbx .mbr-text,
.cid-uxjERukYbx .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYVPctR3r {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYVPctR3r H1 {
  color: #000000;
}
.cid-uxjES8oyJp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjES8oyJp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjES8oyJp .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjES8oyJp .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjES8oyJp .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjES8oyJp .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjES8oyJp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjES8oyJp .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjES8oyJp .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjES8oyJp .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjES8oyJp .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjES8oyJp .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-uxjES8oyJp .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjES8oyJp .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjES8oyJp .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjES8oyJp .mbr-text,
.cid-uxjES8oyJp .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjESUI6FG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjESUI6FG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjESUI6FG .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjESUI6FG .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjESUI6FG .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjESUI6FG .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjESUI6FG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjESUI6FG .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjESUI6FG .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjESUI6FG .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjESUI6FG .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjESUI6FG .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-uxjESUI6FG .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjESUI6FG .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjESUI6FG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjESUI6FG .mbr-text,
.cid-uxjESUI6FG .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYVPdnSRl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upYVPdnSRl H1 {
  color: #000000;
}
.cid-uxjEUGfzcf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjEUGfzcf h2 {
  text-align: left;
}
.cid-uxjEUGfzcf h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjEUGfzcf p {
  color: #767676;
  text-align: left;
}
.cid-uxjEUGfzcf .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjEUGfzcf .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjEUGfzcf .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjEUGfzcf .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjEUGfzcf .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjEUGfzcf .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjEUGfzcf .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjEUGfzcf .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjEUGfzcf .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjEUGfzcf .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjEUGfzcf .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYVPdOLHK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upYVPdOLHK .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYVPdOLHK .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYVPdOLHK .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYVPdOLHK .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upYVPdOLHK .box {
  right: 20%;
}
.cid-upYVPdOLHK .text-box {
  right: 0;
}
.cid-upYVPdOLHK .mbr-section-title,
.cid-upYVPdOLHK .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upYVPdOLHK .text-box {
    display: none;
  }
  .cid-upYVPdOLHK .mbr-section-title,
  .cid-upYVPdOLHK .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYVPdOLHK .box {
    display: none;
  }
  .cid-upYVPdOLHK .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYVPdOLHK .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYVPdOLHK .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYVPdOLHK .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYVPdOLHK .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYVPdOLHK .mbr-section-text DIV {
  text-align: center;
}
.cid-upYVPe57aN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYVPejzCS {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upYVPejzCS h2 {
  text-align: left;
}
.cid-upYVPejzCS h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYVPejzCS p {
  color: #767676;
  text-align: left;
}
.cid-upYVPejzCS .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYVPejzCS .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYVPejzCS .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYVPejzCS .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYVPejzCS .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYVPejzCS .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYVPejzCS .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYVPejzCS .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYVPejzCS .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYVPejzCS .mbr-text {
  color: #232323;
}
.cid-upYVPeyYAo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upYVPeyYAo .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYVPeyYAo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upYVPeyYAo .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upYVPeyYAo .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upYVPeyYAo .container {
    padding: 0 26px;
  }
}
.cid-upYVPeyYAo .row {
  justify-content: center;
}
.cid-upYVPeyYAo .item {
  margin-bottom: 32px;
}
.cid-upYVPeyYAo .item a {
  display: block;
}
.cid-upYVPeyYAo .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upYVPeyYAo .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upYVPeyYAo .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upYVPeyYAo .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-upYVPeyYAo .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upYVPeyYAo .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upYVPeyYAo .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-upYVPeyYAo .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upYVPeyYAo .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upYVPeyYAo .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upYVPeyYAo .item-title {
  color: #ffffff;
}
.cid-upYVPeyYAo .mbr-date {
  color: #cacaca;
}
.cid-upYVPeyYAo .mbr-desc {
  color: #cacaca;
}
.cid-upYVPeOTHc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upYVPeOTHc .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYVPeOTHc .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-upYVPeOTHc .container {
    padding: 0 16px;
  }
}
.cid-upYVPeOTHc .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upYVPeOTHc .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYVPeOTHc .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upYVPeOTHc .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYVPeOTHc .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upYVPeOTHc .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upYVPeOTHc .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upYVPeOTHc .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upYVPeOTHc .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upYVPeOTHc .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-upYVPeOTHc .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upYVPeOTHc .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upYVPeOTHc .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upYVPeOTHc .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upYVPeOTHc .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upYVPeOTHc .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upYVPeOTHc .dragArea.row .form-group .form-control:hover,
.cid-upYVPeOTHc .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upYVPeOTHc .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upYVPeOTHc .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upYVPeOTHc .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upYVPeOTHc .mbr-title {
  color: #ffffff;
}
.cid-upYVPeOTHc .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upYVPeOTHc .mbr-section-subtitle {
  color: #08323C;
}
.cid-upYVPeOTHc .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upYVPeOTHc .list {
  color: #08323C;
}
.cid-upYVPeOTHc label {
  color: #08323C;
}
.cid-upYVPeOTHc H3 {
  color: #000000;
}
.cid-upYVPeOTHc P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upYXhEt3H2 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYXhEt3H2 H1 {
  text-align: center;
}
.cid-uDmEx58Wg7 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmEx58Wg7 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmEx58Wg7 .video-block {
    width: 100% !important;
  }
}
.cid-upYXhESpWi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYXhF71H5 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upYXhF71H5 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYXhF71H5 .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYXhF71H5 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYXhF71H5 .box {
  left: 20%;
}
.cid-upYXhF71H5 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upYXhF71H5 .mbr-section-text,
.cid-upYXhF71H5 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upYXhF71H5 .text-box {
    display: none;
  }
  .cid-upYXhF71H5 .mbr-section-title,
  .cid-upYXhF71H5 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYXhF71H5 .box {
    display: none;
  }
  .cid-upYXhF71H5 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYXhF71H5 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYXhF71H5 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYXhF71H5 .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYXhF71H5 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYXhF71H5 .mbr-section-text DIV {
  text-align: center;
}
.cid-upYXhFlQLy {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYXhFlQLy H1 {
  text-align: center;
}
.cid-upYXhFu4Wz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYXhFDX44 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upYXhFDX44 h2 {
  text-align: left;
}
.cid-upYXhFDX44 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYXhFDX44 p {
  color: #767676;
  text-align: left;
}
.cid-upYXhFDX44 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYXhFDX44 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYXhFDX44 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYXhFDX44 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYXhFDX44 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYXhFDX44 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYXhFDX44 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYXhFDX44 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYXhFDX44 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYXhFDX44 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upYXhFDX44 P {
  color: #ffffff;
  text-align: left;
}
.cid-upYXhFDX44 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upYXhFSc1t {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYXhFSc1t H1 {
  color: #000000;
}
.cid-uxjFdgPXSZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjFdgPXSZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjFdgPXSZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjFdgPXSZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjFdgPXSZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjFdgPXSZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjFdgPXSZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjFdgPXSZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjFdgPXSZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjFdgPXSZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjFdgPXSZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjFdgPXSZ .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-uxjFdgPXSZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjFdgPXSZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjFdgPXSZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjFdgPXSZ .mbr-text,
.cid-uxjFdgPXSZ .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upYXhGqYLk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYXhGqYLk H1 {
  color: #000000;
}
.cid-uxjFdUf76P {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjFdUf76P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjFdUf76P .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjFdUf76P .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjFdUf76P .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjFdUf76P .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjFdUf76P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjFdUf76P .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjFdUf76P .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjFdUf76P .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjFdUf76P .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjFdUf76P .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-uxjFdUf76P .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjFdUf76P .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjFdUf76P .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjFdUf76P .mbr-text,
.cid-uxjFdUf76P .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYXhGZwI1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upYXhGZwI1 H1 {
  color: #000000;
}
.cid-uxjFeEwEXD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjFeEwEXD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjFeEwEXD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjFeEwEXD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjFeEwEXD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjFeEwEXD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjFeEwEXD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjFeEwEXD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjFeEwEXD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjFeEwEXD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjFeEwEXD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjFeEwEXD .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-uxjFeEwEXD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjFeEwEXD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjFeEwEXD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjFeEwEXD .mbr-text,
.cid-uxjFeEwEXD .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjFfgyNSv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjFfgyNSv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjFfgyNSv .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjFfgyNSv .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjFfgyNSv .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjFfgyNSv .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjFfgyNSv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjFfgyNSv .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjFfgyNSv .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjFfgyNSv .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjFfgyNSv .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjFfgyNSv .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-uxjFfgyNSv .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjFfgyNSv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjFfgyNSv .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjFfgyNSv .mbr-text,
.cid-uxjFfgyNSv .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upYXhI2bMo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upYXhI2bMo H1 {
  color: #000000;
}
.cid-uxjFgrRDIL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjFgrRDIL h2 {
  text-align: left;
}
.cid-uxjFgrRDIL h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjFgrRDIL p {
  color: #767676;
  text-align: left;
}
.cid-uxjFgrRDIL .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjFgrRDIL .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjFgrRDIL .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjFgrRDIL .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjFgrRDIL .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjFgrRDIL .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjFgrRDIL .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjFgrRDIL .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjFgrRDIL .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjFgrRDIL .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjFgrRDIL .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxjFhCWbCj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjFhCWbCj H1 {
  color: #000000;
}
.cid-upYXhIu7Rv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upYXhIu7Rv .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upYXhIu7Rv .text-block {
  position: relative;
  z-index: 0;
}
.cid-upYXhIu7Rv .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upYXhIu7Rv .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upYXhIu7Rv .box {
  right: 20%;
}
.cid-upYXhIu7Rv .text-box {
  right: 0;
}
.cid-upYXhIu7Rv .mbr-section-title,
.cid-upYXhIu7Rv .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upYXhIu7Rv .text-box {
    display: none;
  }
  .cid-upYXhIu7Rv .mbr-section-title,
  .cid-upYXhIu7Rv .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upYXhIu7Rv .box {
    display: none;
  }
  .cid-upYXhIu7Rv .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upYXhIu7Rv .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upYXhIu7Rv .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upYXhIu7Rv .mbr-section-text {
  color: #c1c1c1;
}
.cid-upYXhIu7Rv .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upYXhIu7Rv .mbr-section-text DIV {
  text-align: center;
}
.cid-upYXhIK7Dx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upYXhJ0vCQ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upYXhJ0vCQ h2 {
  text-align: left;
}
.cid-upYXhJ0vCQ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upYXhJ0vCQ p {
  color: #767676;
  text-align: left;
}
.cid-upYXhJ0vCQ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upYXhJ0vCQ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upYXhJ0vCQ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upYXhJ0vCQ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upYXhJ0vCQ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upYXhJ0vCQ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upYXhJ0vCQ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upYXhJ0vCQ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upYXhJ0vCQ .card-img span {
    font-size: 40px !important;
  }
}
.cid-upYXhJ0vCQ .mbr-text {
  color: #232323;
}
.cid-upYXhJg2EP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upYXhJg2EP .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYXhJg2EP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upYXhJg2EP .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upYXhJg2EP .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upYXhJg2EP .container {
    padding: 0 26px;
  }
}
.cid-upYXhJg2EP .row {
  justify-content: center;
}
.cid-upYXhJg2EP .item {
  margin-bottom: 32px;
}
.cid-upYXhJg2EP .item a {
  display: block;
}
.cid-upYXhJg2EP .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upYXhJg2EP .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upYXhJg2EP .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upYXhJg2EP .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-upYXhJg2EP .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upYXhJg2EP .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upYXhJg2EP .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-upYXhJg2EP .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upYXhJg2EP .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upYXhJg2EP .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upYXhJg2EP .item-title {
  color: #ffffff;
}
.cid-upYXhJg2EP .mbr-date {
  color: #cacaca;
}
.cid-upYXhJg2EP .mbr-desc {
  color: #cacaca;
}
.cid-upYXhJxWgB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upYXhJxWgB .mbr-fallback-image.disabled {
  display: none;
}
.cid-upYXhJxWgB .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-upYXhJxWgB .container {
    padding: 0 16px;
  }
}
.cid-upYXhJxWgB .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upYXhJxWgB .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYXhJxWgB .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upYXhJxWgB .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upYXhJxWgB .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upYXhJxWgB .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upYXhJxWgB .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upYXhJxWgB .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upYXhJxWgB .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upYXhJxWgB .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-upYXhJxWgB .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upYXhJxWgB .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upYXhJxWgB .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upYXhJxWgB .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upYXhJxWgB .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upYXhJxWgB .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upYXhJxWgB .dragArea.row .form-group .form-control:hover,
.cid-upYXhJxWgB .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upYXhJxWgB .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upYXhJxWgB .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upYXhJxWgB .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upYXhJxWgB .mbr-title {
  color: #ffffff;
}
.cid-upYXhJxWgB .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upYXhJxWgB .mbr-section-subtitle {
  color: #08323C;
}
.cid-upYXhJxWgB .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upYXhJxWgB .list {
  color: #08323C;
}
.cid-upYXhJxWgB label {
  color: #08323C;
}
.cid-upYXhJxWgB H3 {
  color: #000000;
}
.cid-upYXhJxWgB P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upZ00CF6fE {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZ00CF6fE H1 {
  text-align: center;
}
.cid-uDmEAr2qPu {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmEAr2qPu .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmEAr2qPu .video-block {
    width: 100% !important;
  }
}
.cid-upZ00CXkON {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZ00D8hsB {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upZ00D8hsB .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZ00D8hsB .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZ00D8hsB .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZ00D8hsB .box {
  left: 20%;
}
.cid-upZ00D8hsB .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upZ00D8hsB .mbr-section-text,
.cid-upZ00D8hsB .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upZ00D8hsB .text-box {
    display: none;
  }
  .cid-upZ00D8hsB .mbr-section-title,
  .cid-upZ00D8hsB .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZ00D8hsB .box {
    display: none;
  }
  .cid-upZ00D8hsB .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZ00D8hsB .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZ00D8hsB .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZ00D8hsB .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZ00D8hsB .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZ00D8hsB .mbr-section-text DIV {
  text-align: center;
}
.cid-upZ00DnP71 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZ00DnP71 H1 {
  text-align: center;
}
.cid-upZ00Dwjkk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZ00DJeEd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZ00DJeEd h2 {
  text-align: left;
}
.cid-upZ00DJeEd h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZ00DJeEd p {
  color: #767676;
  text-align: left;
}
.cid-upZ00DJeEd .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZ00DJeEd .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZ00DJeEd .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZ00DJeEd .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZ00DJeEd .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZ00DJeEd .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZ00DJeEd .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZ00DJeEd .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZ00DJeEd .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZ00DJeEd H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upZ00DJeEd P {
  color: #ffffff;
  text-align: left;
}
.cid-upZ00DJeEd H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upZ00E2nBC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZ00E2nBC H1 {
  color: #000000;
}
.cid-uxjFrvou25 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjFrvou25 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjFrvou25 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjFrvou25 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjFrvou25 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjFrvou25 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjFrvou25 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjFrvou25 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjFrvou25 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjFrvou25 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjFrvou25 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjFrvou25 .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-uxjFrvou25 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjFrvou25 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjFrvou25 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjFrvou25 .mbr-text,
.cid-uxjFrvou25 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upZ00ExWfZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZ00ExWfZ H1 {
  color: #000000;
}
.cid-uxjFs81ugw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjFs81ugw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjFs81ugw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjFs81ugw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjFs81ugw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjFs81ugw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjFs81ugw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjFs81ugw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjFs81ugw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjFs81ugw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjFs81ugw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjFs81ugw .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-uxjFs81ugw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjFs81ugw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjFs81ugw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjFs81ugw .mbr-text,
.cid-uxjFs81ugw .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZ00FaUuu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZ00FaUuu H1 {
  color: #000000;
}
.cid-uxjFsIbHWK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjFsIbHWK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjFsIbHWK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjFsIbHWK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjFsIbHWK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjFsIbHWK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjFsIbHWK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjFsIbHWK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjFsIbHWK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjFsIbHWK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjFsIbHWK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjFsIbHWK .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-uxjFsIbHWK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjFsIbHWK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjFsIbHWK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjFsIbHWK .mbr-text,
.cid-uxjFsIbHWK .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjFtiquAY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjFtiquAY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjFtiquAY .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjFtiquAY .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjFtiquAY .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjFtiquAY .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjFtiquAY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjFtiquAY .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjFtiquAY .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjFtiquAY .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjFtiquAY .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjFtiquAY .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-uxjFtiquAY .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjFtiquAY .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjFtiquAY .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjFtiquAY .mbr-text,
.cid-uxjFtiquAY .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZ00GdqTH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upZ00GdqTH H1 {
  color: #000000;
}
.cid-uxjFuEccaB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjFuEccaB h2 {
  text-align: left;
}
.cid-uxjFuEccaB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjFuEccaB p {
  color: #767676;
  text-align: left;
}
.cid-uxjFuEccaB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjFuEccaB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjFuEccaB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjFuEccaB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjFuEccaB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjFuEccaB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjFuEccaB .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjFuEccaB .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjFuEccaB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjFuEccaB .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjFuEccaB .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZ00GNYnt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upZ00GNYnt .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZ00GNYnt .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZ00GNYnt .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZ00GNYnt .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upZ00GNYnt .box {
  right: 20%;
}
.cid-upZ00GNYnt .text-box {
  right: 0;
}
.cid-upZ00GNYnt .mbr-section-title,
.cid-upZ00GNYnt .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upZ00GNYnt .text-box {
    display: none;
  }
  .cid-upZ00GNYnt .mbr-section-title,
  .cid-upZ00GNYnt .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZ00GNYnt .box {
    display: none;
  }
  .cid-upZ00GNYnt .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZ00GNYnt .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZ00GNYnt .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZ00GNYnt .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZ00GNYnt .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZ00GNYnt .mbr-section-text DIV {
  text-align: center;
}
.cid-upZ00H1gbj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZ00HgM7S {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upZ00HgM7S h2 {
  text-align: left;
}
.cid-upZ00HgM7S h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZ00HgM7S p {
  color: #767676;
  text-align: left;
}
.cid-upZ00HgM7S .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZ00HgM7S .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZ00HgM7S .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZ00HgM7S .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZ00HgM7S .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZ00HgM7S .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZ00HgM7S .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZ00HgM7S .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZ00HgM7S .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZ00HgM7S .mbr-text {
  color: #232323;
}
.cid-upZ00HvYWo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upZ00HvYWo .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZ00HvYWo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZ00HvYWo .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upZ00HvYWo .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upZ00HvYWo .container {
    padding: 0 26px;
  }
}
.cid-upZ00HvYWo .row {
  justify-content: center;
}
.cid-upZ00HvYWo .item {
  margin-bottom: 32px;
}
.cid-upZ00HvYWo .item a {
  display: block;
}
.cid-upZ00HvYWo .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upZ00HvYWo .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upZ00HvYWo .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upZ00HvYWo .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-upZ00HvYWo .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upZ00HvYWo .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upZ00HvYWo .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-upZ00HvYWo .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upZ00HvYWo .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upZ00HvYWo .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upZ00HvYWo .item-title {
  color: #ffffff;
}
.cid-upZ00HvYWo .mbr-date {
  color: #cacaca;
}
.cid-upZ00HvYWo .mbr-desc {
  color: #cacaca;
}
.cid-upZ00HMVfQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upZ00HMVfQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZ00HMVfQ .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-upZ00HMVfQ .container {
    padding: 0 16px;
  }
}
.cid-upZ00HMVfQ .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upZ00HMVfQ .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZ00HMVfQ .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upZ00HMVfQ .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZ00HMVfQ .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upZ00HMVfQ .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upZ00HMVfQ .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upZ00HMVfQ .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upZ00HMVfQ .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upZ00HMVfQ .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-upZ00HMVfQ .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upZ00HMVfQ .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upZ00HMVfQ .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upZ00HMVfQ .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upZ00HMVfQ .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upZ00HMVfQ .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upZ00HMVfQ .dragArea.row .form-group .form-control:hover,
.cid-upZ00HMVfQ .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upZ00HMVfQ .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upZ00HMVfQ .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upZ00HMVfQ .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upZ00HMVfQ .mbr-title {
  color: #ffffff;
}
.cid-upZ00HMVfQ .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upZ00HMVfQ .mbr-section-subtitle {
  color: #08323C;
}
.cid-upZ00HMVfQ .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upZ00HMVfQ .list {
  color: #08323C;
}
.cid-upZ00HMVfQ label {
  color: #08323C;
}
.cid-upZ00HMVfQ H3 {
  color: #000000;
}
.cid-upZ00HMVfQ P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upZ11qQAxy {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZ11qQAxy H1 {
  text-align: center;
}
.cid-uDmEDrvagh {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmEDrvagh .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmEDrvagh .video-block {
    width: 100% !important;
  }
}
.cid-upZ11r8Bfr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZ11rtATd {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upZ11rtATd .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZ11rtATd .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZ11rtATd .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZ11rtATd .box {
  left: 20%;
}
.cid-upZ11rtATd .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upZ11rtATd .mbr-section-text,
.cid-upZ11rtATd .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upZ11rtATd .text-box {
    display: none;
  }
  .cid-upZ11rtATd .mbr-section-title,
  .cid-upZ11rtATd .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZ11rtATd .box {
    display: none;
  }
  .cid-upZ11rtATd .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZ11rtATd .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZ11rtATd .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZ11rtATd .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZ11rtATd .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZ11rtATd .mbr-section-text DIV {
  text-align: center;
}
.cid-upZ11rFnlb {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZ11rFnlb H1 {
  text-align: center;
}
.cid-upZ11rOyPt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZ11rYusW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZ11rYusW h2 {
  text-align: left;
}
.cid-upZ11rYusW h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZ11rYusW p {
  color: #767676;
  text-align: left;
}
.cid-upZ11rYusW .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZ11rYusW .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZ11rYusW .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZ11rYusW .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZ11rYusW .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZ11rYusW .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZ11rYusW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZ11rYusW .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZ11rYusW .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZ11rYusW H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upZ11rYusW P {
  color: #ffffff;
  text-align: left;
}
.cid-upZ11rYusW H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upZ11se85R {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZ11se85R H1 {
  color: #000000;
}
.cid-uxjFCvLjLc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjFCvLjLc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjFCvLjLc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjFCvLjLc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjFCvLjLc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjFCvLjLc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjFCvLjLc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjFCvLjLc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjFCvLjLc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjFCvLjLc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjFCvLjLc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjFCvLjLc .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-uxjFCvLjLc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjFCvLjLc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjFCvLjLc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjFCvLjLc .mbr-text,
.cid-uxjFCvLjLc .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upZ11sLweh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZ11sLweh H1 {
  color: #000000;
}
.cid-uxjFDn97Dd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjFDn97Dd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjFDn97Dd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjFDn97Dd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjFDn97Dd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjFDn97Dd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjFDn97Dd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjFDn97Dd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjFDn97Dd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjFDn97Dd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjFDn97Dd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjFDn97Dd .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-uxjFDn97Dd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjFDn97Dd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjFDn97Dd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjFDn97Dd .mbr-text,
.cid-uxjFDn97Dd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZ11tnHr7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZ11tnHr7 H1 {
  color: #000000;
}
.cid-uxjFE7b1JG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjFE7b1JG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjFE7b1JG .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjFE7b1JG .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjFE7b1JG .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjFE7b1JG .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjFE7b1JG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjFE7b1JG .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjFE7b1JG .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjFE7b1JG .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjFE7b1JG .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjFE7b1JG .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-uxjFE7b1JG .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjFE7b1JG .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjFE7b1JG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjFE7b1JG .mbr-text,
.cid-uxjFE7b1JG .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjFEUV9TZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjFEUV9TZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjFEUV9TZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjFEUV9TZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjFEUV9TZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjFEUV9TZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjFEUV9TZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjFEUV9TZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjFEUV9TZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjFEUV9TZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjFEUV9TZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjFEUV9TZ .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-uxjFEUV9TZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjFEUV9TZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjFEUV9TZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjFEUV9TZ .mbr-text,
.cid-uxjFEUV9TZ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZ11upDvz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upZ11upDvz H1 {
  color: #000000;
}
.cid-uxjFGF2LHy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjFGF2LHy h2 {
  text-align: left;
}
.cid-uxjFGF2LHy h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjFGF2LHy p {
  color: #767676;
  text-align: left;
}
.cid-uxjFGF2LHy .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjFGF2LHy .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjFGF2LHy .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjFGF2LHy .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjFGF2LHy .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjFGF2LHy .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjFGF2LHy .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjFGF2LHy .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjFGF2LHy .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjFGF2LHy .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjFGF2LHy .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZ11v0fNQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upZ11v0fNQ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZ11v0fNQ .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZ11v0fNQ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZ11v0fNQ .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upZ11v0fNQ .box {
  right: 20%;
}
.cid-upZ11v0fNQ .text-box {
  right: 0;
}
.cid-upZ11v0fNQ .mbr-section-title,
.cid-upZ11v0fNQ .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upZ11v0fNQ .text-box {
    display: none;
  }
  .cid-upZ11v0fNQ .mbr-section-title,
  .cid-upZ11v0fNQ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZ11v0fNQ .box {
    display: none;
  }
  .cid-upZ11v0fNQ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZ11v0fNQ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZ11v0fNQ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZ11v0fNQ .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZ11v0fNQ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZ11v0fNQ .mbr-section-text DIV {
  text-align: center;
}
.cid-upZ11vfNJL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZ11vszGW {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upZ11vszGW h2 {
  text-align: left;
}
.cid-upZ11vszGW h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZ11vszGW p {
  color: #767676;
  text-align: left;
}
.cid-upZ11vszGW .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZ11vszGW .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZ11vszGW .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZ11vszGW .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZ11vszGW .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZ11vszGW .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZ11vszGW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZ11vszGW .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZ11vszGW .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZ11vszGW .mbr-text {
  color: #232323;
}
.cid-upZ11vKBsG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upZ11vKBsG .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZ11vKBsG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZ11vKBsG .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upZ11vKBsG .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upZ11vKBsG .container {
    padding: 0 26px;
  }
}
.cid-upZ11vKBsG .row {
  justify-content: center;
}
.cid-upZ11vKBsG .item {
  margin-bottom: 32px;
}
.cid-upZ11vKBsG .item a {
  display: block;
}
.cid-upZ11vKBsG .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upZ11vKBsG .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upZ11vKBsG .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upZ11vKBsG .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-upZ11vKBsG .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upZ11vKBsG .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upZ11vKBsG .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-upZ11vKBsG .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upZ11vKBsG .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upZ11vKBsG .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upZ11vKBsG .item-title {
  color: #ffffff;
}
.cid-upZ11vKBsG .mbr-date {
  color: #cacaca;
}
.cid-upZ11vKBsG .mbr-desc {
  color: #cacaca;
}
.cid-upZ11w2FKE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upZ11w2FKE .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZ11w2FKE .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-upZ11w2FKE .container {
    padding: 0 16px;
  }
}
.cid-upZ11w2FKE .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upZ11w2FKE .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZ11w2FKE .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upZ11w2FKE .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZ11w2FKE .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upZ11w2FKE .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upZ11w2FKE .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upZ11w2FKE .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upZ11w2FKE .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upZ11w2FKE .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-upZ11w2FKE .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upZ11w2FKE .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upZ11w2FKE .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upZ11w2FKE .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upZ11w2FKE .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upZ11w2FKE .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upZ11w2FKE .dragArea.row .form-group .form-control:hover,
.cid-upZ11w2FKE .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upZ11w2FKE .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upZ11w2FKE .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upZ11w2FKE .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upZ11w2FKE .mbr-title {
  color: #ffffff;
}
.cid-upZ11w2FKE .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upZ11w2FKE .mbr-section-subtitle {
  color: #08323C;
}
.cid-upZ11w2FKE .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upZ11w2FKE .list {
  color: #08323C;
}
.cid-upZ11w2FKE label {
  color: #08323C;
}
.cid-upZ11w2FKE H3 {
  color: #000000;
}
.cid-upZ11w2FKE P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upZ8PvVs5j {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZ8PvVs5j H1 {
  text-align: center;
}
.cid-uDmEFVv20h {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmEFVv20h .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmEFVv20h .video-block {
    width: 100% !important;
  }
}
.cid-upZ8PwfGLn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZ8PwwTyl {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upZ8PwwTyl .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZ8PwwTyl .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZ8PwwTyl .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZ8PwwTyl .box {
  left: 20%;
}
.cid-upZ8PwwTyl .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upZ8PwwTyl .mbr-section-text,
.cid-upZ8PwwTyl .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upZ8PwwTyl .text-box {
    display: none;
  }
  .cid-upZ8PwwTyl .mbr-section-title,
  .cid-upZ8PwwTyl .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZ8PwwTyl .box {
    display: none;
  }
  .cid-upZ8PwwTyl .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZ8PwwTyl .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZ8PwwTyl .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZ8PwwTyl .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZ8PwwTyl .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZ8PwwTyl .mbr-section-text DIV {
  text-align: center;
}
.cid-upZ8PwJY64 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZ8PwJY64 H1 {
  text-align: center;
}
.cid-upZ8PwVN3S {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZ8Px9qWo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZ8Px9qWo h2 {
  text-align: left;
}
.cid-upZ8Px9qWo h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZ8Px9qWo p {
  color: #767676;
  text-align: left;
}
.cid-upZ8Px9qWo .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZ8Px9qWo .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZ8Px9qWo .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZ8Px9qWo .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZ8Px9qWo .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZ8Px9qWo .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZ8Px9qWo .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZ8Px9qWo .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZ8Px9qWo .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZ8Px9qWo H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upZ8Px9qWo P {
  color: #ffffff;
  text-align: left;
}
.cid-upZ8Px9qWo H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upZ8PxvUWN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZ8PxvUWN H1 {
  color: #000000;
}
.cid-upZmODsiMt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upZmODsiMt .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZmODsiMt .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upZmODsiMt .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upZmODsiMt .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upZmODsiMt .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upZmODsiMt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZmODsiMt .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upZmODsiMt .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upZmODsiMt .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upZmODsiMt .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upZmODsiMt .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-upZmODsiMt .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upZmODsiMt .image-wrapper {
    padding: 1rem;
  }
}
.cid-upZmODsiMt .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upZmODsiMt .mbr-text,
.cid-upZmODsiMt .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upZ8Py7UT7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZ8Py7UT7 H1 {
  color: #000000;
}
.cid-uxjGhOgM87 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjGhOgM87 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjGhOgM87 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjGhOgM87 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjGhOgM87 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjGhOgM87 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjGhOgM87 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjGhOgM87 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjGhOgM87 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjGhOgM87 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjGhOgM87 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjGhOgM87 .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-uxjGhOgM87 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjGhOgM87 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjGhOgM87 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjGhOgM87 .mbr-text,
.cid-uxjGhOgM87 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZ8PySLwU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZ8PySLwU H1 {
  color: #000000;
}
.cid-uxjGiqvHiX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjGiqvHiX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjGiqvHiX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjGiqvHiX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjGiqvHiX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjGiqvHiX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjGiqvHiX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjGiqvHiX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjGiqvHiX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjGiqvHiX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjGiqvHiX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjGiqvHiX .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-uxjGiqvHiX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjGiqvHiX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjGiqvHiX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjGiqvHiX .mbr-text,
.cid-uxjGiqvHiX .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjGiYXbNR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjGiYXbNR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjGiYXbNR .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjGiYXbNR .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjGiYXbNR .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjGiYXbNR .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjGiYXbNR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjGiYXbNR .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjGiYXbNR .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjGiYXbNR .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjGiYXbNR .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjGiYXbNR .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-uxjGiYXbNR .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjGiYXbNR .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjGiYXbNR .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjGiYXbNR .mbr-text,
.cid-uxjGiYXbNR .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZ8PA0hEZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upZ8PA0hEZ H1 {
  color: #000000;
}
.cid-uxjGlzXPUU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjGlzXPUU h2 {
  text-align: left;
}
.cid-uxjGlzXPUU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjGlzXPUU p {
  color: #767676;
  text-align: left;
}
.cid-uxjGlzXPUU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjGlzXPUU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjGlzXPUU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjGlzXPUU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjGlzXPUU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjGlzXPUU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjGlzXPUU .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjGlzXPUU .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjGlzXPUU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjGlzXPUU .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjGlzXPUU .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxjGkfP9WU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjGkfP9WU H1 {
  color: #000000;
}
.cid-upZ8PAwYPJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upZ8PAwYPJ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZ8PAwYPJ .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZ8PAwYPJ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZ8PAwYPJ .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upZ8PAwYPJ .box {
  right: 20%;
}
.cid-upZ8PAwYPJ .text-box {
  right: 0;
}
.cid-upZ8PAwYPJ .mbr-section-title,
.cid-upZ8PAwYPJ .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upZ8PAwYPJ .text-box {
    display: none;
  }
  .cid-upZ8PAwYPJ .mbr-section-title,
  .cid-upZ8PAwYPJ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZ8PAwYPJ .box {
    display: none;
  }
  .cid-upZ8PAwYPJ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZ8PAwYPJ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZ8PAwYPJ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZ8PAwYPJ .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZ8PAwYPJ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZ8PAwYPJ .mbr-section-text DIV {
  text-align: center;
}
.cid-upZ8PAOMHh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZ8PBaI8l {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upZ8PBaI8l h2 {
  text-align: left;
}
.cid-upZ8PBaI8l h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZ8PBaI8l p {
  color: #767676;
  text-align: left;
}
.cid-upZ8PBaI8l .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZ8PBaI8l .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZ8PBaI8l .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZ8PBaI8l .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZ8PBaI8l .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZ8PBaI8l .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZ8PBaI8l .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZ8PBaI8l .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZ8PBaI8l .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZ8PBaI8l .mbr-text {
  color: #232323;
}
.cid-upZ8PBsdto {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upZ8PBsdto .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZ8PBsdto .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZ8PBsdto .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upZ8PBsdto .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upZ8PBsdto .container {
    padding: 0 26px;
  }
}
.cid-upZ8PBsdto .row {
  justify-content: center;
}
.cid-upZ8PBsdto .item {
  margin-bottom: 32px;
}
.cid-upZ8PBsdto .item a {
  display: block;
}
.cid-upZ8PBsdto .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upZ8PBsdto .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upZ8PBsdto .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upZ8PBsdto .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-upZ8PBsdto .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upZ8PBsdto .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upZ8PBsdto .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-upZ8PBsdto .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upZ8PBsdto .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upZ8PBsdto .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upZ8PBsdto .item-title {
  color: #ffffff;
}
.cid-upZ8PBsdto .mbr-date {
  color: #cacaca;
}
.cid-upZ8PBsdto .mbr-desc {
  color: #cacaca;
}
.cid-upZ8PBSvDM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upZ8PBSvDM .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZ8PBSvDM .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-upZ8PBSvDM .container {
    padding: 0 16px;
  }
}
.cid-upZ8PBSvDM .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upZ8PBSvDM .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZ8PBSvDM .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upZ8PBSvDM .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZ8PBSvDM .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upZ8PBSvDM .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upZ8PBSvDM .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upZ8PBSvDM .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upZ8PBSvDM .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upZ8PBSvDM .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-upZ8PBSvDM .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upZ8PBSvDM .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upZ8PBSvDM .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upZ8PBSvDM .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upZ8PBSvDM .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upZ8PBSvDM .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upZ8PBSvDM .dragArea.row .form-group .form-control:hover,
.cid-upZ8PBSvDM .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upZ8PBSvDM .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upZ8PBSvDM .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upZ8PBSvDM .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upZ8PBSvDM .mbr-title {
  color: #ffffff;
}
.cid-upZ8PBSvDM .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upZ8PBSvDM .mbr-section-subtitle {
  color: #08323C;
}
.cid-upZ8PBSvDM .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upZ8PBSvDM .list {
  color: #08323C;
}
.cid-upZ8PBSvDM label {
  color: #08323C;
}
.cid-upZ8PBSvDM H3 {
  color: #000000;
}
.cid-upZ8PBSvDM P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upZccVOWCR {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZccVOWCR H1 {
  text-align: center;
}
.cid-uDmEI7JrI3 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmEI7JrI3 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmEI7JrI3 .video-block {
    width: 100% !important;
  }
}
.cid-upZccW2hYd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZccWc6PJ {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upZccWc6PJ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZccWc6PJ .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZccWc6PJ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZccWc6PJ .box {
  left: 20%;
}
.cid-upZccWc6PJ .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upZccWc6PJ .mbr-section-text,
.cid-upZccWc6PJ .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upZccWc6PJ .text-box {
    display: none;
  }
  .cid-upZccWc6PJ .mbr-section-title,
  .cid-upZccWc6PJ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZccWc6PJ .box {
    display: none;
  }
  .cid-upZccWc6PJ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZccWc6PJ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZccWc6PJ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZccWc6PJ .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZccWc6PJ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZccWc6PJ .mbr-section-text DIV {
  text-align: center;
}
.cid-upZccWnj8K {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZccWnj8K H1 {
  text-align: center;
}
.cid-upZccWvcuu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZccWC5Lx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZccWC5Lx h2 {
  text-align: left;
}
.cid-upZccWC5Lx h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZccWC5Lx p {
  color: #767676;
  text-align: left;
}
.cid-upZccWC5Lx .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZccWC5Lx .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZccWC5Lx .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZccWC5Lx .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZccWC5Lx .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZccWC5Lx .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZccWC5Lx .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZccWC5Lx .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZccWC5Lx .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZccWC5Lx H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upZccWC5Lx P {
  color: #ffffff;
  text-align: left;
}
.cid-upZccWC5Lx H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upZccWQzEJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZccWQzEJ H1 {
  color: #000000;
}
.cid-uxjGt4TGR5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjGt4TGR5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjGt4TGR5 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjGt4TGR5 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjGt4TGR5 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjGt4TGR5 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjGt4TGR5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjGt4TGR5 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjGt4TGR5 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjGt4TGR5 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjGt4TGR5 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjGt4TGR5 .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-uxjGt4TGR5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjGt4TGR5 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjGt4TGR5 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjGt4TGR5 .mbr-text,
.cid-uxjGt4TGR5 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvfLxaCHIg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfLxaCHIg H1 {
  color: #000000;
}
.cid-uxjGtTgJ3f {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjGtTgJ3f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjGtTgJ3f .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjGtTgJ3f .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjGtTgJ3f .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjGtTgJ3f .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjGtTgJ3f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjGtTgJ3f .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjGtTgJ3f .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjGtTgJ3f .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjGtTgJ3f .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjGtTgJ3f .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-uxjGtTgJ3f .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjGtTgJ3f .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjGtTgJ3f .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjGtTgJ3f .mbr-text,
.cid-uxjGtTgJ3f .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZccYf9v5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZccYf9v5 H1 {
  color: #000000;
}
.cid-uxjGuvHTJV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjGuvHTJV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjGuvHTJV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjGuvHTJV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjGuvHTJV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjGuvHTJV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjGuvHTJV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjGuvHTJV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjGuvHTJV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjGuvHTJV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjGuvHTJV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjGuvHTJV .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-uxjGuvHTJV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjGuvHTJV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjGuvHTJV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjGuvHTJV .mbr-text,
.cid-uxjGuvHTJV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjGv59AAq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjGv59AAq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjGv59AAq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjGv59AAq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjGv59AAq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjGv59AAq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjGv59AAq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjGv59AAq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjGv59AAq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjGv59AAq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjGv59AAq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjGv59AAq .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-uxjGv59AAq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjGv59AAq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjGv59AAq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjGv59AAq .mbr-text,
.cid-uxjGv59AAq .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZccZnwwq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upZccZnwwq H1 {
  color: #000000;
}
.cid-uxjGwik4ES {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjGwik4ES h2 {
  text-align: left;
}
.cid-uxjGwik4ES h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjGwik4ES p {
  color: #767676;
  text-align: left;
}
.cid-uxjGwik4ES .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjGwik4ES .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjGwik4ES .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjGwik4ES .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjGwik4ES .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjGwik4ES .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjGwik4ES .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjGwik4ES .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjGwik4ES .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjGwik4ES .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjGwik4ES .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZccZNugS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upZccZNugS .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZccZNugS .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZccZNugS .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZccZNugS .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upZccZNugS .box {
  right: 20%;
}
.cid-upZccZNugS .text-box {
  right: 0;
}
.cid-upZccZNugS .mbr-section-title,
.cid-upZccZNugS .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upZccZNugS .text-box {
    display: none;
  }
  .cid-upZccZNugS .mbr-section-title,
  .cid-upZccZNugS .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZccZNugS .box {
    display: none;
  }
  .cid-upZccZNugS .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZccZNugS .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZccZNugS .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZccZNugS .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZccZNugS .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZccZNugS .mbr-section-text DIV {
  text-align: center;
}
.cid-upZcd03Svo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZcd0fvRE {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upZcd0fvRE h2 {
  text-align: left;
}
.cid-upZcd0fvRE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZcd0fvRE p {
  color: #767676;
  text-align: left;
}
.cid-upZcd0fvRE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZcd0fvRE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZcd0fvRE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZcd0fvRE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZcd0fvRE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZcd0fvRE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZcd0fvRE .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZcd0fvRE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZcd0fvRE .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZcd0fvRE .mbr-text {
  color: #232323;
}
.cid-upZcd0t7V2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upZcd0t7V2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZcd0t7V2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZcd0t7V2 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upZcd0t7V2 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upZcd0t7V2 .container {
    padding: 0 26px;
  }
}
.cid-upZcd0t7V2 .row {
  justify-content: center;
}
.cid-upZcd0t7V2 .item {
  margin-bottom: 32px;
}
.cid-upZcd0t7V2 .item a {
  display: block;
}
.cid-upZcd0t7V2 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upZcd0t7V2 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upZcd0t7V2 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upZcd0t7V2 .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-upZcd0t7V2 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upZcd0t7V2 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upZcd0t7V2 .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-upZcd0t7V2 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upZcd0t7V2 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upZcd0t7V2 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upZcd0t7V2 .item-title {
  color: #ffffff;
}
.cid-upZcd0t7V2 .mbr-date {
  color: #cacaca;
}
.cid-upZcd0t7V2 .mbr-desc {
  color: #cacaca;
}
.cid-upZcd0JqAM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upZcd0JqAM .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZcd0JqAM .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-upZcd0JqAM .container {
    padding: 0 16px;
  }
}
.cid-upZcd0JqAM .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upZcd0JqAM .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZcd0JqAM .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upZcd0JqAM .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZcd0JqAM .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upZcd0JqAM .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upZcd0JqAM .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upZcd0JqAM .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upZcd0JqAM .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upZcd0JqAM .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-upZcd0JqAM .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upZcd0JqAM .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upZcd0JqAM .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upZcd0JqAM .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upZcd0JqAM .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upZcd0JqAM .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upZcd0JqAM .dragArea.row .form-group .form-control:hover,
.cid-upZcd0JqAM .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upZcd0JqAM .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upZcd0JqAM .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upZcd0JqAM .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upZcd0JqAM .mbr-title {
  color: #ffffff;
}
.cid-upZcd0JqAM .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upZcd0JqAM .mbr-section-subtitle {
  color: #08323C;
}
.cid-upZcd0JqAM .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upZcd0JqAM .list {
  color: #08323C;
}
.cid-upZcd0JqAM label {
  color: #08323C;
}
.cid-upZcd0JqAM H3 {
  color: #000000;
}
.cid-upZcd0JqAM P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upZd1if18K {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZd1if18K H1 {
  text-align: center;
}
.cid-uDmEX5FfY4 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmEX5FfY4 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmEX5FfY4 .video-block {
    width: 100% !important;
  }
}
.cid-upZd1iuvmt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZd1iGG5I {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upZd1iGG5I .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZd1iGG5I .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZd1iGG5I .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZd1iGG5I .box {
  left: 20%;
}
.cid-upZd1iGG5I .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upZd1iGG5I .mbr-section-text,
.cid-upZd1iGG5I .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upZd1iGG5I .text-box {
    display: none;
  }
  .cid-upZd1iGG5I .mbr-section-title,
  .cid-upZd1iGG5I .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZd1iGG5I .box {
    display: none;
  }
  .cid-upZd1iGG5I .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZd1iGG5I .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZd1iGG5I .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZd1iGG5I .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZd1iGG5I .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZd1iGG5I .mbr-section-text DIV {
  text-align: center;
}
.cid-upZd1iUiDp {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZd1iUiDp H1 {
  text-align: center;
}
.cid-upZd1j6FNj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZd1jeG8X {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZd1jeG8X h2 {
  text-align: left;
}
.cid-upZd1jeG8X h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZd1jeG8X p {
  color: #767676;
  text-align: left;
}
.cid-upZd1jeG8X .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZd1jeG8X .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZd1jeG8X .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZd1jeG8X .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZd1jeG8X .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZd1jeG8X .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZd1jeG8X .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZd1jeG8X .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZd1jeG8X .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZd1jeG8X H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upZd1jeG8X P {
  color: #ffffff;
  text-align: left;
}
.cid-upZd1jeG8X H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upZd1juvxQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZd1juvxQ H1 {
  color: #000000;
}
.cid-uxjGQhqJhP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjGQhqJhP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjGQhqJhP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjGQhqJhP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjGQhqJhP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjGQhqJhP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjGQhqJhP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjGQhqJhP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjGQhqJhP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjGQhqJhP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjGQhqJhP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjGQhqJhP .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-uxjGQhqJhP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjGQhqJhP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjGQhqJhP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjGQhqJhP .mbr-text,
.cid-uxjGQhqJhP .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upZd1k1gv4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZd1k1gv4 H1 {
  color: #000000;
}
.cid-uxjGQXlrmU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjGQXlrmU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjGQXlrmU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjGQXlrmU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjGQXlrmU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjGQXlrmU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjGQXlrmU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjGQXlrmU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjGQXlrmU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjGQXlrmU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjGQXlrmU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjGQXlrmU .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-uxjGQXlrmU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjGQXlrmU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjGQXlrmU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjGQXlrmU .mbr-text,
.cid-uxjGQXlrmU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZd1kvgsp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZd1kvgsp H1 {
  color: #000000;
}
.cid-uxjGREh5p3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjGREh5p3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjGREh5p3 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjGREh5p3 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjGREh5p3 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjGREh5p3 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjGREh5p3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjGREh5p3 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjGREh5p3 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjGREh5p3 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjGREh5p3 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjGREh5p3 .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-uxjGREh5p3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjGREh5p3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjGREh5p3 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjGREh5p3 .mbr-text,
.cid-uxjGREh5p3 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjGSjUFe9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjGSjUFe9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjGSjUFe9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjGSjUFe9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjGSjUFe9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjGSjUFe9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjGSjUFe9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjGSjUFe9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjGSjUFe9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjGSjUFe9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjGSjUFe9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjGSjUFe9 .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-uxjGSjUFe9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjGSjUFe9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjGSjUFe9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjGSjUFe9 .mbr-text,
.cid-uxjGSjUFe9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZd1lqQA9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upZd1lqQA9 H1 {
  color: #000000;
}
.cid-uxjGTA0BpT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjGTA0BpT h2 {
  text-align: left;
}
.cid-uxjGTA0BpT h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjGTA0BpT p {
  color: #767676;
  text-align: left;
}
.cid-uxjGTA0BpT .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjGTA0BpT .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjGTA0BpT .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjGTA0BpT .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjGTA0BpT .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjGTA0BpT .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjGTA0BpT .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjGTA0BpT .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjGTA0BpT .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjGTA0BpT .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjGTA0BpT .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZd1lTUZI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upZd1lTUZI .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZd1lTUZI .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZd1lTUZI .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZd1lTUZI .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upZd1lTUZI .box {
  right: 20%;
}
.cid-upZd1lTUZI .text-box {
  right: 0;
}
.cid-upZd1lTUZI .mbr-section-title,
.cid-upZd1lTUZI .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upZd1lTUZI .text-box {
    display: none;
  }
  .cid-upZd1lTUZI .mbr-section-title,
  .cid-upZd1lTUZI .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZd1lTUZI .box {
    display: none;
  }
  .cid-upZd1lTUZI .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZd1lTUZI .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZd1lTUZI .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZd1lTUZI .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZd1lTUZI .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZd1lTUZI .mbr-section-text DIV {
  text-align: center;
}
.cid-upZd1m6YoC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZd1mj6TM {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upZd1mj6TM h2 {
  text-align: left;
}
.cid-upZd1mj6TM h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZd1mj6TM p {
  color: #767676;
  text-align: left;
}
.cid-upZd1mj6TM .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZd1mj6TM .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZd1mj6TM .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZd1mj6TM .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZd1mj6TM .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZd1mj6TM .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZd1mj6TM .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZd1mj6TM .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZd1mj6TM .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZd1mj6TM .mbr-text {
  color: #232323;
}
.cid-upZd1mxn8H {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upZd1mxn8H .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZd1mxn8H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZd1mxn8H .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upZd1mxn8H .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upZd1mxn8H .container {
    padding: 0 26px;
  }
}
.cid-upZd1mxn8H .row {
  justify-content: center;
}
.cid-upZd1mxn8H .item {
  margin-bottom: 32px;
}
.cid-upZd1mxn8H .item a {
  display: block;
}
.cid-upZd1mxn8H .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upZd1mxn8H .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upZd1mxn8H .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upZd1mxn8H .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-upZd1mxn8H .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upZd1mxn8H .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upZd1mxn8H .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-upZd1mxn8H .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upZd1mxn8H .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upZd1mxn8H .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upZd1mxn8H .item-title {
  color: #ffffff;
}
.cid-upZd1mxn8H .mbr-date {
  color: #cacaca;
}
.cid-upZd1mxn8H .mbr-desc {
  color: #cacaca;
}
.cid-upZd1mPbtR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upZd1mPbtR .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZd1mPbtR .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-upZd1mPbtR .container {
    padding: 0 16px;
  }
}
.cid-upZd1mPbtR .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upZd1mPbtR .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZd1mPbtR .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upZd1mPbtR .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZd1mPbtR .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upZd1mPbtR .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upZd1mPbtR .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upZd1mPbtR .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upZd1mPbtR .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upZd1mPbtR .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-upZd1mPbtR .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upZd1mPbtR .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upZd1mPbtR .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upZd1mPbtR .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upZd1mPbtR .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upZd1mPbtR .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upZd1mPbtR .dragArea.row .form-group .form-control:hover,
.cid-upZd1mPbtR .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upZd1mPbtR .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upZd1mPbtR .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upZd1mPbtR .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upZd1mPbtR .mbr-title {
  color: #ffffff;
}
.cid-upZd1mPbtR .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upZd1mPbtR .mbr-section-subtitle {
  color: #08323C;
}
.cid-upZd1mPbtR .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upZd1mPbtR .list {
  color: #08323C;
}
.cid-upZd1mPbtR label {
  color: #08323C;
}
.cid-upZd1mPbtR H3 {
  color: #000000;
}
.cid-upZd1mPbtR P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upZkf3Ovct {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZkf3Ovct H1 {
  text-align: center;
}
.cid-uDmF1VrP5W {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmF1VrP5W .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmF1VrP5W .video-block {
    width: 100% !important;
  }
}
.cid-upZkf439vu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZkf4dLir {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upZkf4dLir .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZkf4dLir .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZkf4dLir .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZkf4dLir .box {
  left: 20%;
}
.cid-upZkf4dLir .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upZkf4dLir .mbr-section-text,
.cid-upZkf4dLir .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upZkf4dLir .text-box {
    display: none;
  }
  .cid-upZkf4dLir .mbr-section-title,
  .cid-upZkf4dLir .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZkf4dLir .box {
    display: none;
  }
  .cid-upZkf4dLir .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZkf4dLir .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZkf4dLir .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZkf4dLir .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZkf4dLir .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZkf4dLir .mbr-section-text DIV {
  text-align: center;
}
.cid-upZkf4mfJe {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZkf4mfJe H1 {
  text-align: center;
}
.cid-upZkf4zgIM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZkf4IU0h {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZkf4IU0h h2 {
  text-align: left;
}
.cid-upZkf4IU0h h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZkf4IU0h p {
  color: #767676;
  text-align: left;
}
.cid-upZkf4IU0h .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZkf4IU0h .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZkf4IU0h .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZkf4IU0h .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZkf4IU0h .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZkf4IU0h .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZkf4IU0h .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZkf4IU0h .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZkf4IU0h .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZkf4IU0h H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upZkf4IU0h P {
  color: #ffffff;
  text-align: left;
}
.cid-upZkf4IU0h H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upZkf4WbxQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZkf4WbxQ H1 {
  color: #000000;
}
.cid-uxjH4u54Yg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjH4u54Yg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjH4u54Yg .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjH4u54Yg .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjH4u54Yg .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjH4u54Yg .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjH4u54Yg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjH4u54Yg .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjH4u54Yg .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjH4u54Yg .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjH4u54Yg .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjH4u54Yg .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-uxjH4u54Yg .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjH4u54Yg .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjH4u54Yg .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjH4u54Yg .mbr-text,
.cid-uxjH4u54Yg .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upZkf5uLjK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZkf5uLjK H1 {
  color: #000000;
}
.cid-uxjH8wyNLX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjH8wyNLX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjH8wyNLX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjH8wyNLX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjH8wyNLX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjH8wyNLX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjH8wyNLX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjH8wyNLX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjH8wyNLX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjH8wyNLX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjH8wyNLX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjH8wyNLX .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-uxjH8wyNLX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjH8wyNLX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjH8wyNLX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjH8wyNLX .mbr-text,
.cid-uxjH8wyNLX .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZkf65aF4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZkf65aF4 H1 {
  color: #000000;
}
.cid-uxjH5jsOZW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjH5jsOZW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjH5jsOZW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjH5jsOZW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjH5jsOZW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjH5jsOZW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjH5jsOZW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjH5jsOZW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjH5jsOZW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjH5jsOZW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjH5jsOZW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjH5jsOZW .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-uxjH5jsOZW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjH5jsOZW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjH5jsOZW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjH5jsOZW .mbr-text,
.cid-uxjH5jsOZW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjH6eK140 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjH6eK140 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjH6eK140 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjH6eK140 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjH6eK140 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjH6eK140 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjH6eK140 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjH6eK140 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjH6eK140 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjH6eK140 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjH6eK140 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjH6eK140 .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-uxjH6eK140 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjH6eK140 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjH6eK140 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjH6eK140 .mbr-text,
.cid-uxjH6eK140 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZkf74ghV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upZkf74ghV H1 {
  color: #000000;
}
.cid-uxjHdUcZzV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjHdUcZzV h2 {
  text-align: left;
}
.cid-uxjHdUcZzV h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjHdUcZzV p {
  color: #767676;
  text-align: left;
}
.cid-uxjHdUcZzV .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjHdUcZzV .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjHdUcZzV .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjHdUcZzV .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjHdUcZzV .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjHdUcZzV .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjHdUcZzV .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjHdUcZzV .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjHdUcZzV .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjHdUcZzV .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjHdUcZzV .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZkf7vY8y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upZkf7vY8y .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZkf7vY8y .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZkf7vY8y .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZkf7vY8y .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upZkf7vY8y .box {
  right: 20%;
}
.cid-upZkf7vY8y .text-box {
  right: 0;
}
.cid-upZkf7vY8y .mbr-section-title,
.cid-upZkf7vY8y .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upZkf7vY8y .text-box {
    display: none;
  }
  .cid-upZkf7vY8y .mbr-section-title,
  .cid-upZkf7vY8y .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZkf7vY8y .box {
    display: none;
  }
  .cid-upZkf7vY8y .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZkf7vY8y .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZkf7vY8y .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZkf7vY8y .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZkf7vY8y .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZkf7vY8y .mbr-section-text DIV {
  text-align: center;
}
.cid-upZkf7NROy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZkf7Zxpj {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upZkf7Zxpj h2 {
  text-align: left;
}
.cid-upZkf7Zxpj h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZkf7Zxpj p {
  color: #767676;
  text-align: left;
}
.cid-upZkf7Zxpj .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZkf7Zxpj .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZkf7Zxpj .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZkf7Zxpj .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZkf7Zxpj .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZkf7Zxpj .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZkf7Zxpj .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZkf7Zxpj .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZkf7Zxpj .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZkf7Zxpj .mbr-text {
  color: #232323;
}
.cid-upZkf8fYWM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upZkf8fYWM .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZkf8fYWM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZkf8fYWM .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upZkf8fYWM .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upZkf8fYWM .container {
    padding: 0 26px;
  }
}
.cid-upZkf8fYWM .row {
  justify-content: center;
}
.cid-upZkf8fYWM .item {
  margin-bottom: 32px;
}
.cid-upZkf8fYWM .item a {
  display: block;
}
.cid-upZkf8fYWM .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upZkf8fYWM .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upZkf8fYWM .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upZkf8fYWM .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-upZkf8fYWM .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upZkf8fYWM .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upZkf8fYWM .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-upZkf8fYWM .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upZkf8fYWM .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upZkf8fYWM .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upZkf8fYWM .item-title {
  color: #ffffff;
}
.cid-upZkf8fYWM .mbr-date {
  color: #cacaca;
}
.cid-upZkf8fYWM .mbr-desc {
  color: #cacaca;
}
.cid-upZkf8x3mJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upZkf8x3mJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZkf8x3mJ .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-upZkf8x3mJ .container {
    padding: 0 16px;
  }
}
.cid-upZkf8x3mJ .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upZkf8x3mJ .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZkf8x3mJ .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upZkf8x3mJ .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZkf8x3mJ .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upZkf8x3mJ .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upZkf8x3mJ .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upZkf8x3mJ .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upZkf8x3mJ .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upZkf8x3mJ .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-upZkf8x3mJ .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upZkf8x3mJ .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upZkf8x3mJ .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upZkf8x3mJ .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upZkf8x3mJ .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upZkf8x3mJ .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upZkf8x3mJ .dragArea.row .form-group .form-control:hover,
.cid-upZkf8x3mJ .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upZkf8x3mJ .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upZkf8x3mJ .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upZkf8x3mJ .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upZkf8x3mJ .mbr-title {
  color: #ffffff;
}
.cid-upZkf8x3mJ .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upZkf8x3mJ .mbr-section-subtitle {
  color: #08323C;
}
.cid-upZkf8x3mJ .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upZkf8x3mJ .list {
  color: #08323C;
}
.cid-upZkf8x3mJ label {
  color: #08323C;
}
.cid-upZkf8x3mJ H3 {
  color: #000000;
}
.cid-upZkf8x3mJ P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upZkZ1JKzV {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZkZ1JKzV H1 {
  text-align: center;
}
.cid-uDmF6L1LOi {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmF6L1LOi .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmF6L1LOi .video-block {
    width: 100% !important;
  }
}
.cid-upZkZ20WCg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZkZ2dZRT {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upZkZ2dZRT .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZkZ2dZRT .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZkZ2dZRT .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZkZ2dZRT .box {
  left: 20%;
}
.cid-upZkZ2dZRT .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upZkZ2dZRT .mbr-section-text,
.cid-upZkZ2dZRT .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upZkZ2dZRT .text-box {
    display: none;
  }
  .cid-upZkZ2dZRT .mbr-section-title,
  .cid-upZkZ2dZRT .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZkZ2dZRT .box {
    display: none;
  }
  .cid-upZkZ2dZRT .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZkZ2dZRT .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZkZ2dZRT .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZkZ2dZRT .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZkZ2dZRT .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZkZ2dZRT .mbr-section-text DIV {
  text-align: center;
}
.cid-upZkZ2pgZX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZkZ2pgZX H1 {
  text-align: center;
}
.cid-upZkZ2zYor {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZkZ2KeHG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZkZ2KeHG h2 {
  text-align: left;
}
.cid-upZkZ2KeHG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZkZ2KeHG p {
  color: #767676;
  text-align: left;
}
.cid-upZkZ2KeHG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZkZ2KeHG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZkZ2KeHG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZkZ2KeHG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZkZ2KeHG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZkZ2KeHG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZkZ2KeHG .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZkZ2KeHG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZkZ2KeHG .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZkZ2KeHG H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upZkZ2KeHG P {
  color: #ffffff;
  text-align: left;
}
.cid-upZkZ2KeHG H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upZkZ31Un9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZkZ31Un9 H1 {
  color: #000000;
}
.cid-uxjHl7C0vX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjHl7C0vX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjHl7C0vX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjHl7C0vX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjHl7C0vX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjHl7C0vX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjHl7C0vX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjHl7C0vX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjHl7C0vX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjHl7C0vX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjHl7C0vX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjHl7C0vX .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-uxjHl7C0vX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjHl7C0vX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjHl7C0vX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjHl7C0vX .mbr-text,
.cid-uxjHl7C0vX .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upZkZ3zRDN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZkZ3zRDN H1 {
  color: #000000;
}
.cid-uxjHlWeA1N {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjHlWeA1N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjHlWeA1N .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjHlWeA1N .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjHlWeA1N .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjHlWeA1N .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjHlWeA1N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjHlWeA1N .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjHlWeA1N .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjHlWeA1N .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjHlWeA1N .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjHlWeA1N .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-uxjHlWeA1N .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjHlWeA1N .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjHlWeA1N .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjHlWeA1N .mbr-text,
.cid-uxjHlWeA1N .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZkZ49PsZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZkZ49PsZ H1 {
  color: #000000;
}
.cid-uxjHmECWwm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjHmECWwm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjHmECWwm .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjHmECWwm .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjHmECWwm .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjHmECWwm .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjHmECWwm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjHmECWwm .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjHmECWwm .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjHmECWwm .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjHmECWwm .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjHmECWwm .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-uxjHmECWwm .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjHmECWwm .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjHmECWwm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjHmECWwm .mbr-text,
.cid-uxjHmECWwm .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjHnvrsvU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjHnvrsvU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjHnvrsvU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjHnvrsvU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjHnvrsvU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjHnvrsvU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjHnvrsvU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjHnvrsvU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjHnvrsvU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjHnvrsvU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjHnvrsvU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjHnvrsvU .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-uxjHnvrsvU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjHnvrsvU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjHnvrsvU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjHnvrsvU .mbr-text,
.cid-uxjHnvrsvU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZkZ57YCJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upZkZ57YCJ H1 {
  color: #000000;
}
.cid-uxjHoDSO2O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjHoDSO2O h2 {
  text-align: left;
}
.cid-uxjHoDSO2O h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjHoDSO2O p {
  color: #767676;
  text-align: left;
}
.cid-uxjHoDSO2O .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjHoDSO2O .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjHoDSO2O .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjHoDSO2O .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjHoDSO2O .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjHoDSO2O .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjHoDSO2O .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjHoDSO2O .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjHoDSO2O .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjHoDSO2O .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjHoDSO2O .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZkZ5wx8r {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upZkZ5wx8r .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZkZ5wx8r .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZkZ5wx8r .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZkZ5wx8r .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upZkZ5wx8r .box {
  right: 20%;
}
.cid-upZkZ5wx8r .text-box {
  right: 0;
}
.cid-upZkZ5wx8r .mbr-section-title,
.cid-upZkZ5wx8r .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upZkZ5wx8r .text-box {
    display: none;
  }
  .cid-upZkZ5wx8r .mbr-section-title,
  .cid-upZkZ5wx8r .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZkZ5wx8r .box {
    display: none;
  }
  .cid-upZkZ5wx8r .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZkZ5wx8r .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZkZ5wx8r .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZkZ5wx8r .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZkZ5wx8r .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZkZ5wx8r .mbr-section-text DIV {
  text-align: center;
}
.cid-upZkZ5M2D6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZkZ60o2s {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upZkZ60o2s h2 {
  text-align: left;
}
.cid-upZkZ60o2s h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZkZ60o2s p {
  color: #767676;
  text-align: left;
}
.cid-upZkZ60o2s .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZkZ60o2s .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZkZ60o2s .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZkZ60o2s .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZkZ60o2s .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZkZ60o2s .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZkZ60o2s .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZkZ60o2s .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZkZ60o2s .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZkZ60o2s .mbr-text {
  color: #232323;
}
.cid-upZkZ6h4Pq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upZkZ6h4Pq .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZkZ6h4Pq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZkZ6h4Pq .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upZkZ6h4Pq .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upZkZ6h4Pq .container {
    padding: 0 26px;
  }
}
.cid-upZkZ6h4Pq .row {
  justify-content: center;
}
.cid-upZkZ6h4Pq .item {
  margin-bottom: 32px;
}
.cid-upZkZ6h4Pq .item a {
  display: block;
}
.cid-upZkZ6h4Pq .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upZkZ6h4Pq .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upZkZ6h4Pq .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upZkZ6h4Pq .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-upZkZ6h4Pq .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upZkZ6h4Pq .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upZkZ6h4Pq .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-upZkZ6h4Pq .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upZkZ6h4Pq .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upZkZ6h4Pq .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upZkZ6h4Pq .item-title {
  color: #ffffff;
}
.cid-upZkZ6h4Pq .mbr-date {
  color: #cacaca;
}
.cid-upZkZ6h4Pq .mbr-desc {
  color: #cacaca;
}
.cid-upZkZ6y1qX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upZkZ6y1qX .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZkZ6y1qX .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-upZkZ6y1qX .container {
    padding: 0 16px;
  }
}
.cid-upZkZ6y1qX .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upZkZ6y1qX .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZkZ6y1qX .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upZkZ6y1qX .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZkZ6y1qX .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upZkZ6y1qX .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upZkZ6y1qX .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upZkZ6y1qX .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upZkZ6y1qX .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upZkZ6y1qX .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-upZkZ6y1qX .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upZkZ6y1qX .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upZkZ6y1qX .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upZkZ6y1qX .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upZkZ6y1qX .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upZkZ6y1qX .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upZkZ6y1qX .dragArea.row .form-group .form-control:hover,
.cid-upZkZ6y1qX .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upZkZ6y1qX .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upZkZ6y1qX .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upZkZ6y1qX .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upZkZ6y1qX .mbr-title {
  color: #ffffff;
}
.cid-upZkZ6y1qX .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upZkZ6y1qX .mbr-section-subtitle {
  color: #08323C;
}
.cid-upZkZ6y1qX .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upZkZ6y1qX .list {
  color: #08323C;
}
.cid-upZkZ6y1qX label {
  color: #08323C;
}
.cid-upZkZ6y1qX H3 {
  color: #000000;
}
.cid-upZkZ6y1qX P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upZnBD8Xjd {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZnBD8Xjd H1 {
  text-align: center;
}
.cid-uDmEKkaqro {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmEKkaqro .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmEKkaqro .video-block {
    width: 100% !important;
  }
}
.cid-upZnBDvEjz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZnBDLPzU {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upZnBDLPzU .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZnBDLPzU .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZnBDLPzU .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZnBDLPzU .box {
  left: 20%;
}
.cid-upZnBDLPzU .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upZnBDLPzU .mbr-section-text,
.cid-upZnBDLPzU .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upZnBDLPzU .text-box {
    display: none;
  }
  .cid-upZnBDLPzU .mbr-section-title,
  .cid-upZnBDLPzU .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZnBDLPzU .box {
    display: none;
  }
  .cid-upZnBDLPzU .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZnBDLPzU .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZnBDLPzU .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZnBDLPzU .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZnBDLPzU .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZnBDLPzU .mbr-section-text DIV {
  text-align: center;
}
.cid-upZnBEgd4H {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZnBEgd4H H1 {
  text-align: center;
}
.cid-upZnBEsejU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZnBEExz7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZnBEExz7 h2 {
  text-align: left;
}
.cid-upZnBEExz7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZnBEExz7 p {
  color: #767676;
  text-align: left;
}
.cid-upZnBEExz7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZnBEExz7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZnBEExz7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZnBEExz7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZnBEExz7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZnBEExz7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZnBEExz7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZnBEExz7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZnBEExz7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZnBEExz7 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upZnBEExz7 P {
  color: #ffffff;
  text-align: left;
}
.cid-upZnBEExz7 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upZnBEYNPw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZnBEYNPw H1 {
  color: #000000;
}
.cid-uvmziptFdm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uvmziptFdm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvmziptFdm .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uvmziptFdm .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uvmziptFdm .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uvmziptFdm .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uvmziptFdm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvmziptFdm .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uvmziptFdm .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uvmziptFdm .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uvmziptFdm .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uvmziptFdm .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-uvmziptFdm .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uvmziptFdm .image-wrapper {
    padding: 1rem;
  }
}
.cid-uvmziptFdm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uvmziptFdm .mbr-text,
.cid-uvmziptFdm .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upZnBFJnhR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZnBFJnhR H1 {
  color: #000000;
}
.cid-uxjHQAwPIe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjHQAwPIe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjHQAwPIe .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjHQAwPIe .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjHQAwPIe .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjHQAwPIe .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjHQAwPIe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjHQAwPIe .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjHQAwPIe .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjHQAwPIe .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjHQAwPIe .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjHQAwPIe .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-uxjHQAwPIe .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjHQAwPIe .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjHQAwPIe .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjHQAwPIe .mbr-text,
.cid-uxjHQAwPIe .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZnBGrwf5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZnBGrwf5 H1 {
  color: #000000;
}
.cid-uxjHRj05UU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjHRj05UU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjHRj05UU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjHRj05UU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjHRj05UU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjHRj05UU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjHRj05UU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjHRj05UU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjHRj05UU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjHRj05UU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjHRj05UU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjHRj05UU .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-uxjHRj05UU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjHRj05UU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjHRj05UU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjHRj05UU .mbr-text,
.cid-uxjHRj05UU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjHRTtxWd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjHRTtxWd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjHRTtxWd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjHRTtxWd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjHRTtxWd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjHRTtxWd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjHRTtxWd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjHRTtxWd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjHRTtxWd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjHRTtxWd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjHRTtxWd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjHRTtxWd .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-uxjHRTtxWd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjHRTtxWd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjHRTtxWd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjHRTtxWd .mbr-text,
.cid-uxjHRTtxWd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZnBHtGZ7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upZnBHtGZ7 H1 {
  color: #000000;
}
.cid-uxjHT0xOGR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjHT0xOGR h2 {
  text-align: left;
}
.cid-uxjHT0xOGR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjHT0xOGR p {
  color: #767676;
  text-align: left;
}
.cid-uxjHT0xOGR .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjHT0xOGR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjHT0xOGR .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjHT0xOGR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjHT0xOGR .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjHT0xOGR .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjHT0xOGR .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjHT0xOGR .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjHT0xOGR .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjHT0xOGR .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjHT0xOGR .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZnBI0NwM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upZnBI0NwM .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZnBI0NwM .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZnBI0NwM .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZnBI0NwM .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upZnBI0NwM .box {
  right: 20%;
}
.cid-upZnBI0NwM .text-box {
  right: 0;
}
.cid-upZnBI0NwM .mbr-section-title,
.cid-upZnBI0NwM .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upZnBI0NwM .text-box {
    display: none;
  }
  .cid-upZnBI0NwM .mbr-section-title,
  .cid-upZnBI0NwM .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZnBI0NwM .box {
    display: none;
  }
  .cid-upZnBI0NwM .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZnBI0NwM .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZnBI0NwM .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZnBI0NwM .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZnBI0NwM .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZnBI0NwM .mbr-section-text DIV {
  text-align: center;
}
.cid-upZnBIg17f {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZnBIulRy {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upZnBIulRy h2 {
  text-align: left;
}
.cid-upZnBIulRy h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZnBIulRy p {
  color: #767676;
  text-align: left;
}
.cid-upZnBIulRy .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZnBIulRy .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZnBIulRy .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZnBIulRy .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZnBIulRy .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZnBIulRy .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZnBIulRy .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZnBIulRy .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZnBIulRy .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZnBIulRy .mbr-text {
  color: #232323;
}
.cid-upZnBIOG0j {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upZnBIOG0j .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZnBIOG0j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZnBIOG0j .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upZnBIOG0j .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upZnBIOG0j .container {
    padding: 0 26px;
  }
}
.cid-upZnBIOG0j .row {
  justify-content: center;
}
.cid-upZnBIOG0j .item {
  margin-bottom: 32px;
}
.cid-upZnBIOG0j .item a {
  display: block;
}
.cid-upZnBIOG0j .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upZnBIOG0j .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upZnBIOG0j .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upZnBIOG0j .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-upZnBIOG0j .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upZnBIOG0j .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upZnBIOG0j .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-upZnBIOG0j .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upZnBIOG0j .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upZnBIOG0j .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upZnBIOG0j .item-title {
  color: #ffffff;
}
.cid-upZnBIOG0j .mbr-date {
  color: #cacaca;
}
.cid-upZnBIOG0j .mbr-desc {
  color: #cacaca;
}
.cid-upZnBJ4yo7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upZnBJ4yo7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZnBJ4yo7 .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-upZnBJ4yo7 .container {
    padding: 0 16px;
  }
}
.cid-upZnBJ4yo7 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upZnBJ4yo7 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZnBJ4yo7 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upZnBJ4yo7 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZnBJ4yo7 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upZnBJ4yo7 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upZnBJ4yo7 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upZnBJ4yo7 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upZnBJ4yo7 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upZnBJ4yo7 .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-upZnBJ4yo7 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upZnBJ4yo7 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upZnBJ4yo7 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upZnBJ4yo7 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upZnBJ4yo7 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upZnBJ4yo7 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upZnBJ4yo7 .dragArea.row .form-group .form-control:hover,
.cid-upZnBJ4yo7 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upZnBJ4yo7 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upZnBJ4yo7 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upZnBJ4yo7 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upZnBJ4yo7 .mbr-title {
  color: #ffffff;
}
.cid-upZnBJ4yo7 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upZnBJ4yo7 .mbr-section-subtitle {
  color: #08323C;
}
.cid-upZnBJ4yo7 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upZnBJ4yo7 .list {
  color: #08323C;
}
.cid-upZnBJ4yo7 label {
  color: #08323C;
}
.cid-upZnBJ4yo7 H3 {
  color: #000000;
}
.cid-upZnBJ4yo7 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upZqt96pzV {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZqt96pzV H1 {
  text-align: center;
}
.cid-uDmEMDNq80 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmEMDNq80 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmEMDNq80 .video-block {
    width: 100% !important;
  }
}
.cid-upZqt9nMCq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZqt9ARIb {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upZqt9ARIb .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZqt9ARIb .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZqt9ARIb .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZqt9ARIb .box {
  left: 20%;
}
.cid-upZqt9ARIb .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upZqt9ARIb .mbr-section-text,
.cid-upZqt9ARIb .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upZqt9ARIb .text-box {
    display: none;
  }
  .cid-upZqt9ARIb .mbr-section-title,
  .cid-upZqt9ARIb .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZqt9ARIb .box {
    display: none;
  }
  .cid-upZqt9ARIb .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZqt9ARIb .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZqt9ARIb .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZqt9ARIb .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZqt9ARIb .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZqt9ARIb .mbr-section-text DIV {
  text-align: center;
}
.cid-upZqt9MUNa {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZqt9MUNa H1 {
  text-align: center;
}
.cid-upZqta0DC9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZqtabMBM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZqtabMBM h2 {
  text-align: left;
}
.cid-upZqtabMBM h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZqtabMBM p {
  color: #767676;
  text-align: left;
}
.cid-upZqtabMBM .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZqtabMBM .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZqtabMBM .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZqtabMBM .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZqtabMBM .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZqtabMBM .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZqtabMBM .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZqtabMBM .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZqtabMBM .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZqtabMBM H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upZqtabMBM P {
  color: #ffffff;
  text-align: left;
}
.cid-upZqtabMBM H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upZqtarcGK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZqtarcGK H1 {
  color: #000000;
}
.cid-uxjI024SF7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjI024SF7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjI024SF7 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjI024SF7 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjI024SF7 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjI024SF7 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjI024SF7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjI024SF7 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjI024SF7 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjI024SF7 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjI024SF7 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjI024SF7 .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-uxjI024SF7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjI024SF7 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjI024SF7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjI024SF7 .mbr-text,
.cid-uxjI024SF7 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upZqtaYFxu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZqtaYFxu H1 {
  color: #000000;
}
.cid-uxjI0EubO1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjI0EubO1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjI0EubO1 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjI0EubO1 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjI0EubO1 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjI0EubO1 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjI0EubO1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjI0EubO1 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjI0EubO1 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjI0EubO1 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjI0EubO1 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjI0EubO1 .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-uxjI0EubO1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjI0EubO1 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjI0EubO1 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjI0EubO1 .mbr-text,
.cid-uxjI0EubO1 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZqtbyQzf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZqtbyQzf H1 {
  color: #000000;
}
.cid-uxjI1gJaSE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjI1gJaSE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjI1gJaSE .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjI1gJaSE .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjI1gJaSE .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjI1gJaSE .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjI1gJaSE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjI1gJaSE .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjI1gJaSE .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjI1gJaSE .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjI1gJaSE .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjI1gJaSE .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-uxjI1gJaSE .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjI1gJaSE .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjI1gJaSE .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjI1gJaSE .mbr-text,
.cid-uxjI1gJaSE .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjI1SMhIU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjI1SMhIU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjI1SMhIU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjI1SMhIU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjI1SMhIU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjI1SMhIU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjI1SMhIU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjI1SMhIU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjI1SMhIU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjI1SMhIU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjI1SMhIU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjI1SMhIU .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-uxjI1SMhIU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjI1SMhIU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjI1SMhIU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjI1SMhIU .mbr-text,
.cid-uxjI1SMhIU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZqtczaWp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upZqtczaWp H1 {
  color: #000000;
}
.cid-uxjI2YqR2v {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjI2YqR2v h2 {
  text-align: left;
}
.cid-uxjI2YqR2v h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjI2YqR2v p {
  color: #767676;
  text-align: left;
}
.cid-uxjI2YqR2v .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjI2YqR2v .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjI2YqR2v .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjI2YqR2v .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjI2YqR2v .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjI2YqR2v .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjI2YqR2v .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjI2YqR2v .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjI2YqR2v .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjI2YqR2v .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjI2YqR2v .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZqtd5b4O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upZqtd5b4O .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZqtd5b4O .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZqtd5b4O .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZqtd5b4O .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upZqtd5b4O .box {
  right: 20%;
}
.cid-upZqtd5b4O .text-box {
  right: 0;
}
.cid-upZqtd5b4O .mbr-section-title,
.cid-upZqtd5b4O .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upZqtd5b4O .text-box {
    display: none;
  }
  .cid-upZqtd5b4O .mbr-section-title,
  .cid-upZqtd5b4O .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZqtd5b4O .box {
    display: none;
  }
  .cid-upZqtd5b4O .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZqtd5b4O .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZqtd5b4O .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZqtd5b4O .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZqtd5b4O .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZqtd5b4O .mbr-section-text DIV {
  text-align: center;
}
.cid-upZqtdmqBX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZqtdDT1A {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upZqtdDT1A h2 {
  text-align: left;
}
.cid-upZqtdDT1A h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZqtdDT1A p {
  color: #767676;
  text-align: left;
}
.cid-upZqtdDT1A .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZqtdDT1A .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZqtdDT1A .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZqtdDT1A .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZqtdDT1A .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZqtdDT1A .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZqtdDT1A .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZqtdDT1A .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZqtdDT1A .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZqtdDT1A .mbr-text {
  color: #232323;
}
.cid-upZqtdYt93 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upZqtdYt93 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZqtdYt93 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZqtdYt93 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upZqtdYt93 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upZqtdYt93 .container {
    padding: 0 26px;
  }
}
.cid-upZqtdYt93 .row {
  justify-content: center;
}
.cid-upZqtdYt93 .item {
  margin-bottom: 32px;
}
.cid-upZqtdYt93 .item a {
  display: block;
}
.cid-upZqtdYt93 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upZqtdYt93 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upZqtdYt93 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upZqtdYt93 .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-upZqtdYt93 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upZqtdYt93 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upZqtdYt93 .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-upZqtdYt93 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upZqtdYt93 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upZqtdYt93 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upZqtdYt93 .item-title {
  color: #ffffff;
}
.cid-upZqtdYt93 .mbr-date {
  color: #cacaca;
}
.cid-upZqtdYt93 .mbr-desc {
  color: #cacaca;
}
.cid-upZqtegsfl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upZqtegsfl .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZqtegsfl .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-upZqtegsfl .container {
    padding: 0 16px;
  }
}
.cid-upZqtegsfl .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upZqtegsfl .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZqtegsfl .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upZqtegsfl .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZqtegsfl .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upZqtegsfl .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upZqtegsfl .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upZqtegsfl .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upZqtegsfl .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upZqtegsfl .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-upZqtegsfl .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upZqtegsfl .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upZqtegsfl .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upZqtegsfl .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upZqtegsfl .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upZqtegsfl .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upZqtegsfl .dragArea.row .form-group .form-control:hover,
.cid-upZqtegsfl .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upZqtegsfl .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upZqtegsfl .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upZqtegsfl .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upZqtegsfl .mbr-title {
  color: #ffffff;
}
.cid-upZqtegsfl .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upZqtegsfl .mbr-section-subtitle {
  color: #08323C;
}
.cid-upZqtegsfl .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upZqtegsfl .list {
  color: #08323C;
}
.cid-upZqtegsfl label {
  color: #08323C;
}
.cid-upZqtegsfl H3 {
  color: #000000;
}
.cid-upZqtegsfl P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upZrBIpCO6 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZrBIpCO6 H1 {
  text-align: center;
}
.cid-uDmEP6xhJp {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmEP6xhJp .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmEP6xhJp .video-block {
    width: 100% !important;
  }
}
.cid-upZrBIHHKm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZrBIV7yf {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upZrBIV7yf .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZrBIV7yf .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZrBIV7yf .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZrBIV7yf .box {
  left: 20%;
}
.cid-upZrBIV7yf .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upZrBIV7yf .mbr-section-text,
.cid-upZrBIV7yf .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upZrBIV7yf .text-box {
    display: none;
  }
  .cid-upZrBIV7yf .mbr-section-title,
  .cid-upZrBIV7yf .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZrBIV7yf .box {
    display: none;
  }
  .cid-upZrBIV7yf .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZrBIV7yf .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZrBIV7yf .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZrBIV7yf .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZrBIV7yf .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZrBIV7yf .mbr-section-text DIV {
  text-align: center;
}
.cid-upZrBJ7K9o {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZrBJ7K9o H1 {
  text-align: center;
}
.cid-upZrBJj8qV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZrBJu7Fz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZrBJu7Fz h2 {
  text-align: left;
}
.cid-upZrBJu7Fz h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZrBJu7Fz p {
  color: #767676;
  text-align: left;
}
.cid-upZrBJu7Fz .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZrBJu7Fz .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZrBJu7Fz .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZrBJu7Fz .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZrBJu7Fz .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZrBJu7Fz .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZrBJu7Fz .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZrBJu7Fz .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZrBJu7Fz .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZrBJu7Fz H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upZrBJu7Fz P {
  color: #ffffff;
  text-align: left;
}
.cid-upZrBJu7Fz H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upZrBJMCK8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZrBJMCK8 H1 {
  color: #000000;
}
.cid-uxjLLurtFD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjLLurtFD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjLLurtFD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjLLurtFD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjLLurtFD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjLLurtFD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjLLurtFD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjLLurtFD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjLLurtFD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjLLurtFD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjLLurtFD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjLLurtFD .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-uxjLLurtFD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjLLurtFD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjLLurtFD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjLLurtFD .mbr-text,
.cid-uxjLLurtFD .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upZrBKkOnX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZrBKkOnX H1 {
  color: #000000;
}
.cid-uxjLQtoKcM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjLQtoKcM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjLQtoKcM .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjLQtoKcM .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjLQtoKcM .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjLQtoKcM .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjLQtoKcM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjLQtoKcM .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjLQtoKcM .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjLQtoKcM .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjLQtoKcM .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjLQtoKcM .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-uxjLQtoKcM .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjLQtoKcM .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjLQtoKcM .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjLQtoKcM .mbr-text,
.cid-uxjLQtoKcM .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZrBL1JsL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZrBL1JsL H1 {
  color: #000000;
}
.cid-uxjLRbwZxY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjLRbwZxY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjLRbwZxY .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjLRbwZxY .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjLRbwZxY .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjLRbwZxY .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjLRbwZxY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjLRbwZxY .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjLRbwZxY .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjLRbwZxY .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjLRbwZxY .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjLRbwZxY .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-uxjLRbwZxY .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjLRbwZxY .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjLRbwZxY .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjLRbwZxY .mbr-text,
.cid-uxjLRbwZxY .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjLRRRuJC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjLRRRuJC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjLRRRuJC .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjLRRRuJC .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjLRRRuJC .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjLRRRuJC .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjLRRRuJC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjLRRRuJC .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjLRRRuJC .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjLRRRuJC .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjLRRRuJC .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjLRRRuJC .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-uxjLRRRuJC .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjLRRRuJC .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjLRRRuJC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjLRRRuJC .mbr-text,
.cid-uxjLRRRuJC .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZrBM5pXu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upZrBM5pXu H1 {
  color: #000000;
}
.cid-uxjLTG8XyT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjLTG8XyT h2 {
  text-align: left;
}
.cid-uxjLTG8XyT h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjLTG8XyT p {
  color: #767676;
  text-align: left;
}
.cid-uxjLTG8XyT .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjLTG8XyT .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjLTG8XyT .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjLTG8XyT .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjLTG8XyT .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjLTG8XyT .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjLTG8XyT .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjLTG8XyT .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjLTG8XyT .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjLTG8XyT .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjLTG8XyT .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZrBMFLCD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upZrBMFLCD .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZrBMFLCD .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZrBMFLCD .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZrBMFLCD .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upZrBMFLCD .box {
  right: 20%;
}
.cid-upZrBMFLCD .text-box {
  right: 0;
}
.cid-upZrBMFLCD .mbr-section-title,
.cid-upZrBMFLCD .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upZrBMFLCD .text-box {
    display: none;
  }
  .cid-upZrBMFLCD .mbr-section-title,
  .cid-upZrBMFLCD .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZrBMFLCD .box {
    display: none;
  }
  .cid-upZrBMFLCD .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZrBMFLCD .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZrBMFLCD .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZrBMFLCD .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZrBMFLCD .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZrBMFLCD .mbr-section-text DIV {
  text-align: center;
}
.cid-upZrBMX2SL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZrBNgnRb {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upZrBNgnRb h2 {
  text-align: left;
}
.cid-upZrBNgnRb h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZrBNgnRb p {
  color: #767676;
  text-align: left;
}
.cid-upZrBNgnRb .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZrBNgnRb .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZrBNgnRb .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZrBNgnRb .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZrBNgnRb .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZrBNgnRb .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZrBNgnRb .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZrBNgnRb .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZrBNgnRb .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZrBNgnRb .mbr-text {
  color: #232323;
}
.cid-upZrBNysk0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upZrBNysk0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZrBNysk0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZrBNysk0 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upZrBNysk0 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upZrBNysk0 .container {
    padding: 0 26px;
  }
}
.cid-upZrBNysk0 .row {
  justify-content: center;
}
.cid-upZrBNysk0 .item {
  margin-bottom: 32px;
}
.cid-upZrBNysk0 .item a {
  display: block;
}
.cid-upZrBNysk0 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upZrBNysk0 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upZrBNysk0 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upZrBNysk0 .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-upZrBNysk0 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upZrBNysk0 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upZrBNysk0 .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-upZrBNysk0 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upZrBNysk0 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upZrBNysk0 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upZrBNysk0 .item-title {
  color: #ffffff;
}
.cid-upZrBNysk0 .mbr-date {
  color: #cacaca;
}
.cid-upZrBNysk0 .mbr-desc {
  color: #cacaca;
}
.cid-upZrBNTCw9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upZrBNTCw9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZrBNTCw9 .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-upZrBNTCw9 .container {
    padding: 0 16px;
  }
}
.cid-upZrBNTCw9 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upZrBNTCw9 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZrBNTCw9 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upZrBNTCw9 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZrBNTCw9 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upZrBNTCw9 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upZrBNTCw9 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upZrBNTCw9 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upZrBNTCw9 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upZrBNTCw9 .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-upZrBNTCw9 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upZrBNTCw9 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upZrBNTCw9 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upZrBNTCw9 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upZrBNTCw9 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upZrBNTCw9 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upZrBNTCw9 .dragArea.row .form-group .form-control:hover,
.cid-upZrBNTCw9 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upZrBNTCw9 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upZrBNTCw9 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upZrBNTCw9 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upZrBNTCw9 .mbr-title {
  color: #ffffff;
}
.cid-upZrBNTCw9 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upZrBNTCw9 .mbr-section-subtitle {
  color: #08323C;
}
.cid-upZrBNTCw9 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upZrBNTCw9 .list {
  color: #08323C;
}
.cid-upZrBNTCw9 label {
  color: #08323C;
}
.cid-upZrBNTCw9 H3 {
  color: #000000;
}
.cid-upZrBNTCw9 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upZskE6lxL {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZskE6lxL H1 {
  text-align: center;
}
.cid-uDmESbC3SE {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmESbC3SE .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmESbC3SE .video-block {
    width: 100% !important;
  }
}
.cid-upZskEnpMc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZskECZjw {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upZskECZjw .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZskECZjw .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZskECZjw .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZskECZjw .box {
  left: 20%;
}
.cid-upZskECZjw .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upZskECZjw .mbr-section-text,
.cid-upZskECZjw .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upZskECZjw .text-box {
    display: none;
  }
  .cid-upZskECZjw .mbr-section-title,
  .cid-upZskECZjw .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZskECZjw .box {
    display: none;
  }
  .cid-upZskECZjw .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZskECZjw .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZskECZjw .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZskECZjw .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZskECZjw .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZskECZjw .mbr-section-text DIV {
  text-align: center;
}
.cid-upZskEPA1O {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZskEPA1O H1 {
  text-align: center;
}
.cid-upZskF2f5J {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZskFdFlZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZskFdFlZ h2 {
  text-align: left;
}
.cid-upZskFdFlZ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZskFdFlZ p {
  color: #767676;
  text-align: left;
}
.cid-upZskFdFlZ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZskFdFlZ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZskFdFlZ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZskFdFlZ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZskFdFlZ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZskFdFlZ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZskFdFlZ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZskFdFlZ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZskFdFlZ .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZskFdFlZ H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upZskFdFlZ P {
  color: #ffffff;
  text-align: left;
}
.cid-upZskFdFlZ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upZskFufB6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZskFufB6 H1 {
  color: #000000;
}
.cid-uxjM3K9rVK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjM3K9rVK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjM3K9rVK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjM3K9rVK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjM3K9rVK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjM3K9rVK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjM3K9rVK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjM3K9rVK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjM3K9rVK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjM3K9rVK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjM3K9rVK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjM3K9rVK .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-uxjM3K9rVK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjM3K9rVK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjM3K9rVK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjM3K9rVK .mbr-text,
.cid-uxjM3K9rVK .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upZskG4gO9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZskG4gO9 H1 {
  color: #000000;
}
.cid-uxjM4w7iBV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjM4w7iBV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjM4w7iBV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjM4w7iBV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjM4w7iBV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjM4w7iBV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjM4w7iBV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjM4w7iBV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjM4w7iBV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjM4w7iBV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjM4w7iBV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjM4w7iBV .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-uxjM4w7iBV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjM4w7iBV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjM4w7iBV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjM4w7iBV .mbr-text,
.cid-uxjM4w7iBV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZskGLwjb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZskGLwjb H1 {
  color: #000000;
}
.cid-uxjM5dA4Gv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjM5dA4Gv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjM5dA4Gv .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjM5dA4Gv .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjM5dA4Gv .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjM5dA4Gv .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjM5dA4Gv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjM5dA4Gv .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjM5dA4Gv .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjM5dA4Gv .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjM5dA4Gv .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjM5dA4Gv .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-uxjM5dA4Gv .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjM5dA4Gv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjM5dA4Gv .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjM5dA4Gv .mbr-text,
.cid-uxjM5dA4Gv .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjM5ZcH1w {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjM5ZcH1w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjM5ZcH1w .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjM5ZcH1w .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjM5ZcH1w .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjM5ZcH1w .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjM5ZcH1w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjM5ZcH1w .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjM5ZcH1w .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjM5ZcH1w .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjM5ZcH1w .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjM5ZcH1w .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-uxjM5ZcH1w .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjM5ZcH1w .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjM5ZcH1w .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjM5ZcH1w .mbr-text,
.cid-uxjM5ZcH1w .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZskHNQxX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upZskHNQxX H1 {
  color: #000000;
}
.cid-uxjM7MU2Xs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjM7MU2Xs h2 {
  text-align: left;
}
.cid-uxjM7MU2Xs h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjM7MU2Xs p {
  color: #767676;
  text-align: left;
}
.cid-uxjM7MU2Xs .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjM7MU2Xs .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjM7MU2Xs .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjM7MU2Xs .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjM7MU2Xs .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjM7MU2Xs .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjM7MU2Xs .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjM7MU2Xs .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjM7MU2Xs .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjM7MU2Xs .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjM7MU2Xs .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZskIlvON {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upZskIlvON .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZskIlvON .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZskIlvON .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZskIlvON .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upZskIlvON .box {
  right: 20%;
}
.cid-upZskIlvON .text-box {
  right: 0;
}
.cid-upZskIlvON .mbr-section-title,
.cid-upZskIlvON .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upZskIlvON .text-box {
    display: none;
  }
  .cid-upZskIlvON .mbr-section-title,
  .cid-upZskIlvON .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZskIlvON .box {
    display: none;
  }
  .cid-upZskIlvON .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZskIlvON .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZskIlvON .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZskIlvON .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZskIlvON .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZskIlvON .mbr-section-text DIV {
  text-align: center;
}
.cid-upZskIChv8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZskIVunV {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upZskIVunV h2 {
  text-align: left;
}
.cid-upZskIVunV h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZskIVunV p {
  color: #767676;
  text-align: left;
}
.cid-upZskIVunV .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZskIVunV .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZskIVunV .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZskIVunV .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZskIVunV .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZskIVunV .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZskIVunV .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZskIVunV .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZskIVunV .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZskIVunV .mbr-text {
  color: #232323;
}
.cid-upZskJdKpj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upZskJdKpj .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZskJdKpj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZskJdKpj .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upZskJdKpj .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upZskJdKpj .container {
    padding: 0 26px;
  }
}
.cid-upZskJdKpj .row {
  justify-content: center;
}
.cid-upZskJdKpj .item {
  margin-bottom: 32px;
}
.cid-upZskJdKpj .item a {
  display: block;
}
.cid-upZskJdKpj .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upZskJdKpj .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upZskJdKpj .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upZskJdKpj .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-upZskJdKpj .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upZskJdKpj .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upZskJdKpj .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-upZskJdKpj .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upZskJdKpj .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upZskJdKpj .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upZskJdKpj .item-title {
  color: #ffffff;
}
.cid-upZskJdKpj .mbr-date {
  color: #cacaca;
}
.cid-upZskJdKpj .mbr-desc {
  color: #cacaca;
}
.cid-upZskJxHfs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upZskJxHfs .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZskJxHfs .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-upZskJxHfs .container {
    padding: 0 16px;
  }
}
.cid-upZskJxHfs .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upZskJxHfs .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZskJxHfs .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upZskJxHfs .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZskJxHfs .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upZskJxHfs .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upZskJxHfs .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upZskJxHfs .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upZskJxHfs .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upZskJxHfs .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-upZskJxHfs .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upZskJxHfs .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upZskJxHfs .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upZskJxHfs .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upZskJxHfs .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upZskJxHfs .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upZskJxHfs .dragArea.row .form-group .form-control:hover,
.cid-upZskJxHfs .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upZskJxHfs .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upZskJxHfs .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upZskJxHfs .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upZskJxHfs .mbr-title {
  color: #ffffff;
}
.cid-upZskJxHfs .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upZskJxHfs .mbr-section-subtitle {
  color: #08323C;
}
.cid-upZskJxHfs .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upZskJxHfs .list {
  color: #08323C;
}
.cid-upZskJxHfs label {
  color: #08323C;
}
.cid-upZskJxHfs H3 {
  color: #000000;
}
.cid-upZskJxHfs P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upZtPtXbc0 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZtPtXbc0 H1 {
  text-align: center;
}
.cid-uDmEUv3Otc {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmEUv3Otc .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmEUv3Otc .video-block {
    width: 100% !important;
  }
}
.cid-upZtPugAs8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZtPuua3H {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upZtPuua3H .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZtPuua3H .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZtPuua3H .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZtPuua3H .box {
  left: 20%;
}
.cid-upZtPuua3H .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upZtPuua3H .mbr-section-text,
.cid-upZtPuua3H .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upZtPuua3H .text-box {
    display: none;
  }
  .cid-upZtPuua3H .mbr-section-title,
  .cid-upZtPuua3H .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZtPuua3H .box {
    display: none;
  }
  .cid-upZtPuua3H .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZtPuua3H .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZtPuua3H .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZtPuua3H .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZtPuua3H .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZtPuua3H .mbr-section-text DIV {
  text-align: center;
}
.cid-upZtPuKfVM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZtPuKfVM H1 {
  text-align: center;
}
.cid-upZtPuW2l4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZtPvb8Bc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZtPvb8Bc h2 {
  text-align: left;
}
.cid-upZtPvb8Bc h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZtPvb8Bc p {
  color: #767676;
  text-align: left;
}
.cid-upZtPvb8Bc .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZtPvb8Bc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZtPvb8Bc .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZtPvb8Bc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZtPvb8Bc .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZtPvb8Bc .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZtPvb8Bc .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZtPvb8Bc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZtPvb8Bc .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZtPvb8Bc H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upZtPvb8Bc P {
  color: #ffffff;
  text-align: left;
}
.cid-upZtPvb8Bc H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upZtPvtUrQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZtPvtUrQ H1 {
  color: #000000;
}
.cid-uxjMdo4JuF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjMdo4JuF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjMdo4JuF .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjMdo4JuF .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjMdo4JuF .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjMdo4JuF .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjMdo4JuF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjMdo4JuF .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjMdo4JuF .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjMdo4JuF .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjMdo4JuF .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjMdo4JuF .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-uxjMdo4JuF .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjMdo4JuF .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjMdo4JuF .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjMdo4JuF .mbr-text,
.cid-uxjMdo4JuF .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upZtPwaMiL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZtPwaMiL H1 {
  color: #000000;
}
.cid-uxjMgFiyDT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjMgFiyDT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjMgFiyDT .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjMgFiyDT .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjMgFiyDT .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjMgFiyDT .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjMgFiyDT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjMgFiyDT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjMgFiyDT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjMgFiyDT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjMgFiyDT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjMgFiyDT .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-uxjMgFiyDT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjMgFiyDT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjMgFiyDT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjMgFiyDT .mbr-text,
.cid-uxjMgFiyDT .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZtPwU9j8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZtPwU9j8 H1 {
  color: #000000;
}
.cid-uxjMht4yaw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjMht4yaw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjMht4yaw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjMht4yaw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjMht4yaw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjMht4yaw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjMht4yaw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjMht4yaw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjMht4yaw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjMht4yaw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjMht4yaw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjMht4yaw .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-uxjMht4yaw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjMht4yaw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjMht4yaw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjMht4yaw .mbr-text,
.cid-uxjMht4yaw .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjMioHbpP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjMioHbpP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjMioHbpP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjMioHbpP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjMioHbpP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjMioHbpP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjMioHbpP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjMioHbpP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjMioHbpP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjMioHbpP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjMioHbpP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjMioHbpP .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-uxjMioHbpP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjMioHbpP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjMioHbpP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjMioHbpP .mbr-text,
.cid-uxjMioHbpP .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZtPy6pW2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upZtPy6pW2 H1 {
  color: #000000;
}
.cid-uxjMjLLazD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjMjLLazD h2 {
  text-align: left;
}
.cid-uxjMjLLazD h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjMjLLazD p {
  color: #767676;
  text-align: left;
}
.cid-uxjMjLLazD .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjMjLLazD .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjMjLLazD .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjMjLLazD .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjMjLLazD .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjMjLLazD .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjMjLLazD .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjMjLLazD .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjMjLLazD .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjMjLLazD .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjMjLLazD .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZtPyKb7C {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upZtPyKb7C .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZtPyKb7C .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZtPyKb7C .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZtPyKb7C .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upZtPyKb7C .box {
  right: 20%;
}
.cid-upZtPyKb7C .text-box {
  right: 0;
}
.cid-upZtPyKb7C .mbr-section-title,
.cid-upZtPyKb7C .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upZtPyKb7C .text-box {
    display: none;
  }
  .cid-upZtPyKb7C .mbr-section-title,
  .cid-upZtPyKb7C .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZtPyKb7C .box {
    display: none;
  }
  .cid-upZtPyKb7C .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZtPyKb7C .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZtPyKb7C .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZtPyKb7C .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZtPyKb7C .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZtPyKb7C .mbr-section-text DIV {
  text-align: center;
}
.cid-upZtPz65mI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZtPzqrb3 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upZtPzqrb3 h2 {
  text-align: left;
}
.cid-upZtPzqrb3 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZtPzqrb3 p {
  color: #767676;
  text-align: left;
}
.cid-upZtPzqrb3 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZtPzqrb3 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZtPzqrb3 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZtPzqrb3 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZtPzqrb3 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZtPzqrb3 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZtPzqrb3 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZtPzqrb3 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZtPzqrb3 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZtPzqrb3 .mbr-text {
  color: #232323;
}
.cid-upZtPzK4Jz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upZtPzK4Jz .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZtPzK4Jz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZtPzK4Jz .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upZtPzK4Jz .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upZtPzK4Jz .container {
    padding: 0 26px;
  }
}
.cid-upZtPzK4Jz .row {
  justify-content: center;
}
.cid-upZtPzK4Jz .item {
  margin-bottom: 32px;
}
.cid-upZtPzK4Jz .item a {
  display: block;
}
.cid-upZtPzK4Jz .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upZtPzK4Jz .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upZtPzK4Jz .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upZtPzK4Jz .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-upZtPzK4Jz .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upZtPzK4Jz .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upZtPzK4Jz .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-upZtPzK4Jz .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upZtPzK4Jz .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upZtPzK4Jz .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upZtPzK4Jz .item-title {
  color: #ffffff;
}
.cid-upZtPzK4Jz .mbr-date {
  color: #cacaca;
}
.cid-upZtPzK4Jz .mbr-desc {
  color: #cacaca;
}
.cid-upZtPA8CFn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upZtPA8CFn .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZtPA8CFn .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-upZtPA8CFn .container {
    padding: 0 16px;
  }
}
.cid-upZtPA8CFn .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upZtPA8CFn .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZtPA8CFn .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upZtPA8CFn .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZtPA8CFn .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upZtPA8CFn .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upZtPA8CFn .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upZtPA8CFn .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upZtPA8CFn .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upZtPA8CFn .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-upZtPA8CFn .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upZtPA8CFn .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upZtPA8CFn .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upZtPA8CFn .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upZtPA8CFn .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upZtPA8CFn .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upZtPA8CFn .dragArea.row .form-group .form-control:hover,
.cid-upZtPA8CFn .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upZtPA8CFn .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upZtPA8CFn .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upZtPA8CFn .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upZtPA8CFn .mbr-title {
  color: #ffffff;
}
.cid-upZtPA8CFn .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upZtPA8CFn .mbr-section-subtitle {
  color: #08323C;
}
.cid-upZtPA8CFn .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upZtPA8CFn .list {
  color: #08323C;
}
.cid-upZtPA8CFn label {
  color: #08323C;
}
.cid-upZtPA8CFn H3 {
  color: #000000;
}
.cid-upZtPA8CFn P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upZuLXuvo3 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZuLXuvo3 H1 {
  text-align: center;
}
.cid-uDmFaHTvLN {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmFaHTvLN .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmFaHTvLN .video-block {
    width: 100% !important;
  }
}
.cid-upZuLXQsMA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZuLY6wIy {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upZuLY6wIy .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZuLY6wIy .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZuLY6wIy .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZuLY6wIy .box {
  left: 20%;
}
.cid-upZuLY6wIy .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upZuLY6wIy .mbr-section-text,
.cid-upZuLY6wIy .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upZuLY6wIy .text-box {
    display: none;
  }
  .cid-upZuLY6wIy .mbr-section-title,
  .cid-upZuLY6wIy .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZuLY6wIy .box {
    display: none;
  }
  .cid-upZuLY6wIy .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZuLY6wIy .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZuLY6wIy .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZuLY6wIy .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZuLY6wIy .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZuLY6wIy .mbr-section-text DIV {
  text-align: center;
}
.cid-upZuLYrWl3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZuLYrWl3 H1 {
  text-align: center;
}
.cid-upZuLYKxdR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZuLYXpaX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZuLYXpaX h2 {
  text-align: left;
}
.cid-upZuLYXpaX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZuLYXpaX p {
  color: #767676;
  text-align: left;
}
.cid-upZuLYXpaX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZuLYXpaX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZuLYXpaX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZuLYXpaX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZuLYXpaX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZuLYXpaX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZuLYXpaX .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZuLYXpaX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZuLYXpaX .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZuLYXpaX H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upZuLYXpaX P {
  color: #ffffff;
  text-align: left;
}
.cid-upZuLYXpaX H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upZE8JGu3p {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZE8JGu3p H1 {
  color: #000000;
}
.cid-upZDYoPUK0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upZDYoPUK0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZDYoPUK0 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-upZDYoPUK0 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-upZDYoPUK0 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-upZDYoPUK0 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-upZDYoPUK0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZDYoPUK0 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-upZDYoPUK0 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-upZDYoPUK0 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-upZDYoPUK0 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-upZDYoPUK0 .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-upZDYoPUK0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-upZDYoPUK0 .image-wrapper {
    padding: 1rem;
  }
}
.cid-upZDYoPUK0 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-upZDYoPUK0 .mbr-text,
.cid-upZDYoPUK0 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upZuLZWWtd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZuLZWWtd H1 {
  color: #000000;
}
.cid-uxjMIgQskd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjMIgQskd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjMIgQskd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjMIgQskd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjMIgQskd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjMIgQskd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjMIgQskd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjMIgQskd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjMIgQskd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjMIgQskd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjMIgQskd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjMIgQskd .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-uxjMIgQskd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjMIgQskd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjMIgQskd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjMIgQskd .mbr-text,
.cid-uxjMIgQskd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZuM0IKF6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZuM0IKF6 H1 {
  color: #000000;
}
.cid-uxjMIUJdB7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjMIUJdB7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjMIUJdB7 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjMIUJdB7 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjMIUJdB7 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjMIUJdB7 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjMIUJdB7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjMIUJdB7 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjMIUJdB7 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjMIUJdB7 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjMIUJdB7 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjMIUJdB7 .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-uxjMIUJdB7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjMIUJdB7 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjMIUJdB7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjMIUJdB7 .mbr-text,
.cid-uxjMIUJdB7 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjMJEtYtF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjMJEtYtF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjMJEtYtF .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjMJEtYtF .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjMJEtYtF .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjMJEtYtF .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjMJEtYtF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjMJEtYtF .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjMJEtYtF .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjMJEtYtF .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjMJEtYtF .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjMJEtYtF .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-uxjMJEtYtF .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjMJEtYtF .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjMJEtYtF .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjMJEtYtF .mbr-text,
.cid-uxjMJEtYtF .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZuM1OTAs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upZuM1OTAs H1 {
  color: #000000;
}
.cid-uxjMKRdbTM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjMKRdbTM h2 {
  text-align: left;
}
.cid-uxjMKRdbTM h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjMKRdbTM p {
  color: #767676;
  text-align: left;
}
.cid-uxjMKRdbTM .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjMKRdbTM .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjMKRdbTM .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjMKRdbTM .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjMKRdbTM .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjMKRdbTM .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjMKRdbTM .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjMKRdbTM .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjMKRdbTM .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjMKRdbTM .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjMKRdbTM .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxjMLuQvFK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjMLuQvFK H1 {
  color: #000000;
}
.cid-upZuM2mH3h {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upZuM2mH3h .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZuM2mH3h .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZuM2mH3h .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZuM2mH3h .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upZuM2mH3h .box {
  right: 20%;
}
.cid-upZuM2mH3h .text-box {
  right: 0;
}
.cid-upZuM2mH3h .mbr-section-title,
.cid-upZuM2mH3h .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upZuM2mH3h .text-box {
    display: none;
  }
  .cid-upZuM2mH3h .mbr-section-title,
  .cid-upZuM2mH3h .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZuM2mH3h .box {
    display: none;
  }
  .cid-upZuM2mH3h .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZuM2mH3h .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZuM2mH3h .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZuM2mH3h .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZuM2mH3h .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZuM2mH3h .mbr-section-text DIV {
  text-align: center;
}
.cid-upZuM2Gqjd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZuM2Z2hz {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upZuM2Z2hz h2 {
  text-align: left;
}
.cid-upZuM2Z2hz h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZuM2Z2hz p {
  color: #767676;
  text-align: left;
}
.cid-upZuM2Z2hz .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZuM2Z2hz .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZuM2Z2hz .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZuM2Z2hz .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZuM2Z2hz .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZuM2Z2hz .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZuM2Z2hz .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZuM2Z2hz .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZuM2Z2hz .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZuM2Z2hz .mbr-text {
  color: #232323;
}
.cid-upZuM3ktnQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upZuM3ktnQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZuM3ktnQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZuM3ktnQ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upZuM3ktnQ .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upZuM3ktnQ .container {
    padding: 0 26px;
  }
}
.cid-upZuM3ktnQ .row {
  justify-content: center;
}
.cid-upZuM3ktnQ .item {
  margin-bottom: 32px;
}
.cid-upZuM3ktnQ .item a {
  display: block;
}
.cid-upZuM3ktnQ .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upZuM3ktnQ .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upZuM3ktnQ .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upZuM3ktnQ .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-upZuM3ktnQ .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upZuM3ktnQ .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upZuM3ktnQ .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-upZuM3ktnQ .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upZuM3ktnQ .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upZuM3ktnQ .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upZuM3ktnQ .item-title {
  color: #ffffff;
}
.cid-upZuM3ktnQ .mbr-date {
  color: #cacaca;
}
.cid-upZuM3ktnQ .mbr-desc {
  color: #cacaca;
}
.cid-upZuM3GEjX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upZuM3GEjX .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZuM3GEjX .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-upZuM3GEjX .container {
    padding: 0 16px;
  }
}
.cid-upZuM3GEjX .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upZuM3GEjX .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZuM3GEjX .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upZuM3GEjX .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZuM3GEjX .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upZuM3GEjX .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upZuM3GEjX .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upZuM3GEjX .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upZuM3GEjX .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upZuM3GEjX .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-upZuM3GEjX .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upZuM3GEjX .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upZuM3GEjX .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upZuM3GEjX .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upZuM3GEjX .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upZuM3GEjX .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upZuM3GEjX .dragArea.row .form-group .form-control:hover,
.cid-upZuM3GEjX .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upZuM3GEjX .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upZuM3GEjX .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upZuM3GEjX .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upZuM3GEjX .mbr-title {
  color: #ffffff;
}
.cid-upZuM3GEjX .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upZuM3GEjX .mbr-section-subtitle {
  color: #08323C;
}
.cid-upZuM3GEjX .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upZuM3GEjX .list {
  color: #08323C;
}
.cid-upZuM3GEjX label {
  color: #08323C;
}
.cid-upZuM3GEjX H3 {
  color: #000000;
}
.cid-upZuM3GEjX P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upZyz4kKmK {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZyz4kKmK H1 {
  text-align: center;
}
.cid-uDmFdVK9Uj {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmFdVK9Uj .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmFdVK9Uj .video-block {
    width: 100% !important;
  }
}
.cid-upZyz4ygga {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZyz4KSDe {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upZyz4KSDe .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZyz4KSDe .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZyz4KSDe .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZyz4KSDe .box {
  left: 20%;
}
.cid-upZyz4KSDe .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upZyz4KSDe .mbr-section-text,
.cid-upZyz4KSDe .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upZyz4KSDe .text-box {
    display: none;
  }
  .cid-upZyz4KSDe .mbr-section-title,
  .cid-upZyz4KSDe .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZyz4KSDe .box {
    display: none;
  }
  .cid-upZyz4KSDe .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZyz4KSDe .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZyz4KSDe .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZyz4KSDe .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZyz4KSDe .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZyz4KSDe .mbr-section-text DIV {
  text-align: center;
}
.cid-upZyz54hyn {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZyz54hyn H1 {
  text-align: center;
}
.cid-upZyz5gQkf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZyz5sQMQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZyz5sQMQ h2 {
  text-align: left;
}
.cid-upZyz5sQMQ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZyz5sQMQ p {
  color: #767676;
  text-align: left;
}
.cid-upZyz5sQMQ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZyz5sQMQ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZyz5sQMQ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZyz5sQMQ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZyz5sQMQ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZyz5sQMQ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZyz5sQMQ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZyz5sQMQ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZyz5sQMQ .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZyz5sQMQ H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upZyz5sQMQ P {
  color: #ffffff;
  text-align: left;
}
.cid-upZyz5sQMQ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upZyz5KxBQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZyz5KxBQ H1 {
  color: #000000;
}
.cid-uxjMSOiQnB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjMSOiQnB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjMSOiQnB .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjMSOiQnB .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjMSOiQnB .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjMSOiQnB .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjMSOiQnB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjMSOiQnB .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjMSOiQnB .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjMSOiQnB .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjMSOiQnB .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjMSOiQnB .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-uxjMSOiQnB .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjMSOiQnB .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjMSOiQnB .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjMSOiQnB .mbr-text,
.cid-uxjMSOiQnB .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upZyz6hz2l {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZyz6hz2l H1 {
  color: #000000;
}
.cid-uxjMWdGgg6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjMWdGgg6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjMWdGgg6 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjMWdGgg6 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjMWdGgg6 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjMWdGgg6 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjMWdGgg6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjMWdGgg6 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjMWdGgg6 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjMWdGgg6 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjMWdGgg6 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjMWdGgg6 .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-uxjMWdGgg6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjMWdGgg6 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjMWdGgg6 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjMWdGgg6 .mbr-text,
.cid-uxjMWdGgg6 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZyz6QTTy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZyz6QTTy H1 {
  color: #000000;
}
.cid-uxjMWUEH5v {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjMWUEH5v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjMWUEH5v .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjMWUEH5v .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjMWUEH5v .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjMWUEH5v .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjMWUEH5v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjMWUEH5v .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjMWUEH5v .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjMWUEH5v .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjMWUEH5v .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjMWUEH5v .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-uxjMWUEH5v .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjMWUEH5v .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjMWUEH5v .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjMWUEH5v .mbr-text,
.cid-uxjMWUEH5v .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjMXxwP3C {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjMXxwP3C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjMXxwP3C .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjMXxwP3C .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjMXxwP3C .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjMXxwP3C .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjMXxwP3C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjMXxwP3C .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjMXxwP3C .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjMXxwP3C .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjMXxwP3C .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjMXxwP3C .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-uxjMXxwP3C .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjMXxwP3C .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjMXxwP3C .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjMXxwP3C .mbr-text,
.cid-uxjMXxwP3C .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZyz7V2fe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upZyz7V2fe H1 {
  color: #000000;
}
.cid-uxjMZ2mPfG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjMZ2mPfG h2 {
  text-align: left;
}
.cid-uxjMZ2mPfG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjMZ2mPfG p {
  color: #767676;
  text-align: left;
}
.cid-uxjMZ2mPfG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjMZ2mPfG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjMZ2mPfG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjMZ2mPfG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjMZ2mPfG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjMZ2mPfG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjMZ2mPfG .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjMZ2mPfG .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjMZ2mPfG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjMZ2mPfG .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjMZ2mPfG .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZyz8nVDN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upZyz8nVDN .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZyz8nVDN .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZyz8nVDN .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZyz8nVDN .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upZyz8nVDN .box {
  right: 20%;
}
.cid-upZyz8nVDN .text-box {
  right: 0;
}
.cid-upZyz8nVDN .mbr-section-title,
.cid-upZyz8nVDN .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upZyz8nVDN .text-box {
    display: none;
  }
  .cid-upZyz8nVDN .mbr-section-title,
  .cid-upZyz8nVDN .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZyz8nVDN .box {
    display: none;
  }
  .cid-upZyz8nVDN .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZyz8nVDN .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZyz8nVDN .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZyz8nVDN .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZyz8nVDN .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZyz8nVDN .mbr-section-text DIV {
  text-align: center;
}
.cid-upZyz8DSgn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZyz8S0ud {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upZyz8S0ud h2 {
  text-align: left;
}
.cid-upZyz8S0ud h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZyz8S0ud p {
  color: #767676;
  text-align: left;
}
.cid-upZyz8S0ud .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZyz8S0ud .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZyz8S0ud .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZyz8S0ud .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZyz8S0ud .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZyz8S0ud .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZyz8S0ud .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZyz8S0ud .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZyz8S0ud .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZyz8S0ud .mbr-text {
  color: #232323;
}
.cid-upZyz98cb8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upZyz98cb8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZyz98cb8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZyz98cb8 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upZyz98cb8 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upZyz98cb8 .container {
    padding: 0 26px;
  }
}
.cid-upZyz98cb8 .row {
  justify-content: center;
}
.cid-upZyz98cb8 .item {
  margin-bottom: 32px;
}
.cid-upZyz98cb8 .item a {
  display: block;
}
.cid-upZyz98cb8 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upZyz98cb8 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upZyz98cb8 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upZyz98cb8 .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-upZyz98cb8 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upZyz98cb8 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upZyz98cb8 .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-upZyz98cb8 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upZyz98cb8 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upZyz98cb8 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upZyz98cb8 .item-title {
  color: #ffffff;
}
.cid-upZyz98cb8 .mbr-date {
  color: #cacaca;
}
.cid-upZyz98cb8 .mbr-desc {
  color: #cacaca;
}
.cid-upZyz9r4ZL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upZyz9r4ZL .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZyz9r4ZL .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-upZyz9r4ZL .container {
    padding: 0 16px;
  }
}
.cid-upZyz9r4ZL .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upZyz9r4ZL .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZyz9r4ZL .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upZyz9r4ZL .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZyz9r4ZL .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upZyz9r4ZL .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upZyz9r4ZL .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upZyz9r4ZL .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upZyz9r4ZL .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upZyz9r4ZL .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-upZyz9r4ZL .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upZyz9r4ZL .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upZyz9r4ZL .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upZyz9r4ZL .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upZyz9r4ZL .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upZyz9r4ZL .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upZyz9r4ZL .dragArea.row .form-group .form-control:hover,
.cid-upZyz9r4ZL .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upZyz9r4ZL .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upZyz9r4ZL .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upZyz9r4ZL .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upZyz9r4ZL .mbr-title {
  color: #ffffff;
}
.cid-upZyz9r4ZL .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upZyz9r4ZL .mbr-section-subtitle {
  color: #08323C;
}
.cid-upZyz9r4ZL .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upZyz9r4ZL .list {
  color: #08323C;
}
.cid-upZyz9r4ZL label {
  color: #08323C;
}
.cid-upZyz9r4ZL H3 {
  color: #000000;
}
.cid-upZyz9r4ZL P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upZzTwKFjh {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZzTwKFjh H1 {
  text-align: center;
}
.cid-uDmFh2hwot {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmFh2hwot .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmFh2hwot .video-block {
    width: 100% !important;
  }
}
.cid-upZzTx0K1d {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZzTxfpDM {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upZzTxfpDM .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZzTxfpDM .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZzTxfpDM .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZzTxfpDM .box {
  left: 20%;
}
.cid-upZzTxfpDM .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upZzTxfpDM .mbr-section-text,
.cid-upZzTxfpDM .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upZzTxfpDM .text-box {
    display: none;
  }
  .cid-upZzTxfpDM .mbr-section-title,
  .cid-upZzTxfpDM .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZzTxfpDM .box {
    display: none;
  }
  .cid-upZzTxfpDM .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZzTxfpDM .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZzTxfpDM .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZzTxfpDM .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZzTxfpDM .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZzTxfpDM .mbr-section-text DIV {
  text-align: center;
}
.cid-upZzTxq298 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZzTxq298 H1 {
  text-align: center;
}
.cid-upZzTxD1we {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZzTxLA55 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZzTxLA55 h2 {
  text-align: left;
}
.cid-upZzTxLA55 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZzTxLA55 p {
  color: #767676;
  text-align: left;
}
.cid-upZzTxLA55 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZzTxLA55 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZzTxLA55 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZzTxLA55 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZzTxLA55 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZzTxLA55 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZzTxLA55 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZzTxLA55 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZzTxLA55 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZzTxLA55 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upZzTxLA55 P {
  color: #ffffff;
  text-align: left;
}
.cid-upZzTxLA55 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upZzTxZ8ua {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZzTxZ8ua H1 {
  color: #000000;
}
.cid-uxjN63pbx2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjN63pbx2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjN63pbx2 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjN63pbx2 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjN63pbx2 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjN63pbx2 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjN63pbx2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjN63pbx2 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjN63pbx2 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjN63pbx2 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjN63pbx2 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjN63pbx2 .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-uxjN63pbx2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjN63pbx2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjN63pbx2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjN63pbx2 .mbr-text,
.cid-uxjN63pbx2 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upZzTyx4lC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZzTyx4lC H1 {
  color: #000000;
}
.cid-uxjN6Hcy3S {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjN6Hcy3S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjN6Hcy3S .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjN6Hcy3S .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjN6Hcy3S .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjN6Hcy3S .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjN6Hcy3S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjN6Hcy3S .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjN6Hcy3S .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjN6Hcy3S .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjN6Hcy3S .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjN6Hcy3S .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-uxjN6Hcy3S .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjN6Hcy3S .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjN6Hcy3S .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjN6Hcy3S .mbr-text,
.cid-uxjN6Hcy3S .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZzTzanzL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZzTzanzL H1 {
  color: #000000;
}
.cid-uxjN7i36mm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjN7i36mm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjN7i36mm .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjN7i36mm .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjN7i36mm .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjN7i36mm .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjN7i36mm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjN7i36mm .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjN7i36mm .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjN7i36mm .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjN7i36mm .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjN7i36mm .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-uxjN7i36mm .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjN7i36mm .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjN7i36mm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjN7i36mm .mbr-text,
.cid-uxjN7i36mm .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjN87Fqtc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjN87Fqtc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjN87Fqtc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjN87Fqtc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjN87Fqtc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjN87Fqtc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjN87Fqtc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjN87Fqtc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjN87Fqtc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjN87Fqtc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjN87Fqtc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjN87Fqtc .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-uxjN87Fqtc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjN87Fqtc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjN87Fqtc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjN87Fqtc .mbr-text,
.cid-uxjN87Fqtc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZzTAhzuo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upZzTAhzuo H1 {
  color: #000000;
}
.cid-uxjN9f358d {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjN9f358d h2 {
  text-align: left;
}
.cid-uxjN9f358d h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjN9f358d p {
  color: #767676;
  text-align: left;
}
.cid-uxjN9f358d .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjN9f358d .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjN9f358d .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjN9f358d .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjN9f358d .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjN9f358d .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjN9f358d .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjN9f358d .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjN9f358d .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjN9f358d .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjN9f358d .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZzTAIZKj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upZzTAIZKj .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZzTAIZKj .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZzTAIZKj .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZzTAIZKj .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upZzTAIZKj .box {
  right: 20%;
}
.cid-upZzTAIZKj .text-box {
  right: 0;
}
.cid-upZzTAIZKj .mbr-section-title,
.cid-upZzTAIZKj .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upZzTAIZKj .text-box {
    display: none;
  }
  .cid-upZzTAIZKj .mbr-section-title,
  .cid-upZzTAIZKj .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZzTAIZKj .box {
    display: none;
  }
  .cid-upZzTAIZKj .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZzTAIZKj .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZzTAIZKj .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZzTAIZKj .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZzTAIZKj .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZzTAIZKj .mbr-section-text DIV {
  text-align: center;
}
.cid-upZzTAWpkf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZzTB8wK0 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upZzTB8wK0 h2 {
  text-align: left;
}
.cid-upZzTB8wK0 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZzTB8wK0 p {
  color: #767676;
  text-align: left;
}
.cid-upZzTB8wK0 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZzTB8wK0 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZzTB8wK0 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZzTB8wK0 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZzTB8wK0 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZzTB8wK0 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZzTB8wK0 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZzTB8wK0 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZzTB8wK0 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZzTB8wK0 .mbr-text {
  color: #232323;
}
.cid-upZzTBoKr4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upZzTBoKr4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZzTBoKr4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZzTBoKr4 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upZzTBoKr4 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upZzTBoKr4 .container {
    padding: 0 26px;
  }
}
.cid-upZzTBoKr4 .row {
  justify-content: center;
}
.cid-upZzTBoKr4 .item {
  margin-bottom: 32px;
}
.cid-upZzTBoKr4 .item a {
  display: block;
}
.cid-upZzTBoKr4 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upZzTBoKr4 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upZzTBoKr4 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upZzTBoKr4 .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-upZzTBoKr4 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upZzTBoKr4 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upZzTBoKr4 .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-upZzTBoKr4 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upZzTBoKr4 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upZzTBoKr4 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upZzTBoKr4 .item-title {
  color: #ffffff;
}
.cid-upZzTBoKr4 .mbr-date {
  color: #cacaca;
}
.cid-upZzTBoKr4 .mbr-desc {
  color: #cacaca;
}
.cid-upZzTBHylW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upZzTBHylW .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZzTBHylW .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-upZzTBHylW .container {
    padding: 0 16px;
  }
}
.cid-upZzTBHylW .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upZzTBHylW .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZzTBHylW .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upZzTBHylW .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZzTBHylW .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upZzTBHylW .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upZzTBHylW .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upZzTBHylW .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upZzTBHylW .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upZzTBHylW .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-upZzTBHylW .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upZzTBHylW .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upZzTBHylW .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upZzTBHylW .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upZzTBHylW .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upZzTBHylW .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upZzTBHylW .dragArea.row .form-group .form-control:hover,
.cid-upZzTBHylW .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upZzTBHylW .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upZzTBHylW .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upZzTBHylW .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upZzTBHylW .mbr-title {
  color: #ffffff;
}
.cid-upZzTBHylW .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upZzTBHylW .mbr-section-subtitle {
  color: #08323C;
}
.cid-upZzTBHylW .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upZzTBHylW .list {
  color: #08323C;
}
.cid-upZzTBHylW label {
  color: #08323C;
}
.cid-upZzTBHylW H3 {
  color: #000000;
}
.cid-upZzTBHylW P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upZBr3xLU9 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZBr3xLU9 H1 {
  text-align: center;
}
.cid-uDmFjkbdM7 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmFjkbdM7 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmFjkbdM7 .video-block {
    width: 100% !important;
  }
}
.cid-upZBr3NAI9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZBr40bcH {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upZBr40bcH .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZBr40bcH .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZBr40bcH .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZBr40bcH .box {
  left: 20%;
}
.cid-upZBr40bcH .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upZBr40bcH .mbr-section-text,
.cid-upZBr40bcH .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upZBr40bcH .text-box {
    display: none;
  }
  .cid-upZBr40bcH .mbr-section-title,
  .cid-upZBr40bcH .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZBr40bcH .box {
    display: none;
  }
  .cid-upZBr40bcH .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZBr40bcH .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZBr40bcH .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZBr40bcH .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZBr40bcH .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZBr40bcH .mbr-section-text DIV {
  text-align: center;
}
.cid-upZBr4bLA8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZBr4bLA8 H1 {
  text-align: center;
}
.cid-upZBr4jkXb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZBr4sKiJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZBr4sKiJ h2 {
  text-align: left;
}
.cid-upZBr4sKiJ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZBr4sKiJ p {
  color: #767676;
  text-align: left;
}
.cid-upZBr4sKiJ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZBr4sKiJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZBr4sKiJ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZBr4sKiJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZBr4sKiJ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZBr4sKiJ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZBr4sKiJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZBr4sKiJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZBr4sKiJ .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZBr4sKiJ H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upZBr4sKiJ P {
  color: #ffffff;
  text-align: left;
}
.cid-upZBr4sKiJ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upZBr4INiO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZBr4INiO H1 {
  color: #000000;
}
.cid-uxjRUlD24A {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjRUlD24A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjRUlD24A .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjRUlD24A .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjRUlD24A .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjRUlD24A .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjRUlD24A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjRUlD24A .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjRUlD24A .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjRUlD24A .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjRUlD24A .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjRUlD24A .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-uxjRUlD24A .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjRUlD24A .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjRUlD24A .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjRUlD24A .mbr-text,
.cid-uxjRUlD24A .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upZBr5f53U {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZBr5f53U H1 {
  color: #000000;
}
.cid-uxjS9gm2rc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjS9gm2rc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjS9gm2rc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjS9gm2rc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjS9gm2rc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjS9gm2rc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjS9gm2rc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjS9gm2rc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjS9gm2rc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjS9gm2rc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjS9gm2rc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjS9gm2rc .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-uxjS9gm2rc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjS9gm2rc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjS9gm2rc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjS9gm2rc .mbr-text,
.cid-uxjS9gm2rc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZBr5SXva {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZBr5SXva H1 {
  color: #000000;
}
.cid-uxjS1XAQXx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjS1XAQXx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjS1XAQXx .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjS1XAQXx .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjS1XAQXx .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjS1XAQXx .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjS1XAQXx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjS1XAQXx .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjS1XAQXx .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjS1XAQXx .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjS1XAQXx .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjS1XAQXx .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-uxjS1XAQXx .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjS1XAQXx .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjS1XAQXx .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjS1XAQXx .mbr-text,
.cid-uxjS1XAQXx .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjS6mNcUd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjS6mNcUd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjS6mNcUd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjS6mNcUd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjS6mNcUd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjS6mNcUd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjS6mNcUd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjS6mNcUd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjS6mNcUd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjS6mNcUd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjS6mNcUd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjS6mNcUd .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-uxjS6mNcUd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjS6mNcUd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjS6mNcUd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjS6mNcUd .mbr-text,
.cid-uxjS6mNcUd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZBr6VaWI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upZBr6VaWI H1 {
  color: #000000;
}
.cid-uxjNx9yBoG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjNx9yBoG h2 {
  text-align: left;
}
.cid-uxjNx9yBoG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjNx9yBoG p {
  color: #767676;
  text-align: left;
}
.cid-uxjNx9yBoG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjNx9yBoG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjNx9yBoG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjNx9yBoG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjNx9yBoG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjNx9yBoG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjNx9yBoG .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjNx9yBoG .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjNx9yBoG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjNx9yBoG .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjNx9yBoG .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZBr7oNRN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upZBr7oNRN .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZBr7oNRN .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZBr7oNRN .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZBr7oNRN .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upZBr7oNRN .box {
  right: 20%;
}
.cid-upZBr7oNRN .text-box {
  right: 0;
}
.cid-upZBr7oNRN .mbr-section-title,
.cid-upZBr7oNRN .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upZBr7oNRN .text-box {
    display: none;
  }
  .cid-upZBr7oNRN .mbr-section-title,
  .cid-upZBr7oNRN .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZBr7oNRN .box {
    display: none;
  }
  .cid-upZBr7oNRN .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZBr7oNRN .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZBr7oNRN .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZBr7oNRN .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZBr7oNRN .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZBr7oNRN .mbr-section-text DIV {
  text-align: center;
}
.cid-upZBr7Dvlm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZBr7P6K2 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upZBr7P6K2 h2 {
  text-align: left;
}
.cid-upZBr7P6K2 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZBr7P6K2 p {
  color: #767676;
  text-align: left;
}
.cid-upZBr7P6K2 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZBr7P6K2 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZBr7P6K2 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZBr7P6K2 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZBr7P6K2 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZBr7P6K2 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZBr7P6K2 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZBr7P6K2 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZBr7P6K2 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZBr7P6K2 .mbr-text {
  color: #232323;
}
.cid-upZBr83J4o {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upZBr83J4o .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZBr83J4o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZBr83J4o .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upZBr83J4o .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upZBr83J4o .container {
    padding: 0 26px;
  }
}
.cid-upZBr83J4o .row {
  justify-content: center;
}
.cid-upZBr83J4o .item {
  margin-bottom: 32px;
}
.cid-upZBr83J4o .item a {
  display: block;
}
.cid-upZBr83J4o .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upZBr83J4o .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upZBr83J4o .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upZBr83J4o .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-upZBr83J4o .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upZBr83J4o .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upZBr83J4o .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-upZBr83J4o .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upZBr83J4o .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upZBr83J4o .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upZBr83J4o .item-title {
  color: #ffffff;
}
.cid-upZBr83J4o .mbr-date {
  color: #cacaca;
}
.cid-upZBr83J4o .mbr-desc {
  color: #cacaca;
}
.cid-upZBr8pGnn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upZBr8pGnn .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZBr8pGnn .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-upZBr8pGnn .container {
    padding: 0 16px;
  }
}
.cid-upZBr8pGnn .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upZBr8pGnn .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZBr8pGnn .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upZBr8pGnn .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZBr8pGnn .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upZBr8pGnn .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upZBr8pGnn .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upZBr8pGnn .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upZBr8pGnn .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upZBr8pGnn .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-upZBr8pGnn .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upZBr8pGnn .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upZBr8pGnn .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upZBr8pGnn .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upZBr8pGnn .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upZBr8pGnn .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upZBr8pGnn .dragArea.row .form-group .form-control:hover,
.cid-upZBr8pGnn .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upZBr8pGnn .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upZBr8pGnn .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upZBr8pGnn .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upZBr8pGnn .mbr-title {
  color: #ffffff;
}
.cid-upZBr8pGnn .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upZBr8pGnn .mbr-section-subtitle {
  color: #08323C;
}
.cid-upZBr8pGnn .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upZBr8pGnn .list {
  color: #08323C;
}
.cid-upZBr8pGnn label {
  color: #08323C;
}
.cid-upZBr8pGnn H3 {
  color: #000000;
}
.cid-upZBr8pGnn P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-upZC1YqDgX {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZC1YqDgX H1 {
  text-align: center;
}
.cid-uDmFlzUejI {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmFlzUejI .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmFlzUejI .video-block {
    width: 100% !important;
  }
}
.cid-upZC1YHRIb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZC1YR7QY {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-upZC1YR7QY .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZC1YR7QY .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZC1YR7QY .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZC1YR7QY .box {
  left: 20%;
}
.cid-upZC1YR7QY .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-upZC1YR7QY .mbr-section-text,
.cid-upZC1YR7QY .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-upZC1YR7QY .text-box {
    display: none;
  }
  .cid-upZC1YR7QY .mbr-section-title,
  .cid-upZC1YR7QY .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZC1YR7QY .box {
    display: none;
  }
  .cid-upZC1YR7QY .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZC1YR7QY .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZC1YR7QY .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZC1YR7QY .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZC1YR7QY .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZC1YR7QY .mbr-section-text DIV {
  text-align: center;
}
.cid-upZC1Z6rHk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZC1Z6rHk H1 {
  text-align: center;
}
.cid-upZC1ZfbDx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZC1ZoxoQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-upZC1ZoxoQ h2 {
  text-align: left;
}
.cid-upZC1ZoxoQ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZC1ZoxoQ p {
  color: #767676;
  text-align: left;
}
.cid-upZC1ZoxoQ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZC1ZoxoQ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZC1ZoxoQ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZC1ZoxoQ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZC1ZoxoQ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZC1ZoxoQ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZC1ZoxoQ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZC1ZoxoQ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZC1ZoxoQ .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZC1ZoxoQ H4 {
  color: #fa8706;
  text-align: left;
}
.cid-upZC1ZoxoQ P {
  color: #ffffff;
  text-align: left;
}
.cid-upZC1ZoxoQ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-upZC1ZCPxI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZC1ZCPxI H1 {
  color: #000000;
}
.cid-uxjSh1Hfux {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjSh1Hfux .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjSh1Hfux .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjSh1Hfux .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjSh1Hfux .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjSh1Hfux .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjSh1Hfux .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjSh1Hfux .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjSh1Hfux .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjSh1Hfux .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjSh1Hfux .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjSh1Hfux .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-uxjSh1Hfux .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjSh1Hfux .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjSh1Hfux .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjSh1Hfux .mbr-text,
.cid-uxjSh1Hfux .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-upZC20aqh7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZC20aqh7 H1 {
  color: #000000;
}
.cid-uxjShYye0j {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjShYye0j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjShYye0j .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjShYye0j .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjShYye0j .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjShYye0j .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjShYye0j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjShYye0j .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjShYye0j .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjShYye0j .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjShYye0j .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjShYye0j .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-uxjShYye0j .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjShYye0j .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjShYye0j .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjShYye0j .mbr-text,
.cid-uxjShYye0j .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZC20FKF2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upZC20FKF2 H1 {
  color: #000000;
}
.cid-uxjSiTeYET {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjSiTeYET .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjSiTeYET .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjSiTeYET .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjSiTeYET .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjSiTeYET .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjSiTeYET .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjSiTeYET .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjSiTeYET .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjSiTeYET .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjSiTeYET .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjSiTeYET .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-uxjSiTeYET .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjSiTeYET .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjSiTeYET .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjSiTeYET .mbr-text,
.cid-uxjSiTeYET .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjSjY85TY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjSjY85TY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjSjY85TY .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjSjY85TY .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjSjY85TY .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjSjY85TY .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjSjY85TY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjSjY85TY .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjSjY85TY .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjSjY85TY .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjSjY85TY .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjSjY85TY .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-uxjSjY85TY .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjSjY85TY .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjSjY85TY .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjSjY85TY .mbr-text,
.cid-uxjSjY85TY .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-upZC21NmVy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-upZC21NmVy H1 {
  color: #000000;
}
.cid-uxjSlWoa9q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjSlWoa9q h2 {
  text-align: left;
}
.cid-uxjSlWoa9q h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjSlWoa9q p {
  color: #767676;
  text-align: left;
}
.cid-uxjSlWoa9q .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjSlWoa9q .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjSlWoa9q .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjSlWoa9q .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjSlWoa9q .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjSlWoa9q .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjSlWoa9q .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjSlWoa9q .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjSlWoa9q .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjSlWoa9q .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjSlWoa9q .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZC22exQN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-upZC22exQN .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-upZC22exQN .text-block {
  position: relative;
  z-index: 0;
}
.cid-upZC22exQN .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-upZC22exQN .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-upZC22exQN .box {
  right: 20%;
}
.cid-upZC22exQN .text-box {
  right: 0;
}
.cid-upZC22exQN .mbr-section-title,
.cid-upZC22exQN .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-upZC22exQN .text-box {
    display: none;
  }
  .cid-upZC22exQN .mbr-section-title,
  .cid-upZC22exQN .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-upZC22exQN .box {
    display: none;
  }
  .cid-upZC22exQN .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-upZC22exQN .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upZC22exQN .text-box {
    writing-mode: bt-rl;
  }
}
.cid-upZC22exQN .mbr-section-text {
  color: #c1c1c1;
}
.cid-upZC22exQN .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-upZC22exQN .mbr-section-text DIV {
  text-align: center;
}
.cid-upZC22us2f {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-upZC22Hc34 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-upZC22Hc34 h2 {
  text-align: left;
}
.cid-upZC22Hc34 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-upZC22Hc34 p {
  color: #767676;
  text-align: left;
}
.cid-upZC22Hc34 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-upZC22Hc34 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-upZC22Hc34 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-upZC22Hc34 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-upZC22Hc34 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-upZC22Hc34 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-upZC22Hc34 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-upZC22Hc34 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-upZC22Hc34 .card-img span {
    font-size: 40px !important;
  }
}
.cid-upZC22Hc34 .mbr-text {
  color: #232323;
}
.cid-upZC22Z9sD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-upZC22Z9sD .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZC22Z9sD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upZC22Z9sD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-upZC22Z9sD .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-upZC22Z9sD .container {
    padding: 0 26px;
  }
}
.cid-upZC22Z9sD .row {
  justify-content: center;
}
.cid-upZC22Z9sD .item {
  margin-bottom: 32px;
}
.cid-upZC22Z9sD .item a {
  display: block;
}
.cid-upZC22Z9sD .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-upZC22Z9sD .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-upZC22Z9sD .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-upZC22Z9sD .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-upZC22Z9sD .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-upZC22Z9sD .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-upZC22Z9sD .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-upZC22Z9sD .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-upZC22Z9sD .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-upZC22Z9sD .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-upZC22Z9sD .item-title {
  color: #ffffff;
}
.cid-upZC22Z9sD .mbr-date {
  color: #cacaca;
}
.cid-upZC22Z9sD .mbr-desc {
  color: #cacaca;
}
.cid-upZC23hh5A {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upZC23hh5A .mbr-fallback-image.disabled {
  display: none;
}
.cid-upZC23hh5A .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-upZC23hh5A .container {
    padding: 0 16px;
  }
}
.cid-upZC23hh5A .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-upZC23hh5A .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZC23hh5A .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-upZC23hh5A .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upZC23hh5A .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-upZC23hh5A .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-upZC23hh5A .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-upZC23hh5A .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-upZC23hh5A .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-upZC23hh5A .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-upZC23hh5A .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-upZC23hh5A .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-upZC23hh5A .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upZC23hh5A .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-upZC23hh5A .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-upZC23hh5A .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-upZC23hh5A .dragArea.row .form-group .form-control:hover,
.cid-upZC23hh5A .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-upZC23hh5A .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-upZC23hh5A .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-upZC23hh5A .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-upZC23hh5A .mbr-title {
  color: #ffffff;
}
.cid-upZC23hh5A .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-upZC23hh5A .mbr-section-subtitle {
  color: #08323C;
}
.cid-upZC23hh5A .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-upZC23hh5A .list {
  color: #08323C;
}
.cid-upZC23hh5A label {
  color: #08323C;
}
.cid-upZC23hh5A H3 {
  color: #000000;
}
.cid-upZC23hh5A P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvfbPC2OxI {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfbPC2OxI H1 {
  text-align: center;
}
.cid-uDmFpsqSlT {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmFpsqSlT .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmFpsqSlT .video-block {
    width: 100% !important;
  }
}
.cid-uvfbPCjhar {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfbPCvHVM {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvfbPCvHVM .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfbPCvHVM .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfbPCvHVM .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfbPCvHVM .box {
  left: 20%;
}
.cid-uvfbPCvHVM .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvfbPCvHVM .mbr-section-text,
.cid-uvfbPCvHVM .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvfbPCvHVM .text-box {
    display: none;
  }
  .cid-uvfbPCvHVM .mbr-section-title,
  .cid-uvfbPCvHVM .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfbPCvHVM .box {
    display: none;
  }
  .cid-uvfbPCvHVM .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfbPCvHVM .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfbPCvHVM .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfbPCvHVM .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfbPCvHVM .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfbPCvHVM .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfbPCEyZU {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfbPCEyZU H1 {
  text-align: center;
}
.cid-uvfbPCNrjL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfbPCVwpY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfbPCVwpY h2 {
  text-align: left;
}
.cid-uvfbPCVwpY h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfbPCVwpY p {
  color: #767676;
  text-align: left;
}
.cid-uvfbPCVwpY .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfbPCVwpY .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfbPCVwpY .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfbPCVwpY .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfbPCVwpY .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfbPCVwpY .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfbPCVwpY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfbPCVwpY .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfbPCVwpY .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfbPCVwpY H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvfbPCVwpY P {
  color: #ffffff;
  text-align: left;
}
.cid-uvfbPCVwpY H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvfbPDaZeD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfbPDaZeD H1 {
  color: #000000;
}
.cid-uvfpd95LYs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uvfpd95LYs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfpd95LYs .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uvfpd95LYs .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uvfpd95LYs .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uvfpd95LYs .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uvfpd95LYs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfpd95LYs .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uvfpd95LYs .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uvfpd95LYs .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uvfpd95LYs .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uvfpd95LYs .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-uvfpd95LYs .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfpd95LYs .image-wrapper {
    padding: 1rem;
  }
}
.cid-uvfpd95LYs .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uvfpd95LYs .mbr-text,
.cid-uvfpd95LYs .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvfbPDHfdj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfbPDHfdj H1 {
  color: #000000;
}
.cid-uxjSQuOijx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjSQuOijx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjSQuOijx .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjSQuOijx .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjSQuOijx .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjSQuOijx .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjSQuOijx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjSQuOijx .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjSQuOijx .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjSQuOijx .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjSQuOijx .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjSQuOijx .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-uxjSQuOijx .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjSQuOijx .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjSQuOijx .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjSQuOijx .mbr-text,
.cid-uxjSQuOijx .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfbPEenWY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfbPEenWY H1 {
  color: #000000;
}
.cid-uxjSRzBeWw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjSRzBeWw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjSRzBeWw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjSRzBeWw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjSRzBeWw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjSRzBeWw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjSRzBeWw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjSRzBeWw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjSRzBeWw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjSRzBeWw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjSRzBeWw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjSRzBeWw .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-uxjSRzBeWw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjSRzBeWw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjSRzBeWw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjSRzBeWw .mbr-text,
.cid-uxjSRzBeWw .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjSU3V2Vw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjSU3V2Vw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjSU3V2Vw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjSU3V2Vw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjSU3V2Vw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjSU3V2Vw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjSU3V2Vw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjSU3V2Vw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjSU3V2Vw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjSU3V2Vw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjSU3V2Vw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjSU3V2Vw .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-uxjSU3V2Vw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjSU3V2Vw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjSU3V2Vw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjSU3V2Vw .mbr-text,
.cid-uxjSU3V2Vw .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfbPFeWdT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvfbPFeWdT H1 {
  color: #000000;
}
.cid-uxjSWqIOJa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjSWqIOJa h2 {
  text-align: left;
}
.cid-uxjSWqIOJa h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjSWqIOJa p {
  color: #767676;
  text-align: left;
}
.cid-uxjSWqIOJa .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjSWqIOJa .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjSWqIOJa .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjSWqIOJa .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjSWqIOJa .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjSWqIOJa .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjSWqIOJa .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjSWqIOJa .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjSWqIOJa .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjSWqIOJa .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjSWqIOJa .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfbPFJZOG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvfbPFJZOG .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfbPFJZOG .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfbPFJZOG .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfbPFJZOG .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvfbPFJZOG .box {
  right: 20%;
}
.cid-uvfbPFJZOG .text-box {
  right: 0;
}
.cid-uvfbPFJZOG .mbr-section-title,
.cid-uvfbPFJZOG .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvfbPFJZOG .text-box {
    display: none;
  }
  .cid-uvfbPFJZOG .mbr-section-title,
  .cid-uvfbPFJZOG .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfbPFJZOG .box {
    display: none;
  }
  .cid-uvfbPFJZOG .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfbPFJZOG .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfbPFJZOG .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfbPFJZOG .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfbPFJZOG .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfbPFJZOG .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfbPG1qQ6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfbPGd2bv {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvfbPGd2bv h2 {
  text-align: left;
}
.cid-uvfbPGd2bv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfbPGd2bv p {
  color: #767676;
  text-align: left;
}
.cid-uvfbPGd2bv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfbPGd2bv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfbPGd2bv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfbPGd2bv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfbPGd2bv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfbPGd2bv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfbPGd2bv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfbPGd2bv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfbPGd2bv .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfbPGd2bv .mbr-text {
  color: #232323;
}
.cid-uvfbPGsyMs {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvfbPGsyMs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfbPGsyMs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfbPGsyMs .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvfbPGsyMs .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvfbPGsyMs .container {
    padding: 0 26px;
  }
}
.cid-uvfbPGsyMs .row {
  justify-content: center;
}
.cid-uvfbPGsyMs .item {
  margin-bottom: 32px;
}
.cid-uvfbPGsyMs .item a {
  display: block;
}
.cid-uvfbPGsyMs .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvfbPGsyMs .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvfbPGsyMs .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvfbPGsyMs .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-uvfbPGsyMs .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvfbPGsyMs .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvfbPGsyMs .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-uvfbPGsyMs .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvfbPGsyMs .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvfbPGsyMs .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvfbPGsyMs .item-title {
  color: #ffffff;
}
.cid-uvfbPGsyMs .mbr-date {
  color: #cacaca;
}
.cid-uvfbPGsyMs .mbr-desc {
  color: #cacaca;
}
.cid-uvfbPGLKsG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvfbPGLKsG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfbPGLKsG .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-uvfbPGLKsG .container {
    padding: 0 16px;
  }
}
.cid-uvfbPGLKsG .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvfbPGLKsG .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfbPGLKsG .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvfbPGLKsG .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfbPGLKsG .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvfbPGLKsG .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvfbPGLKsG .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvfbPGLKsG .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvfbPGLKsG .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvfbPGLKsG .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-uvfbPGLKsG .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvfbPGLKsG .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvfbPGLKsG .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvfbPGLKsG .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvfbPGLKsG .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvfbPGLKsG .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvfbPGLKsG .dragArea.row .form-group .form-control:hover,
.cid-uvfbPGLKsG .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvfbPGLKsG .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvfbPGLKsG .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvfbPGLKsG .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvfbPGLKsG .mbr-title {
  color: #ffffff;
}
.cid-uvfbPGLKsG .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvfbPGLKsG .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvfbPGLKsG .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvfbPGLKsG .list {
  color: #08323C;
}
.cid-uvfbPGLKsG label {
  color: #08323C;
}
.cid-uvfbPGLKsG H3 {
  color: #000000;
}
.cid-uvfbPGLKsG P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvfhDxkLJW {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfhDxkLJW H1 {
  text-align: center;
}
.cid-uDmFs3WOfN {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmFs3WOfN .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmFs3WOfN .video-block {
    width: 100% !important;
  }
}
.cid-uvfhDxztoG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfhDxJ6ic {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvfhDxJ6ic .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfhDxJ6ic .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfhDxJ6ic .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfhDxJ6ic .box {
  left: 20%;
}
.cid-uvfhDxJ6ic .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvfhDxJ6ic .mbr-section-text,
.cid-uvfhDxJ6ic .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvfhDxJ6ic .text-box {
    display: none;
  }
  .cid-uvfhDxJ6ic .mbr-section-title,
  .cid-uvfhDxJ6ic .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfhDxJ6ic .box {
    display: none;
  }
  .cid-uvfhDxJ6ic .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfhDxJ6ic .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfhDxJ6ic .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfhDxJ6ic .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfhDxJ6ic .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfhDxJ6ic .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfhDxT71H {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfhDxT71H H1 {
  text-align: center;
}
.cid-uvfhDy6Tni {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfhDyeLMx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfhDyeLMx h2 {
  text-align: left;
}
.cid-uvfhDyeLMx h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfhDyeLMx p {
  color: #767676;
  text-align: left;
}
.cid-uvfhDyeLMx .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfhDyeLMx .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfhDyeLMx .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfhDyeLMx .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfhDyeLMx .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfhDyeLMx .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfhDyeLMx .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfhDyeLMx .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfhDyeLMx .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfhDyeLMx H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvfhDyeLMx P {
  color: #ffffff;
  text-align: left;
}
.cid-uvfhDyeLMx H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvfhDyt2H9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfhDyt2H9 H1 {
  color: #000000;
}
.cid-uxjTgcVgMs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjTgcVgMs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjTgcVgMs .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjTgcVgMs .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjTgcVgMs .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjTgcVgMs .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjTgcVgMs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjTgcVgMs .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjTgcVgMs .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjTgcVgMs .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjTgcVgMs .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjTgcVgMs .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-uxjTgcVgMs .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjTgcVgMs .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjTgcVgMs .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjTgcVgMs .mbr-text,
.cid-uxjTgcVgMs .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvfhDz0M1k {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfhDz0M1k H1 {
  color: #000000;
}
.cid-uxjTh8HndB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjTh8HndB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjTh8HndB .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjTh8HndB .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjTh8HndB .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjTh8HndB .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjTh8HndB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjTh8HndB .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjTh8HndB .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjTh8HndB .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjTh8HndB .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjTh8HndB .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-uxjTh8HndB .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjTh8HndB .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjTh8HndB .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjTh8HndB .mbr-text,
.cid-uxjTh8HndB .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfhDzBJl5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfhDzBJl5 H1 {
  color: #000000;
}
.cid-uxjTicMC11 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjTicMC11 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjTicMC11 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjTicMC11 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjTicMC11 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjTicMC11 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjTicMC11 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjTicMC11 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjTicMC11 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjTicMC11 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjTicMC11 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjTicMC11 .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-uxjTicMC11 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjTicMC11 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjTicMC11 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjTicMC11 .mbr-text,
.cid-uxjTicMC11 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjTjgV1Uh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjTjgV1Uh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjTjgV1Uh .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjTjgV1Uh .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjTjgV1Uh .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjTjgV1Uh .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjTjgV1Uh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjTjgV1Uh .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjTjgV1Uh .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjTjgV1Uh .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjTjgV1Uh .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjTjgV1Uh .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-uxjTjgV1Uh .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjTjgV1Uh .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjTjgV1Uh .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjTjgV1Uh .mbr-text,
.cid-uxjTjgV1Uh .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfhDAKaQs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvfhDAKaQs H1 {
  color: #000000;
}
.cid-uxjTpZzvZL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjTpZzvZL h2 {
  text-align: left;
}
.cid-uxjTpZzvZL h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjTpZzvZL p {
  color: #767676;
  text-align: left;
}
.cid-uxjTpZzvZL .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjTpZzvZL .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjTpZzvZL .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjTpZzvZL .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjTpZzvZL .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjTpZzvZL .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjTpZzvZL .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjTpZzvZL .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjTpZzvZL .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjTpZzvZL .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjTpZzvZL .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxjTklhSWo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjTklhSWo H1 {
  color: #000000;
}
.cid-uvfhDBf8oF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvfhDBf8oF .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfhDBf8oF .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfhDBf8oF .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfhDBf8oF .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvfhDBf8oF .box {
  right: 20%;
}
.cid-uvfhDBf8oF .text-box {
  right: 0;
}
.cid-uvfhDBf8oF .mbr-section-title,
.cid-uvfhDBf8oF .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvfhDBf8oF .text-box {
    display: none;
  }
  .cid-uvfhDBf8oF .mbr-section-title,
  .cid-uvfhDBf8oF .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfhDBf8oF .box {
    display: none;
  }
  .cid-uvfhDBf8oF .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfhDBf8oF .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfhDBf8oF .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfhDBf8oF .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfhDBf8oF .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfhDBf8oF .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfhDBva1a {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfhDBLrLb {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvfhDBLrLb h2 {
  text-align: left;
}
.cid-uvfhDBLrLb h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfhDBLrLb p {
  color: #767676;
  text-align: left;
}
.cid-uvfhDBLrLb .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfhDBLrLb .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfhDBLrLb .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfhDBLrLb .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfhDBLrLb .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfhDBLrLb .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfhDBLrLb .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfhDBLrLb .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfhDBLrLb .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfhDBLrLb .mbr-text {
  color: #232323;
}
.cid-uvfhDC1nRM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvfhDC1nRM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfhDC1nRM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfhDC1nRM .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvfhDC1nRM .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvfhDC1nRM .container {
    padding: 0 26px;
  }
}
.cid-uvfhDC1nRM .row {
  justify-content: center;
}
.cid-uvfhDC1nRM .item {
  margin-bottom: 32px;
}
.cid-uvfhDC1nRM .item a {
  display: block;
}
.cid-uvfhDC1nRM .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvfhDC1nRM .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvfhDC1nRM .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvfhDC1nRM .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-uvfhDC1nRM .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvfhDC1nRM .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvfhDC1nRM .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-uvfhDC1nRM .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvfhDC1nRM .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvfhDC1nRM .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvfhDC1nRM .item-title {
  color: #ffffff;
}
.cid-uvfhDC1nRM .mbr-date {
  color: #cacaca;
}
.cid-uvfhDC1nRM .mbr-desc {
  color: #cacaca;
}
.cid-uvfhDCkte3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvfhDCkte3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfhDCkte3 .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-uvfhDCkte3 .container {
    padding: 0 16px;
  }
}
.cid-uvfhDCkte3 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvfhDCkte3 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfhDCkte3 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvfhDCkte3 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfhDCkte3 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvfhDCkte3 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvfhDCkte3 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvfhDCkte3 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvfhDCkte3 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvfhDCkte3 .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-uvfhDCkte3 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvfhDCkte3 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvfhDCkte3 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvfhDCkte3 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvfhDCkte3 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvfhDCkte3 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvfhDCkte3 .dragArea.row .form-group .form-control:hover,
.cid-uvfhDCkte3 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvfhDCkte3 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvfhDCkte3 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvfhDCkte3 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvfhDCkte3 .mbr-title {
  color: #ffffff;
}
.cid-uvfhDCkte3 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvfhDCkte3 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvfhDCkte3 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvfhDCkte3 .list {
  color: #08323C;
}
.cid-uvfhDCkte3 label {
  color: #08323C;
}
.cid-uvfhDCkte3 H3 {
  color: #000000;
}
.cid-uvfhDCkte3 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvfjVTgevl {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfjVTgevl H1 {
  text-align: center;
}
.cid-uDmFuwySM5 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmFuwySM5 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmFuwySM5 .video-block {
    width: 100% !important;
  }
}
.cid-uvfjVTxqtS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfjVTITNA {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvfjVTITNA .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfjVTITNA .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfjVTITNA .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfjVTITNA .box {
  left: 20%;
}
.cid-uvfjVTITNA .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvfjVTITNA .mbr-section-text,
.cid-uvfjVTITNA .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvfjVTITNA .text-box {
    display: none;
  }
  .cid-uvfjVTITNA .mbr-section-title,
  .cid-uvfjVTITNA .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfjVTITNA .box {
    display: none;
  }
  .cid-uvfjVTITNA .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfjVTITNA .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfjVTITNA .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfjVTITNA .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfjVTITNA .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfjVTITNA .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfjVTVTVM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfjVTVTVM H1 {
  text-align: center;
}
.cid-uvfjVU7gYA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfjVUhTFC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfjVUhTFC h2 {
  text-align: left;
}
.cid-uvfjVUhTFC h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfjVUhTFC p {
  color: #767676;
  text-align: left;
}
.cid-uvfjVUhTFC .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfjVUhTFC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfjVUhTFC .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfjVUhTFC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfjVUhTFC .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfjVUhTFC .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfjVUhTFC .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfjVUhTFC .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfjVUhTFC .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfjVUhTFC H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvfjVUhTFC P {
  color: #ffffff;
  text-align: left;
}
.cid-uvfjVUhTFC H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvfjVUxhur {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfjVUxhur H1 {
  color: #000000;
}
.cid-uxjTMwNMtf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjTMwNMtf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjTMwNMtf .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjTMwNMtf .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjTMwNMtf .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjTMwNMtf .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjTMwNMtf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjTMwNMtf .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjTMwNMtf .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjTMwNMtf .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjTMwNMtf .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjTMwNMtf .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-uxjTMwNMtf .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjTMwNMtf .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjTMwNMtf .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjTMwNMtf .mbr-text,
.cid-uxjTMwNMtf .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvfjVV5O3G {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfjVV5O3G H1 {
  color: #000000;
}
.cid-uxjUp6Fc9s {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjUp6Fc9s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjUp6Fc9s .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjUp6Fc9s .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjUp6Fc9s .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjUp6Fc9s .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjUp6Fc9s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjUp6Fc9s .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjUp6Fc9s .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjUp6Fc9s .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjUp6Fc9s .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjUp6Fc9s .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-uxjUp6Fc9s .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjUp6Fc9s .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjUp6Fc9s .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjUp6Fc9s .mbr-text,
.cid-uxjUp6Fc9s .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfjVVM0B9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfjVVM0B9 H1 {
  color: #000000;
}
.cid-uxjUpOxtrl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjUpOxtrl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjUpOxtrl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjUpOxtrl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjUpOxtrl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjUpOxtrl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjUpOxtrl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjUpOxtrl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjUpOxtrl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjUpOxtrl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjUpOxtrl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjUpOxtrl .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-uxjUpOxtrl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjUpOxtrl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjUpOxtrl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjUpOxtrl .mbr-text,
.cid-uxjUpOxtrl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjUqy7p1z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjUqy7p1z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjUqy7p1z .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjUqy7p1z .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjUqy7p1z .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjUqy7p1z .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjUqy7p1z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjUqy7p1z .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjUqy7p1z .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjUqy7p1z .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjUqy7p1z .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjUqy7p1z .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-uxjUqy7p1z .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjUqy7p1z .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjUqy7p1z .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjUqy7p1z .mbr-text,
.cid-uxjUqy7p1z .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfjVWQyIB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvfjVWQyIB H1 {
  color: #000000;
}
.cid-uxjUwUjMLE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjUwUjMLE h2 {
  text-align: left;
}
.cid-uxjUwUjMLE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjUwUjMLE p {
  color: #767676;
  text-align: left;
}
.cid-uxjUwUjMLE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjUwUjMLE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjUwUjMLE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjUwUjMLE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjUwUjMLE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjUwUjMLE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjUwUjMLE .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjUwUjMLE .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjUwUjMLE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjUwUjMLE .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjUwUjMLE .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfjVXljE4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvfjVXljE4 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfjVXljE4 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfjVXljE4 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfjVXljE4 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvfjVXljE4 .box {
  right: 20%;
}
.cid-uvfjVXljE4 .text-box {
  right: 0;
}
.cid-uvfjVXljE4 .mbr-section-title,
.cid-uvfjVXljE4 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvfjVXljE4 .text-box {
    display: none;
  }
  .cid-uvfjVXljE4 .mbr-section-title,
  .cid-uvfjVXljE4 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfjVXljE4 .box {
    display: none;
  }
  .cid-uvfjVXljE4 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfjVXljE4 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfjVXljE4 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfjVXljE4 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfjVXljE4 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfjVXljE4 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfjVXBBnA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfjVXR774 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvfjVXR774 h2 {
  text-align: left;
}
.cid-uvfjVXR774 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfjVXR774 p {
  color: #767676;
  text-align: left;
}
.cid-uvfjVXR774 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfjVXR774 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfjVXR774 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfjVXR774 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfjVXR774 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfjVXR774 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfjVXR774 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfjVXR774 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfjVXR774 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfjVXR774 .mbr-text {
  color: #232323;
}
.cid-uvfjVYaEDx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvfjVYaEDx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfjVYaEDx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfjVYaEDx .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvfjVYaEDx .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvfjVYaEDx .container {
    padding: 0 26px;
  }
}
.cid-uvfjVYaEDx .row {
  justify-content: center;
}
.cid-uvfjVYaEDx .item {
  margin-bottom: 32px;
}
.cid-uvfjVYaEDx .item a {
  display: block;
}
.cid-uvfjVYaEDx .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvfjVYaEDx .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvfjVYaEDx .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvfjVYaEDx .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-uvfjVYaEDx .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvfjVYaEDx .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvfjVYaEDx .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-uvfjVYaEDx .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvfjVYaEDx .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvfjVYaEDx .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvfjVYaEDx .item-title {
  color: #ffffff;
}
.cid-uvfjVYaEDx .mbr-date {
  color: #cacaca;
}
.cid-uvfjVYaEDx .mbr-desc {
  color: #cacaca;
}
.cid-uvfjVYuTlA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvfjVYuTlA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfjVYuTlA .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-uvfjVYuTlA .container {
    padding: 0 16px;
  }
}
.cid-uvfjVYuTlA .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvfjVYuTlA .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfjVYuTlA .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvfjVYuTlA .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfjVYuTlA .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvfjVYuTlA .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvfjVYuTlA .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvfjVYuTlA .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvfjVYuTlA .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvfjVYuTlA .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-uvfjVYuTlA .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvfjVYuTlA .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvfjVYuTlA .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvfjVYuTlA .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvfjVYuTlA .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvfjVYuTlA .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvfjVYuTlA .dragArea.row .form-group .form-control:hover,
.cid-uvfjVYuTlA .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvfjVYuTlA .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvfjVYuTlA .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvfjVYuTlA .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvfjVYuTlA .mbr-title {
  color: #ffffff;
}
.cid-uvfjVYuTlA .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvfjVYuTlA .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvfjVYuTlA .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvfjVYuTlA .list {
  color: #08323C;
}
.cid-uvfjVYuTlA label {
  color: #08323C;
}
.cid-uvfjVYuTlA H3 {
  color: #000000;
}
.cid-uvfjVYuTlA P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvfljIBFvu {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfljIBFvu H1 {
  text-align: center;
}
.cid-uDmFwWWiw1 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmFwWWiw1 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmFwWWiw1 .video-block {
    width: 100% !important;
  }
}
.cid-uvfljISyre {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfljJ2IxB {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvfljJ2IxB .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfljJ2IxB .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfljJ2IxB .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfljJ2IxB .box {
  left: 20%;
}
.cid-uvfljJ2IxB .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvfljJ2IxB .mbr-section-text,
.cid-uvfljJ2IxB .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvfljJ2IxB .text-box {
    display: none;
  }
  .cid-uvfljJ2IxB .mbr-section-title,
  .cid-uvfljJ2IxB .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfljJ2IxB .box {
    display: none;
  }
  .cid-uvfljJ2IxB .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfljJ2IxB .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfljJ2IxB .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfljJ2IxB .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfljJ2IxB .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfljJ2IxB .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfljJdCLw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfljJdCLw H1 {
  text-align: center;
}
.cid-uvfljJrbtL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfljJCWrN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfljJCWrN h2 {
  text-align: left;
}
.cid-uvfljJCWrN h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfljJCWrN p {
  color: #767676;
  text-align: left;
}
.cid-uvfljJCWrN .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfljJCWrN .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfljJCWrN .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfljJCWrN .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfljJCWrN .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfljJCWrN .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfljJCWrN .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfljJCWrN .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfljJCWrN .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfljJCWrN H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvfljJCWrN P {
  color: #ffffff;
  text-align: left;
}
.cid-uvfljJCWrN H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvfljJSPnc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfljJSPnc H1 {
  color: #000000;
}
.cid-uxjUFH56yo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjUFH56yo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjUFH56yo .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjUFH56yo .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjUFH56yo .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjUFH56yo .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjUFH56yo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjUFH56yo .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjUFH56yo .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjUFH56yo .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjUFH56yo .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjUFH56yo .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-uxjUFH56yo .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjUFH56yo .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjUFH56yo .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjUFH56yo .mbr-text,
.cid-uxjUFH56yo .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvfljKrzqc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfljKrzqc H1 {
  color: #000000;
}
.cid-uxjUGkODcW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjUGkODcW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjUGkODcW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjUGkODcW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjUGkODcW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjUGkODcW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjUGkODcW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjUGkODcW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjUGkODcW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjUGkODcW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjUGkODcW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjUGkODcW .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-uxjUGkODcW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjUGkODcW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjUGkODcW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjUGkODcW .mbr-text,
.cid-uxjUGkODcW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfljKYuX1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfljKYuX1 H1 {
  color: #000000;
}
.cid-uxjUGYwzCB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjUGYwzCB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjUGYwzCB .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjUGYwzCB .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjUGYwzCB .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjUGYwzCB .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjUGYwzCB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjUGYwzCB .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjUGYwzCB .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjUGYwzCB .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjUGYwzCB .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjUGYwzCB .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-uxjUGYwzCB .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjUGYwzCB .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjUGYwzCB .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjUGYwzCB .mbr-text,
.cid-uxjUGYwzCB .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjUHNHGi8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjUHNHGi8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjUHNHGi8 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjUHNHGi8 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjUHNHGi8 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjUHNHGi8 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjUHNHGi8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjUHNHGi8 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjUHNHGi8 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjUHNHGi8 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjUHNHGi8 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjUHNHGi8 .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-uxjUHNHGi8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjUHNHGi8 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjUHNHGi8 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjUHNHGi8 .mbr-text,
.cid-uxjUHNHGi8 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfljLWxLt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvfljLWxLt H1 {
  color: #000000;
}
.cid-uxjUE4oWBM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjUE4oWBM h2 {
  text-align: left;
}
.cid-uxjUE4oWBM h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjUE4oWBM p {
  color: #767676;
  text-align: left;
}
.cid-uxjUE4oWBM .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjUE4oWBM .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjUE4oWBM .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjUE4oWBM .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjUE4oWBM .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjUE4oWBM .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjUE4oWBM .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjUE4oWBM .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjUE4oWBM .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjUE4oWBM .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjUE4oWBM .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfljMsgtd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvfljMsgtd .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfljMsgtd .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfljMsgtd .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfljMsgtd .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvfljMsgtd .box {
  right: 20%;
}
.cid-uvfljMsgtd .text-box {
  right: 0;
}
.cid-uvfljMsgtd .mbr-section-title,
.cid-uvfljMsgtd .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvfljMsgtd .text-box {
    display: none;
  }
  .cid-uvfljMsgtd .mbr-section-title,
  .cid-uvfljMsgtd .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfljMsgtd .box {
    display: none;
  }
  .cid-uvfljMsgtd .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfljMsgtd .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfljMsgtd .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfljMsgtd .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfljMsgtd .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfljMsgtd .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfljMJ8py {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfljMWNRi {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvfljMWNRi h2 {
  text-align: left;
}
.cid-uvfljMWNRi h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfljMWNRi p {
  color: #767676;
  text-align: left;
}
.cid-uvfljMWNRi .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfljMWNRi .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfljMWNRi .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfljMWNRi .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfljMWNRi .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfljMWNRi .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfljMWNRi .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfljMWNRi .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfljMWNRi .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfljMWNRi .mbr-text {
  color: #232323;
}
.cid-uvfljNcNRk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvfljNcNRk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfljNcNRk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfljNcNRk .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvfljNcNRk .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvfljNcNRk .container {
    padding: 0 26px;
  }
}
.cid-uvfljNcNRk .row {
  justify-content: center;
}
.cid-uvfljNcNRk .item {
  margin-bottom: 32px;
}
.cid-uvfljNcNRk .item a {
  display: block;
}
.cid-uvfljNcNRk .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvfljNcNRk .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvfljNcNRk .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvfljNcNRk .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-uvfljNcNRk .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvfljNcNRk .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvfljNcNRk .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-uvfljNcNRk .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvfljNcNRk .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvfljNcNRk .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvfljNcNRk .item-title {
  color: #ffffff;
}
.cid-uvfljNcNRk .mbr-date {
  color: #cacaca;
}
.cid-uvfljNcNRk .mbr-desc {
  color: #cacaca;
}
.cid-uvfljNsoDT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvfljNsoDT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfljNsoDT .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-uvfljNsoDT .container {
    padding: 0 16px;
  }
}
.cid-uvfljNsoDT .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvfljNsoDT .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfljNsoDT .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvfljNsoDT .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfljNsoDT .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvfljNsoDT .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvfljNsoDT .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvfljNsoDT .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvfljNsoDT .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvfljNsoDT .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-uvfljNsoDT .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvfljNsoDT .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvfljNsoDT .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvfljNsoDT .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvfljNsoDT .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvfljNsoDT .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvfljNsoDT .dragArea.row .form-group .form-control:hover,
.cid-uvfljNsoDT .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvfljNsoDT .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvfljNsoDT .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvfljNsoDT .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvfljNsoDT .mbr-title {
  color: #ffffff;
}
.cid-uvfljNsoDT .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvfljNsoDT .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvfljNsoDT .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvfljNsoDT .list {
  color: #08323C;
}
.cid-uvfljNsoDT label {
  color: #08323C;
}
.cid-uvfljNsoDT H3 {
  color: #000000;
}
.cid-uvfljNsoDT P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvfnNOGB7z {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfnNOGB7z H1 {
  text-align: center;
}
.cid-uDmFzxOIiz {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmFzxOIiz .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmFzxOIiz .video-block {
    width: 100% !important;
  }
}
.cid-uvfnNOWzMZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfnNP8ePb {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvfnNP8ePb .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfnNP8ePb .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfnNP8ePb .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfnNP8ePb .box {
  left: 20%;
}
.cid-uvfnNP8ePb .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvfnNP8ePb .mbr-section-text,
.cid-uvfnNP8ePb .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvfnNP8ePb .text-box {
    display: none;
  }
  .cid-uvfnNP8ePb .mbr-section-title,
  .cid-uvfnNP8ePb .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfnNP8ePb .box {
    display: none;
  }
  .cid-uvfnNP8ePb .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfnNP8ePb .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfnNP8ePb .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfnNP8ePb .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfnNP8ePb .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfnNP8ePb .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfnNPmVvM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfnNPmVvM H1 {
  text-align: center;
}
.cid-uvfnNPzGrZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfnNPKYlo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfnNPKYlo h2 {
  text-align: left;
}
.cid-uvfnNPKYlo h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfnNPKYlo p {
  color: #767676;
  text-align: left;
}
.cid-uvfnNPKYlo .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfnNPKYlo .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfnNPKYlo .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfnNPKYlo .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfnNPKYlo .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfnNPKYlo .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfnNPKYlo .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfnNPKYlo .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfnNPKYlo .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfnNPKYlo H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvfnNPKYlo P {
  color: #ffffff;
  text-align: left;
}
.cid-uvfnNPKYlo H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvfnNQ0oiU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfnNQ0oiU H1 {
  color: #000000;
}
.cid-uxjUP5SOfG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjUP5SOfG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjUP5SOfG .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjUP5SOfG .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjUP5SOfG .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjUP5SOfG .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjUP5SOfG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjUP5SOfG .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjUP5SOfG .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjUP5SOfG .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjUP5SOfG .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjUP5SOfG .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-uxjUP5SOfG .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjUP5SOfG .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjUP5SOfG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjUP5SOfG .mbr-text,
.cid-uxjUP5SOfG .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvfnNQCCbl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfnNQCCbl H1 {
  color: #000000;
}
.cid-uxjUPLFfdr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjUPLFfdr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjUPLFfdr .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjUPLFfdr .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjUPLFfdr .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjUPLFfdr .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjUPLFfdr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjUPLFfdr .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjUPLFfdr .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjUPLFfdr .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjUPLFfdr .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjUPLFfdr .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-uxjUPLFfdr .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjUPLFfdr .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjUPLFfdr .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjUPLFfdr .mbr-text,
.cid-uxjUPLFfdr .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfnNRe3Oj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfnNRe3Oj H1 {
  color: #000000;
}
.cid-uxjUQmXwXb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjUQmXwXb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjUQmXwXb .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjUQmXwXb .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjUQmXwXb .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjUQmXwXb .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjUQmXwXb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjUQmXwXb .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjUQmXwXb .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjUQmXwXb .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjUQmXwXb .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjUQmXwXb .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-uxjUQmXwXb .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjUQmXwXb .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjUQmXwXb .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjUQmXwXb .mbr-text,
.cid-uxjUQmXwXb .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjUR5pCTv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjUR5pCTv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjUR5pCTv .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjUR5pCTv .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjUR5pCTv .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjUR5pCTv .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjUR5pCTv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjUR5pCTv .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjUR5pCTv .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjUR5pCTv .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjUR5pCTv .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjUR5pCTv .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-uxjUR5pCTv .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjUR5pCTv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjUR5pCTv .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjUR5pCTv .mbr-text,
.cid-uxjUR5pCTv .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfnNSlk1t {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvfnNSlk1t H1 {
  color: #000000;
}
.cid-uxjUTzGxPM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjUTzGxPM h2 {
  text-align: left;
}
.cid-uxjUTzGxPM h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjUTzGxPM p {
  color: #767676;
  text-align: left;
}
.cid-uxjUTzGxPM .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjUTzGxPM .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjUTzGxPM .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjUTzGxPM .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjUTzGxPM .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjUTzGxPM .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjUTzGxPM .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjUTzGxPM .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjUTzGxPM .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjUTzGxPM .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjUTzGxPM .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfnNSRdWq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvfnNSRdWq .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfnNSRdWq .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfnNSRdWq .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfnNSRdWq .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvfnNSRdWq .box {
  right: 20%;
}
.cid-uvfnNSRdWq .text-box {
  right: 0;
}
.cid-uvfnNSRdWq .mbr-section-title,
.cid-uvfnNSRdWq .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvfnNSRdWq .text-box {
    display: none;
  }
  .cid-uvfnNSRdWq .mbr-section-title,
  .cid-uvfnNSRdWq .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfnNSRdWq .box {
    display: none;
  }
  .cid-uvfnNSRdWq .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfnNSRdWq .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfnNSRdWq .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfnNSRdWq .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfnNSRdWq .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfnNSRdWq .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfnNT6McN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfnNTl0xz {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvfnNTl0xz h2 {
  text-align: left;
}
.cid-uvfnNTl0xz h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfnNTl0xz p {
  color: #767676;
  text-align: left;
}
.cid-uvfnNTl0xz .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfnNTl0xz .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfnNTl0xz .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfnNTl0xz .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfnNTl0xz .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfnNTl0xz .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfnNTl0xz .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfnNTl0xz .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfnNTl0xz .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfnNTl0xz .mbr-text {
  color: #232323;
}
.cid-uvfnNTFual {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvfnNTFual .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfnNTFual .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfnNTFual .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvfnNTFual .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvfnNTFual .container {
    padding: 0 26px;
  }
}
.cid-uvfnNTFual .row {
  justify-content: center;
}
.cid-uvfnNTFual .item {
  margin-bottom: 32px;
}
.cid-uvfnNTFual .item a {
  display: block;
}
.cid-uvfnNTFual .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvfnNTFual .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvfnNTFual .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvfnNTFual .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-uvfnNTFual .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvfnNTFual .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvfnNTFual .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-uvfnNTFual .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvfnNTFual .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvfnNTFual .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvfnNTFual .item-title {
  color: #ffffff;
}
.cid-uvfnNTFual .mbr-date {
  color: #cacaca;
}
.cid-uvfnNTFual .mbr-desc {
  color: #cacaca;
}
.cid-uvfnNTYYiN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvfnNTYYiN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfnNTYYiN .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-uvfnNTYYiN .container {
    padding: 0 16px;
  }
}
.cid-uvfnNTYYiN .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvfnNTYYiN .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfnNTYYiN .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvfnNTYYiN .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfnNTYYiN .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvfnNTYYiN .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvfnNTYYiN .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvfnNTYYiN .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvfnNTYYiN .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvfnNTYYiN .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-uvfnNTYYiN .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvfnNTYYiN .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvfnNTYYiN .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvfnNTYYiN .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvfnNTYYiN .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvfnNTYYiN .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvfnNTYYiN .dragArea.row .form-group .form-control:hover,
.cid-uvfnNTYYiN .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvfnNTYYiN .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvfnNTYYiN .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvfnNTYYiN .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvfnNTYYiN .mbr-title {
  color: #ffffff;
}
.cid-uvfnNTYYiN .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvfnNTYYiN .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvfnNTYYiN .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvfnNTYYiN .list {
  color: #08323C;
}
.cid-uvfnNTYYiN label {
  color: #08323C;
}
.cid-uvfnNTYYiN H3 {
  color: #000000;
}
.cid-uvfnNTYYiN P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvfqOI75uX {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfqOI75uX H1 {
  text-align: center;
}
.cid-uDmFHDn2eI {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmFHDn2eI .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmFHDn2eI .video-block {
    width: 100% !important;
  }
}
.cid-uvfqOIpLJf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfqOIFBft {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvfqOIFBft .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfqOIFBft .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfqOIFBft .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfqOIFBft .box {
  left: 20%;
}
.cid-uvfqOIFBft .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvfqOIFBft .mbr-section-text,
.cid-uvfqOIFBft .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvfqOIFBft .text-box {
    display: none;
  }
  .cid-uvfqOIFBft .mbr-section-title,
  .cid-uvfqOIFBft .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfqOIFBft .box {
    display: none;
  }
  .cid-uvfqOIFBft .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfqOIFBft .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfqOIFBft .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfqOIFBft .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfqOIFBft .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfqOIFBft .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfqOIS2RM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfqOIS2RM H1 {
  text-align: center;
}
.cid-uvfqOJ5eJr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfqOJi5we {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfqOJi5we h2 {
  text-align: left;
}
.cid-uvfqOJi5we h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfqOJi5we p {
  color: #767676;
  text-align: left;
}
.cid-uvfqOJi5we .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfqOJi5we .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfqOJi5we .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfqOJi5we .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfqOJi5we .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfqOJi5we .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfqOJi5we .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfqOJi5we .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfqOJi5we .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfqOJi5we H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvfqOJi5we P {
  color: #ffffff;
  text-align: left;
}
.cid-uvfqOJi5we H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvfqOJAN6c {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfqOJAN6c H1 {
  color: #000000;
}
.cid-uvfNZ42bfP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uvfNZ42bfP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfNZ42bfP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uvfNZ42bfP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uvfNZ42bfP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uvfNZ42bfP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uvfNZ42bfP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfNZ42bfP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uvfNZ42bfP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uvfNZ42bfP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uvfNZ42bfP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uvfNZ42bfP .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-uvfNZ42bfP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfNZ42bfP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uvfNZ42bfP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uvfNZ42bfP .mbr-text,
.cid-uvfNZ42bfP .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvfqOKbKkz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfqOKbKkz H1 {
  color: #000000;
}
.cid-uxjVukURXE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjVukURXE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjVukURXE .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjVukURXE .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjVukURXE .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjVukURXE .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjVukURXE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjVukURXE .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjVukURXE .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjVukURXE .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjVukURXE .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjVukURXE .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-uxjVukURXE .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjVukURXE .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjVukURXE .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjVukURXE .mbr-text,
.cid-uxjVukURXE .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfqOKN4eB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfqOKN4eB H1 {
  color: #000000;
}
.cid-uxjVv2fWqq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjVv2fWqq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjVv2fWqq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjVv2fWqq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjVv2fWqq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjVv2fWqq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjVv2fWqq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjVv2fWqq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjVv2fWqq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjVv2fWqq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjVv2fWqq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjVv2fWqq .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-uxjVv2fWqq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjVv2fWqq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjVv2fWqq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjVv2fWqq .mbr-text,
.cid-uxjVv2fWqq .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjVvN9U1o {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjVvN9U1o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjVvN9U1o .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjVvN9U1o .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjVvN9U1o .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjVvN9U1o .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjVvN9U1o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjVvN9U1o .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjVvN9U1o .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjVvN9U1o .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjVvN9U1o .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjVvN9U1o .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-uxjVvN9U1o .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjVvN9U1o .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjVvN9U1o .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjVvN9U1o .mbr-text,
.cid-uxjVvN9U1o .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfqOM0ZYy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvfqOM0ZYy H1 {
  color: #000000;
}
.cid-uxjVxNggQB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjVxNggQB h2 {
  text-align: left;
}
.cid-uxjVxNggQB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjVxNggQB p {
  color: #767676;
  text-align: left;
}
.cid-uxjVxNggQB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjVxNggQB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjVxNggQB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjVxNggQB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjVxNggQB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjVxNggQB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjVxNggQB .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjVxNggQB .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjVxNggQB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjVxNggQB .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjVxNggQB .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfqOMG7Mh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvfqOMG7Mh .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfqOMG7Mh .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfqOMG7Mh .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfqOMG7Mh .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvfqOMG7Mh .box {
  right: 20%;
}
.cid-uvfqOMG7Mh .text-box {
  right: 0;
}
.cid-uvfqOMG7Mh .mbr-section-title,
.cid-uvfqOMG7Mh .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvfqOMG7Mh .text-box {
    display: none;
  }
  .cid-uvfqOMG7Mh .mbr-section-title,
  .cid-uvfqOMG7Mh .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfqOMG7Mh .box {
    display: none;
  }
  .cid-uvfqOMG7Mh .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfqOMG7Mh .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfqOMG7Mh .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfqOMG7Mh .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfqOMG7Mh .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfqOMG7Mh .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfqON4dRC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfqONpwV7 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvfqONpwV7 h2 {
  text-align: left;
}
.cid-uvfqONpwV7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfqONpwV7 p {
  color: #767676;
  text-align: left;
}
.cid-uvfqONpwV7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfqONpwV7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfqONpwV7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfqONpwV7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfqONpwV7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfqONpwV7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfqONpwV7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfqONpwV7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfqONpwV7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfqONpwV7 .mbr-text {
  color: #232323;
}
.cid-uvfqONI7xU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvfqONI7xU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfqONI7xU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfqONI7xU .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvfqONI7xU .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvfqONI7xU .container {
    padding: 0 26px;
  }
}
.cid-uvfqONI7xU .row {
  justify-content: center;
}
.cid-uvfqONI7xU .item {
  margin-bottom: 32px;
}
.cid-uvfqONI7xU .item a {
  display: block;
}
.cid-uvfqONI7xU .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvfqONI7xU .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvfqONI7xU .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvfqONI7xU .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-uvfqONI7xU .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvfqONI7xU .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvfqONI7xU .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-uvfqONI7xU .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvfqONI7xU .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvfqONI7xU .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvfqONI7xU .item-title {
  color: #ffffff;
}
.cid-uvfqONI7xU .mbr-date {
  color: #cacaca;
}
.cid-uvfqONI7xU .mbr-desc {
  color: #cacaca;
}
.cid-uvfqOO8xdu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvfqOO8xdu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfqOO8xdu .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-uvfqOO8xdu .container {
    padding: 0 16px;
  }
}
.cid-uvfqOO8xdu .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvfqOO8xdu .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfqOO8xdu .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvfqOO8xdu .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfqOO8xdu .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvfqOO8xdu .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvfqOO8xdu .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvfqOO8xdu .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvfqOO8xdu .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvfqOO8xdu .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-uvfqOO8xdu .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvfqOO8xdu .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvfqOO8xdu .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvfqOO8xdu .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvfqOO8xdu .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvfqOO8xdu .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvfqOO8xdu .dragArea.row .form-group .form-control:hover,
.cid-uvfqOO8xdu .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvfqOO8xdu .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvfqOO8xdu .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvfqOO8xdu .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvfqOO8xdu .mbr-title {
  color: #ffffff;
}
.cid-uvfqOO8xdu .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvfqOO8xdu .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvfqOO8xdu .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvfqOO8xdu .list {
  color: #08323C;
}
.cid-uvfqOO8xdu label {
  color: #08323C;
}
.cid-uvfqOO8xdu H3 {
  color: #000000;
}
.cid-uvfqOO8xdu P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvfv7hhJK4 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfv7hhJK4 H1 {
  text-align: center;
}
.cid-uDmFKp87DA {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmFKp87DA .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmFKp87DA .video-block {
    width: 100% !important;
  }
}
.cid-uvfv7hECEc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfv7hSIhG {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvfv7hSIhG .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfv7hSIhG .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfv7hSIhG .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfv7hSIhG .box {
  left: 20%;
}
.cid-uvfv7hSIhG .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvfv7hSIhG .mbr-section-text,
.cid-uvfv7hSIhG .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvfv7hSIhG .text-box {
    display: none;
  }
  .cid-uvfv7hSIhG .mbr-section-title,
  .cid-uvfv7hSIhG .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfv7hSIhG .box {
    display: none;
  }
  .cid-uvfv7hSIhG .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfv7hSIhG .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfv7hSIhG .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfv7hSIhG .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfv7hSIhG .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfv7hSIhG .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfv7i77AL {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfv7i77AL H1 {
  text-align: center;
}
.cid-uvfv7ikMP9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfv7ixGpy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfv7ixGpy h2 {
  text-align: left;
}
.cid-uvfv7ixGpy h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfv7ixGpy p {
  color: #767676;
  text-align: left;
}
.cid-uvfv7ixGpy .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfv7ixGpy .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfv7ixGpy .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfv7ixGpy .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfv7ixGpy .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfv7ixGpy .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfv7ixGpy .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfv7ixGpy .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfv7ixGpy .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfv7ixGpy H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvfv7ixGpy P {
  color: #ffffff;
  text-align: left;
}
.cid-uvfv7ixGpy H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvfv7iRCD8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfv7iRCD8 H1 {
  color: #000000;
}
.cid-uxjVGHqmVj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjVGHqmVj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjVGHqmVj .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjVGHqmVj .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjVGHqmVj .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjVGHqmVj .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjVGHqmVj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjVGHqmVj .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjVGHqmVj .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjVGHqmVj .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjVGHqmVj .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjVGHqmVj .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-uxjVGHqmVj .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjVGHqmVj .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjVGHqmVj .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjVGHqmVj .mbr-text,
.cid-uxjVGHqmVj .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvfv7jxR9B {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfv7jxR9B H1 {
  color: #000000;
}
.cid-uxjVHrxlyN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjVHrxlyN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjVHrxlyN .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjVHrxlyN .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjVHrxlyN .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjVHrxlyN .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjVHrxlyN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjVHrxlyN .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjVHrxlyN .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjVHrxlyN .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjVHrxlyN .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjVHrxlyN .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-uxjVHrxlyN .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjVHrxlyN .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjVHrxlyN .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjVHrxlyN .mbr-text,
.cid-uxjVHrxlyN .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfv7kd79Q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfv7kd79Q H1 {
  color: #000000;
}
.cid-uxjVI2fADY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjVI2fADY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjVI2fADY .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjVI2fADY .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjVI2fADY .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjVI2fADY .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjVI2fADY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjVI2fADY .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjVI2fADY .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjVI2fADY .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjVI2fADY .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjVI2fADY .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-uxjVI2fADY .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjVI2fADY .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjVI2fADY .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjVI2fADY .mbr-text,
.cid-uxjVI2fADY .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjVIBI1Td {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjVIBI1Td .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjVIBI1Td .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjVIBI1Td .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjVIBI1Td .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjVIBI1Td .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjVIBI1Td .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjVIBI1Td .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjVIBI1Td .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjVIBI1Td .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjVIBI1Td .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjVIBI1Td .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-uxjVIBI1Td .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjVIBI1Td .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjVIBI1Td .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjVIBI1Td .mbr-text,
.cid-uxjVIBI1Td .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfv7llsF2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvfv7llsF2 H1 {
  color: #000000;
}
.cid-uxjVLmOR1w {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjVLmOR1w h2 {
  text-align: left;
}
.cid-uxjVLmOR1w h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjVLmOR1w p {
  color: #767676;
  text-align: left;
}
.cid-uxjVLmOR1w .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjVLmOR1w .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjVLmOR1w .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjVLmOR1w .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjVLmOR1w .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjVLmOR1w .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjVLmOR1w .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjVLmOR1w .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjVLmOR1w .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjVLmOR1w .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjVLmOR1w .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfv7m3E9q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvfv7m3E9q .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfv7m3E9q .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfv7m3E9q .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfv7m3E9q .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvfv7m3E9q .box {
  right: 20%;
}
.cid-uvfv7m3E9q .text-box {
  right: 0;
}
.cid-uvfv7m3E9q .mbr-section-title,
.cid-uvfv7m3E9q .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvfv7m3E9q .text-box {
    display: none;
  }
  .cid-uvfv7m3E9q .mbr-section-title,
  .cid-uvfv7m3E9q .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfv7m3E9q .box {
    display: none;
  }
  .cid-uvfv7m3E9q .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfv7m3E9q .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfv7m3E9q .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfv7m3E9q .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfv7m3E9q .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfv7m3E9q .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfv7mlVaV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfv7mDlFX {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvfv7mDlFX h2 {
  text-align: left;
}
.cid-uvfv7mDlFX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfv7mDlFX p {
  color: #767676;
  text-align: left;
}
.cid-uvfv7mDlFX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfv7mDlFX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfv7mDlFX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfv7mDlFX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfv7mDlFX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfv7mDlFX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfv7mDlFX .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfv7mDlFX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfv7mDlFX .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfv7mDlFX .mbr-text {
  color: #232323;
}
.cid-uvfv7n1Cg6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvfv7n1Cg6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfv7n1Cg6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfv7n1Cg6 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvfv7n1Cg6 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvfv7n1Cg6 .container {
    padding: 0 26px;
  }
}
.cid-uvfv7n1Cg6 .row {
  justify-content: center;
}
.cid-uvfv7n1Cg6 .item {
  margin-bottom: 32px;
}
.cid-uvfv7n1Cg6 .item a {
  display: block;
}
.cid-uvfv7n1Cg6 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvfv7n1Cg6 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvfv7n1Cg6 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvfv7n1Cg6 .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-uvfv7n1Cg6 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvfv7n1Cg6 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvfv7n1Cg6 .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-uvfv7n1Cg6 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvfv7n1Cg6 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvfv7n1Cg6 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvfv7n1Cg6 .item-title {
  color: #ffffff;
}
.cid-uvfv7n1Cg6 .mbr-date {
  color: #cacaca;
}
.cid-uvfv7n1Cg6 .mbr-desc {
  color: #cacaca;
}
.cid-uvfv7nkjh3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvfv7nkjh3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfv7nkjh3 .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-uvfv7nkjh3 .container {
    padding: 0 16px;
  }
}
.cid-uvfv7nkjh3 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvfv7nkjh3 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfv7nkjh3 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvfv7nkjh3 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfv7nkjh3 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvfv7nkjh3 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvfv7nkjh3 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvfv7nkjh3 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvfv7nkjh3 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvfv7nkjh3 .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-uvfv7nkjh3 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvfv7nkjh3 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvfv7nkjh3 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvfv7nkjh3 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvfv7nkjh3 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvfv7nkjh3 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvfv7nkjh3 .dragArea.row .form-group .form-control:hover,
.cid-uvfv7nkjh3 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvfv7nkjh3 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvfv7nkjh3 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvfv7nkjh3 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvfv7nkjh3 .mbr-title {
  color: #ffffff;
}
.cid-uvfv7nkjh3 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvfv7nkjh3 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvfv7nkjh3 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvfv7nkjh3 .list {
  color: #08323C;
}
.cid-uvfv7nkjh3 label {
  color: #08323C;
}
.cid-uvfv7nkjh3 H3 {
  color: #000000;
}
.cid-uvfv7nkjh3 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvfA4xGeD3 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfA4xGeD3 H1 {
  text-align: center;
}
.cid-uDmFTNMBQG {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmFTNMBQG .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmFTNMBQG .video-block {
    width: 100% !important;
  }
}
.cid-uvfA4y1PXn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfA4yejHt {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvfA4yejHt .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfA4yejHt .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfA4yejHt .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfA4yejHt .box {
  left: 20%;
}
.cid-uvfA4yejHt .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvfA4yejHt .mbr-section-text,
.cid-uvfA4yejHt .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvfA4yejHt .text-box {
    display: none;
  }
  .cid-uvfA4yejHt .mbr-section-title,
  .cid-uvfA4yejHt .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfA4yejHt .box {
    display: none;
  }
  .cid-uvfA4yejHt .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfA4yejHt .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfA4yejHt .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfA4yejHt .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfA4yejHt .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfA4yejHt .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfA4yvC0p {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfA4yvC0p H1 {
  text-align: center;
}
.cid-uvfA4yLIgK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfA4yYr0C {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfA4yYr0C h2 {
  text-align: left;
}
.cid-uvfA4yYr0C h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfA4yYr0C p {
  color: #767676;
  text-align: left;
}
.cid-uvfA4yYr0C .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfA4yYr0C .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfA4yYr0C .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfA4yYr0C .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfA4yYr0C .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfA4yYr0C .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfA4yYr0C .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfA4yYr0C .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfA4yYr0C .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfA4yYr0C H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvfA4yYr0C P {
  color: #ffffff;
  text-align: left;
}
.cid-uvfA4yYr0C H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvfA4zgkge {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfA4zgkge H1 {
  color: #000000;
}
.cid-uxjVXtpBMq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjVXtpBMq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjVXtpBMq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjVXtpBMq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjVXtpBMq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjVXtpBMq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjVXtpBMq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjVXtpBMq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjVXtpBMq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjVXtpBMq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjVXtpBMq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjVXtpBMq .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-uxjVXtpBMq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjVXtpBMq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjVXtpBMq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjVXtpBMq .mbr-text,
.cid-uxjVXtpBMq .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvfA4zTiYo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfA4zTiYo H1 {
  color: #000000;
}
.cid-uxjVY90ltG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjVY90ltG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjVY90ltG .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjVY90ltG .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjVY90ltG .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjVY90ltG .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjVY90ltG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjVY90ltG .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjVY90ltG .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjVY90ltG .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjVY90ltG .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjVY90ltG .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-uxjVY90ltG .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjVY90ltG .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjVY90ltG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjVY90ltG .mbr-text,
.cid-uxjVY90ltG .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfA4Azdaf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfA4Azdaf H1 {
  color: #000000;
}
.cid-uxjVYQW7pv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjVYQW7pv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjVYQW7pv .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjVYQW7pv .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjVYQW7pv .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjVYQW7pv .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjVYQW7pv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjVYQW7pv .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjVYQW7pv .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjVYQW7pv .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjVYQW7pv .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjVYQW7pv .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-uxjVYQW7pv .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjVYQW7pv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjVYQW7pv .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjVYQW7pv .mbr-text,
.cid-uxjVYQW7pv .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjVZqB878 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjVZqB878 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjVZqB878 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjVZqB878 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjVZqB878 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjVZqB878 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjVZqB878 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjVZqB878 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjVZqB878 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjVZqB878 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjVZqB878 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjVZqB878 .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-uxjVZqB878 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjVZqB878 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjVZqB878 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjVZqB878 .mbr-text,
.cid-uxjVZqB878 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfA4BHZ1C {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvfA4BHZ1C H1 {
  color: #000000;
}
.cid-uxjW0BDvDd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjW0BDvDd h2 {
  text-align: left;
}
.cid-uxjW0BDvDd h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjW0BDvDd p {
  color: #767676;
  text-align: left;
}
.cid-uxjW0BDvDd .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjW0BDvDd .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjW0BDvDd .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjW0BDvDd .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjW0BDvDd .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjW0BDvDd .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjW0BDvDd .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjW0BDvDd .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjW0BDvDd .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjW0BDvDd .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjW0BDvDd .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfA4Ck8m7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvfA4Ck8m7 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfA4Ck8m7 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfA4Ck8m7 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfA4Ck8m7 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvfA4Ck8m7 .box {
  right: 20%;
}
.cid-uvfA4Ck8m7 .text-box {
  right: 0;
}
.cid-uvfA4Ck8m7 .mbr-section-title,
.cid-uvfA4Ck8m7 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvfA4Ck8m7 .text-box {
    display: none;
  }
  .cid-uvfA4Ck8m7 .mbr-section-title,
  .cid-uvfA4Ck8m7 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfA4Ck8m7 .box {
    display: none;
  }
  .cid-uvfA4Ck8m7 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfA4Ck8m7 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfA4Ck8m7 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfA4Ck8m7 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfA4Ck8m7 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfA4Ck8m7 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfA4CC2Uq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfA4CWYbL {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvfA4CWYbL h2 {
  text-align: left;
}
.cid-uvfA4CWYbL h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfA4CWYbL p {
  color: #767676;
  text-align: left;
}
.cid-uvfA4CWYbL .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfA4CWYbL .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfA4CWYbL .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfA4CWYbL .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfA4CWYbL .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfA4CWYbL .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfA4CWYbL .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfA4CWYbL .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfA4CWYbL .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfA4CWYbL .mbr-text {
  color: #232323;
}
.cid-uvfA4DfrkX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvfA4DfrkX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfA4DfrkX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfA4DfrkX .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvfA4DfrkX .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvfA4DfrkX .container {
    padding: 0 26px;
  }
}
.cid-uvfA4DfrkX .row {
  justify-content: center;
}
.cid-uvfA4DfrkX .item {
  margin-bottom: 32px;
}
.cid-uvfA4DfrkX .item a {
  display: block;
}
.cid-uvfA4DfrkX .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvfA4DfrkX .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvfA4DfrkX .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvfA4DfrkX .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-uvfA4DfrkX .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvfA4DfrkX .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvfA4DfrkX .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-uvfA4DfrkX .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvfA4DfrkX .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvfA4DfrkX .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvfA4DfrkX .item-title {
  color: #ffffff;
}
.cid-uvfA4DfrkX .mbr-date {
  color: #cacaca;
}
.cid-uvfA4DfrkX .mbr-desc {
  color: #cacaca;
}
.cid-uvfA4DysJb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvfA4DysJb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfA4DysJb .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-uvfA4DysJb .container {
    padding: 0 16px;
  }
}
.cid-uvfA4DysJb .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvfA4DysJb .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfA4DysJb .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvfA4DysJb .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfA4DysJb .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvfA4DysJb .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvfA4DysJb .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvfA4DysJb .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvfA4DysJb .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvfA4DysJb .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-uvfA4DysJb .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvfA4DysJb .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvfA4DysJb .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvfA4DysJb .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvfA4DysJb .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvfA4DysJb .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvfA4DysJb .dragArea.row .form-group .form-control:hover,
.cid-uvfA4DysJb .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvfA4DysJb .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvfA4DysJb .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvfA4DysJb .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvfA4DysJb .mbr-title {
  color: #ffffff;
}
.cid-uvfA4DysJb .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvfA4DysJb .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvfA4DysJb .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvfA4DysJb .list {
  color: #08323C;
}
.cid-uvfA4DysJb label {
  color: #08323C;
}
.cid-uvfA4DysJb H3 {
  color: #000000;
}
.cid-uvfA4DysJb P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvfDqFQaXJ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfDqFQaXJ H1 {
  text-align: center;
}
.cid-uDmG4dDLv8 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmG4dDLv8 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmG4dDLv8 .video-block {
    width: 100% !important;
  }
}
.cid-uvfDqGbh7I {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfDqGsbui {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvfDqGsbui .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfDqGsbui .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfDqGsbui .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfDqGsbui .box {
  left: 20%;
}
.cid-uvfDqGsbui .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvfDqGsbui .mbr-section-text,
.cid-uvfDqGsbui .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvfDqGsbui .text-box {
    display: none;
  }
  .cid-uvfDqGsbui .mbr-section-title,
  .cid-uvfDqGsbui .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfDqGsbui .box {
    display: none;
  }
  .cid-uvfDqGsbui .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfDqGsbui .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfDqGsbui .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfDqGsbui .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfDqGsbui .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfDqGsbui .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfDqGI7cR {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfDqGI7cR H1 {
  text-align: center;
}
.cid-uvfDqGW80U {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfDqH9vpJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfDqH9vpJ h2 {
  text-align: left;
}
.cid-uvfDqH9vpJ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfDqH9vpJ p {
  color: #767676;
  text-align: left;
}
.cid-uvfDqH9vpJ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfDqH9vpJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfDqH9vpJ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfDqH9vpJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfDqH9vpJ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfDqH9vpJ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfDqH9vpJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfDqH9vpJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfDqH9vpJ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfDqH9vpJ H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvfDqH9vpJ P {
  color: #ffffff;
  text-align: left;
}
.cid-uvfDqH9vpJ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvfDqHu6Hh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfDqHu6Hh H1 {
  color: #000000;
}
.cid-uxjW77hEuG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjW77hEuG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjW77hEuG .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjW77hEuG .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjW77hEuG .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjW77hEuG .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjW77hEuG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjW77hEuG .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjW77hEuG .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjW77hEuG .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjW77hEuG .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjW77hEuG .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-uxjW77hEuG .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjW77hEuG .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjW77hEuG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjW77hEuG .mbr-text,
.cid-uxjW77hEuG .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvfDqI7gkU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfDqI7gkU H1 {
  color: #000000;
}
.cid-uxjW7Gqih5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjW7Gqih5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjW7Gqih5 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjW7Gqih5 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjW7Gqih5 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjW7Gqih5 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjW7Gqih5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjW7Gqih5 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjW7Gqih5 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjW7Gqih5 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjW7Gqih5 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjW7Gqih5 .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-uxjW7Gqih5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjW7Gqih5 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjW7Gqih5 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjW7Gqih5 .mbr-text,
.cid-uxjW7Gqih5 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfDqIOBYO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfDqIOBYO H1 {
  color: #000000;
}
.cid-uxjWalcuJC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjWalcuJC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjWalcuJC .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjWalcuJC .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjWalcuJC .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjWalcuJC .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjWalcuJC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjWalcuJC .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjWalcuJC .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjWalcuJC .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjWalcuJC .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjWalcuJC .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-uxjWalcuJC .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjWalcuJC .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjWalcuJC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjWalcuJC .mbr-text,
.cid-uxjWalcuJC .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjWaYdtQo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjWaYdtQo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjWaYdtQo .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjWaYdtQo .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjWaYdtQo .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjWaYdtQo .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjWaYdtQo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjWaYdtQo .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjWaYdtQo .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjWaYdtQo .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjWaYdtQo .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjWaYdtQo .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-uxjWaYdtQo .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjWaYdtQo .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjWaYdtQo .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjWaYdtQo .mbr-text,
.cid-uxjWaYdtQo .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfDqK0tLH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvfDqK0tLH H1 {
  color: #000000;
}
.cid-uxjWc8GLx3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjWc8GLx3 h2 {
  text-align: left;
}
.cid-uxjWc8GLx3 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjWc8GLx3 p {
  color: #767676;
  text-align: left;
}
.cid-uxjWc8GLx3 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjWc8GLx3 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjWc8GLx3 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjWc8GLx3 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjWc8GLx3 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjWc8GLx3 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjWc8GLx3 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjWc8GLx3 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjWc8GLx3 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjWc8GLx3 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjWc8GLx3 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfDqKD9KV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvfDqKD9KV .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfDqKD9KV .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfDqKD9KV .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfDqKD9KV .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvfDqKD9KV .box {
  right: 20%;
}
.cid-uvfDqKD9KV .text-box {
  right: 0;
}
.cid-uvfDqKD9KV .mbr-section-title,
.cid-uvfDqKD9KV .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvfDqKD9KV .text-box {
    display: none;
  }
  .cid-uvfDqKD9KV .mbr-section-title,
  .cid-uvfDqKD9KV .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfDqKD9KV .box {
    display: none;
  }
  .cid-uvfDqKD9KV .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfDqKD9KV .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfDqKD9KV .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfDqKD9KV .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfDqKD9KV .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfDqKD9KV .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfDqL1LYo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfDqLlT5x {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvfDqLlT5x h2 {
  text-align: left;
}
.cid-uvfDqLlT5x h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfDqLlT5x p {
  color: #767676;
  text-align: left;
}
.cid-uvfDqLlT5x .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfDqLlT5x .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfDqLlT5x .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfDqLlT5x .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfDqLlT5x .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfDqLlT5x .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfDqLlT5x .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfDqLlT5x .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfDqLlT5x .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfDqLlT5x .mbr-text {
  color: #232323;
}
.cid-uvfDqLHkqd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvfDqLHkqd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfDqLHkqd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfDqLHkqd .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvfDqLHkqd .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvfDqLHkqd .container {
    padding: 0 26px;
  }
}
.cid-uvfDqLHkqd .row {
  justify-content: center;
}
.cid-uvfDqLHkqd .item {
  margin-bottom: 32px;
}
.cid-uvfDqLHkqd .item a {
  display: block;
}
.cid-uvfDqLHkqd .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvfDqLHkqd .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvfDqLHkqd .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvfDqLHkqd .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-uvfDqLHkqd .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvfDqLHkqd .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvfDqLHkqd .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-uvfDqLHkqd .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvfDqLHkqd .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvfDqLHkqd .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvfDqLHkqd .item-title {
  color: #ffffff;
}
.cid-uvfDqLHkqd .mbr-date {
  color: #cacaca;
}
.cid-uvfDqLHkqd .mbr-desc {
  color: #cacaca;
}
.cid-uvfDqM9kcW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvfDqM9kcW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfDqM9kcW .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-uvfDqM9kcW .container {
    padding: 0 16px;
  }
}
.cid-uvfDqM9kcW .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvfDqM9kcW .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfDqM9kcW .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvfDqM9kcW .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfDqM9kcW .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvfDqM9kcW .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvfDqM9kcW .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvfDqM9kcW .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvfDqM9kcW .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvfDqM9kcW .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-uvfDqM9kcW .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvfDqM9kcW .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvfDqM9kcW .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvfDqM9kcW .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvfDqM9kcW .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvfDqM9kcW .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvfDqM9kcW .dragArea.row .form-group .form-control:hover,
.cid-uvfDqM9kcW .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvfDqM9kcW .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvfDqM9kcW .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvfDqM9kcW .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvfDqM9kcW .mbr-title {
  color: #ffffff;
}
.cid-uvfDqM9kcW .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvfDqM9kcW .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvfDqM9kcW .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvfDqM9kcW .list {
  color: #08323C;
}
.cid-uvfDqM9kcW label {
  color: #08323C;
}
.cid-uvfDqM9kcW H3 {
  color: #000000;
}
.cid-uvfDqM9kcW P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvfGkgc08u {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfGkgc08u H1 {
  text-align: center;
}
.cid-uDmGkY8yqc {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmGkY8yqc .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmGkY8yqc .video-block {
    width: 100% !important;
  }
}
.cid-uvfGkgClpV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfGkgTCcW {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvfGkgTCcW .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfGkgTCcW .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfGkgTCcW .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfGkgTCcW .box {
  left: 20%;
}
.cid-uvfGkgTCcW .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvfGkgTCcW .mbr-section-text,
.cid-uvfGkgTCcW .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvfGkgTCcW .text-box {
    display: none;
  }
  .cid-uvfGkgTCcW .mbr-section-title,
  .cid-uvfGkgTCcW .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfGkgTCcW .box {
    display: none;
  }
  .cid-uvfGkgTCcW .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfGkgTCcW .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfGkgTCcW .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfGkgTCcW .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfGkgTCcW .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfGkgTCcW .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfGkhaDab {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfGkhaDab H1 {
  text-align: center;
}
.cid-uvfGkhqXxS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfGkhGRyv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfGkhGRyv h2 {
  text-align: left;
}
.cid-uvfGkhGRyv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfGkhGRyv p {
  color: #767676;
  text-align: left;
}
.cid-uvfGkhGRyv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfGkhGRyv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfGkhGRyv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfGkhGRyv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfGkhGRyv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfGkhGRyv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfGkhGRyv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfGkhGRyv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfGkhGRyv .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfGkhGRyv H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvfGkhGRyv P {
  color: #ffffff;
  text-align: left;
}
.cid-uvfGkhGRyv H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvfGki3QKe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfGki3QKe H1 {
  color: #000000;
}
.cid-uxjWNs8ham {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjWNs8ham .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjWNs8ham .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjWNs8ham .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjWNs8ham .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjWNs8ham .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjWNs8ham .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjWNs8ham .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjWNs8ham .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjWNs8ham .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjWNs8ham .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjWNs8ham .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-uxjWNs8ham .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjWNs8ham .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjWNs8ham .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjWNs8ham .mbr-text,
.cid-uxjWNs8ham .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvfGkiPOP5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfGkiPOP5 H1 {
  color: #000000;
}
.cid-uxjWOpc5mC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjWOpc5mC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjWOpc5mC .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjWOpc5mC .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjWOpc5mC .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjWOpc5mC .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjWOpc5mC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjWOpc5mC .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjWOpc5mC .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjWOpc5mC .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjWOpc5mC .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjWOpc5mC .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-uxjWOpc5mC .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjWOpc5mC .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjWOpc5mC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjWOpc5mC .mbr-text,
.cid-uxjWOpc5mC .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfGkjytf6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfGkjytf6 H1 {
  color: #000000;
}
.cid-uxjWP982sE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjWP982sE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjWP982sE .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjWP982sE .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjWP982sE .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjWP982sE .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjWP982sE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjWP982sE .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjWP982sE .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjWP982sE .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjWP982sE .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjWP982sE .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-uxjWP982sE .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjWP982sE .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjWP982sE .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjWP982sE .mbr-text,
.cid-uxjWP982sE .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjWPHXnkw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjWPHXnkw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjWPHXnkw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjWPHXnkw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjWPHXnkw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjWPHXnkw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjWPHXnkw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjWPHXnkw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjWPHXnkw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjWPHXnkw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjWPHXnkw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjWPHXnkw .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-uxjWPHXnkw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjWPHXnkw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjWPHXnkw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjWPHXnkw .mbr-text,
.cid-uxjWPHXnkw .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfGkkKt5a {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvfGkkKt5a H1 {
  color: #000000;
}
.cid-uxjWRdU13V {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjWRdU13V h2 {
  text-align: left;
}
.cid-uxjWRdU13V h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjWRdU13V p {
  color: #767676;
  text-align: left;
}
.cid-uxjWRdU13V .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjWRdU13V .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjWRdU13V .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjWRdU13V .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjWRdU13V .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjWRdU13V .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjWRdU13V .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjWRdU13V .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjWRdU13V .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjWRdU13V .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjWRdU13V .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfGklwz3f {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvfGklwz3f .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfGklwz3f .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfGklwz3f .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfGklwz3f .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvfGklwz3f .box {
  right: 20%;
}
.cid-uvfGklwz3f .text-box {
  right: 0;
}
.cid-uvfGklwz3f .mbr-section-title,
.cid-uvfGklwz3f .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvfGklwz3f .text-box {
    display: none;
  }
  .cid-uvfGklwz3f .mbr-section-title,
  .cid-uvfGklwz3f .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfGklwz3f .box {
    display: none;
  }
  .cid-uvfGklwz3f .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfGklwz3f .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfGklwz3f .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfGklwz3f .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfGklwz3f .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfGklwz3f .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfGklQ0Ty {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfGkmcUFa {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvfGkmcUFa h2 {
  text-align: left;
}
.cid-uvfGkmcUFa h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfGkmcUFa p {
  color: #767676;
  text-align: left;
}
.cid-uvfGkmcUFa .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfGkmcUFa .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfGkmcUFa .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfGkmcUFa .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfGkmcUFa .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfGkmcUFa .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfGkmcUFa .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfGkmcUFa .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfGkmcUFa .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfGkmcUFa .mbr-text {
  color: #232323;
}
.cid-uvfGkmD3sj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvfGkmD3sj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfGkmD3sj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfGkmD3sj .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvfGkmD3sj .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvfGkmD3sj .container {
    padding: 0 26px;
  }
}
.cid-uvfGkmD3sj .row {
  justify-content: center;
}
.cid-uvfGkmD3sj .item {
  margin-bottom: 32px;
}
.cid-uvfGkmD3sj .item a {
  display: block;
}
.cid-uvfGkmD3sj .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvfGkmD3sj .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvfGkmD3sj .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvfGkmD3sj .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-uvfGkmD3sj .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvfGkmD3sj .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvfGkmD3sj .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-uvfGkmD3sj .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvfGkmD3sj .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvfGkmD3sj .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvfGkmD3sj .item-title {
  color: #ffffff;
}
.cid-uvfGkmD3sj .mbr-date {
  color: #cacaca;
}
.cid-uvfGkmD3sj .mbr-desc {
  color: #cacaca;
}
.cid-uvfGkmZqK2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvfGkmZqK2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfGkmZqK2 .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-uvfGkmZqK2 .container {
    padding: 0 16px;
  }
}
.cid-uvfGkmZqK2 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvfGkmZqK2 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfGkmZqK2 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvfGkmZqK2 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfGkmZqK2 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvfGkmZqK2 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvfGkmZqK2 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvfGkmZqK2 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvfGkmZqK2 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvfGkmZqK2 .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-uvfGkmZqK2 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvfGkmZqK2 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvfGkmZqK2 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvfGkmZqK2 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvfGkmZqK2 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvfGkmZqK2 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvfGkmZqK2 .dragArea.row .form-group .form-control:hover,
.cid-uvfGkmZqK2 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvfGkmZqK2 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvfGkmZqK2 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvfGkmZqK2 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvfGkmZqK2 .mbr-title {
  color: #ffffff;
}
.cid-uvfGkmZqK2 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvfGkmZqK2 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvfGkmZqK2 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvfGkmZqK2 .list {
  color: #08323C;
}
.cid-uvfGkmZqK2 label {
  color: #08323C;
}
.cid-uvfGkmZqK2 H3 {
  color: #000000;
}
.cid-uvfGkmZqK2 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvfHoDaID4 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfHoDaID4 H1 {
  text-align: center;
}
.cid-uDmGntCqlg {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmGntCqlg .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmGntCqlg .video-block {
    width: 100% !important;
  }
}
.cid-uvfHoDvvqC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfHoDJt4N {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvfHoDJt4N .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfHoDJt4N .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfHoDJt4N .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfHoDJt4N .box {
  left: 20%;
}
.cid-uvfHoDJt4N .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvfHoDJt4N .mbr-section-text,
.cid-uvfHoDJt4N .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvfHoDJt4N .text-box {
    display: none;
  }
  .cid-uvfHoDJt4N .mbr-section-title,
  .cid-uvfHoDJt4N .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfHoDJt4N .box {
    display: none;
  }
  .cid-uvfHoDJt4N .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfHoDJt4N .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfHoDJt4N .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfHoDJt4N .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfHoDJt4N .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfHoDJt4N .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfHoDZIB4 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfHoDZIB4 H1 {
  text-align: center;
}
.cid-uvfHoEhdWp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfHoEvFnA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfHoEvFnA h2 {
  text-align: left;
}
.cid-uvfHoEvFnA h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfHoEvFnA p {
  color: #767676;
  text-align: left;
}
.cid-uvfHoEvFnA .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfHoEvFnA .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfHoEvFnA .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfHoEvFnA .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfHoEvFnA .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfHoEvFnA .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfHoEvFnA .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfHoEvFnA .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfHoEvFnA .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfHoEvFnA H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvfHoEvFnA P {
  color: #ffffff;
  text-align: left;
}
.cid-uvfHoEvFnA H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvfHoEPym2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfHoEPym2 H1 {
  color: #000000;
}
.cid-uxjWYBqPlH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjWYBqPlH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjWYBqPlH .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjWYBqPlH .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjWYBqPlH .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjWYBqPlH .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjWYBqPlH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjWYBqPlH .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjWYBqPlH .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjWYBqPlH .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjWYBqPlH .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjWYBqPlH .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-uxjWYBqPlH .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjWYBqPlH .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjWYBqPlH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjWYBqPlH .mbr-text,
.cid-uxjWYBqPlH .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvfHoFwmJA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfHoFwmJA H1 {
  color: #000000;
}
.cid-uxjWZxCWLt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjWZxCWLt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjWZxCWLt .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjWZxCWLt .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjWZxCWLt .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjWZxCWLt .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjWZxCWLt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjWZxCWLt .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjWZxCWLt .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjWZxCWLt .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjWZxCWLt .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjWZxCWLt .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-uxjWZxCWLt .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjWZxCWLt .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjWZxCWLt .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjWZxCWLt .mbr-text,
.cid-uxjWZxCWLt .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfHoGf9eT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfHoGf9eT H1 {
  color: #000000;
}
.cid-uxjX067JpM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjX067JpM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjX067JpM .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjX067JpM .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjX067JpM .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjX067JpM .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjX067JpM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjX067JpM .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjX067JpM .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjX067JpM .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjX067JpM .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjX067JpM .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-uxjX067JpM .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjX067JpM .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjX067JpM .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjX067JpM .mbr-text,
.cid-uxjX067JpM .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjX0J0hDu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjX0J0hDu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjX0J0hDu .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjX0J0hDu .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjX0J0hDu .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjX0J0hDu .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjX0J0hDu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjX0J0hDu .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjX0J0hDu .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjX0J0hDu .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjX0J0hDu .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjX0J0hDu .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-uxjX0J0hDu .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjX0J0hDu .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjX0J0hDu .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjX0J0hDu .mbr-text,
.cid-uxjX0J0hDu .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfHoHszGO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvfHoHszGO H1 {
  color: #000000;
}
.cid-uxjX27sI3J {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjX27sI3J h2 {
  text-align: left;
}
.cid-uxjX27sI3J h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjX27sI3J p {
  color: #767676;
  text-align: left;
}
.cid-uxjX27sI3J .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjX27sI3J .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjX27sI3J .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjX27sI3J .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjX27sI3J .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjX27sI3J .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjX27sI3J .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjX27sI3J .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjX27sI3J .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjX27sI3J .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjX27sI3J .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfHoI7g0c {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvfHoI7g0c .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfHoI7g0c .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfHoI7g0c .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfHoI7g0c .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvfHoI7g0c .box {
  right: 20%;
}
.cid-uvfHoI7g0c .text-box {
  right: 0;
}
.cid-uvfHoI7g0c .mbr-section-title,
.cid-uvfHoI7g0c .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvfHoI7g0c .text-box {
    display: none;
  }
  .cid-uvfHoI7g0c .mbr-section-title,
  .cid-uvfHoI7g0c .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfHoI7g0c .box {
    display: none;
  }
  .cid-uvfHoI7g0c .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfHoI7g0c .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfHoI7g0c .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfHoI7g0c .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfHoI7g0c .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfHoI7g0c .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfHoIrHcl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfHoIMQKC {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvfHoIMQKC h2 {
  text-align: left;
}
.cid-uvfHoIMQKC h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfHoIMQKC p {
  color: #767676;
  text-align: left;
}
.cid-uvfHoIMQKC .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfHoIMQKC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfHoIMQKC .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfHoIMQKC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfHoIMQKC .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfHoIMQKC .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfHoIMQKC .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfHoIMQKC .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfHoIMQKC .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfHoIMQKC .mbr-text {
  color: #232323;
}
.cid-uvfHoJ8Aop {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvfHoJ8Aop .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfHoJ8Aop .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfHoJ8Aop .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvfHoJ8Aop .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvfHoJ8Aop .container {
    padding: 0 26px;
  }
}
.cid-uvfHoJ8Aop .row {
  justify-content: center;
}
.cid-uvfHoJ8Aop .item {
  margin-bottom: 32px;
}
.cid-uvfHoJ8Aop .item a {
  display: block;
}
.cid-uvfHoJ8Aop .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvfHoJ8Aop .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvfHoJ8Aop .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvfHoJ8Aop .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-uvfHoJ8Aop .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvfHoJ8Aop .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvfHoJ8Aop .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-uvfHoJ8Aop .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvfHoJ8Aop .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvfHoJ8Aop .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvfHoJ8Aop .item-title {
  color: #ffffff;
}
.cid-uvfHoJ8Aop .mbr-date {
  color: #cacaca;
}
.cid-uvfHoJ8Aop .mbr-desc {
  color: #cacaca;
}
.cid-uvfHoJtuG4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvfHoJtuG4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfHoJtuG4 .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-uvfHoJtuG4 .container {
    padding: 0 16px;
  }
}
.cid-uvfHoJtuG4 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvfHoJtuG4 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfHoJtuG4 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvfHoJtuG4 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfHoJtuG4 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvfHoJtuG4 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvfHoJtuG4 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvfHoJtuG4 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvfHoJtuG4 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvfHoJtuG4 .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-uvfHoJtuG4 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvfHoJtuG4 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvfHoJtuG4 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvfHoJtuG4 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvfHoJtuG4 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvfHoJtuG4 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvfHoJtuG4 .dragArea.row .form-group .form-control:hover,
.cid-uvfHoJtuG4 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvfHoJtuG4 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvfHoJtuG4 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvfHoJtuG4 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvfHoJtuG4 .mbr-title {
  color: #ffffff;
}
.cid-uvfHoJtuG4 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvfHoJtuG4 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvfHoJtuG4 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvfHoJtuG4 .list {
  color: #08323C;
}
.cid-uvfHoJtuG4 label {
  color: #08323C;
}
.cid-uvfHoJtuG4 H3 {
  color: #000000;
}
.cid-uvfHoJtuG4 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvfIEplWu6 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfIEplWu6 H1 {
  text-align: center;
}
.cid-uDmGuIyca3 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmGuIyca3 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmGuIyca3 .video-block {
    width: 100% !important;
  }
}
.cid-uvfIEpJEgE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfIEpZkUX {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvfIEpZkUX .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfIEpZkUX .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfIEpZkUX .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfIEpZkUX .box {
  left: 20%;
}
.cid-uvfIEpZkUX .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvfIEpZkUX .mbr-section-text,
.cid-uvfIEpZkUX .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvfIEpZkUX .text-box {
    display: none;
  }
  .cid-uvfIEpZkUX .mbr-section-title,
  .cid-uvfIEpZkUX .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfIEpZkUX .box {
    display: none;
  }
  .cid-uvfIEpZkUX .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfIEpZkUX .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfIEpZkUX .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfIEpZkUX .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfIEpZkUX .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfIEpZkUX .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfIEqfTiZ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfIEqfTiZ H1 {
  text-align: center;
}
.cid-uvfIEqud5o {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfIEqLnY0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfIEqLnY0 h2 {
  text-align: left;
}
.cid-uvfIEqLnY0 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfIEqLnY0 p {
  color: #767676;
  text-align: left;
}
.cid-uvfIEqLnY0 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfIEqLnY0 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfIEqLnY0 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfIEqLnY0 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfIEqLnY0 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfIEqLnY0 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfIEqLnY0 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfIEqLnY0 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfIEqLnY0 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfIEqLnY0 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvfIEqLnY0 P {
  color: #ffffff;
  text-align: left;
}
.cid-uvfIEqLnY0 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvfIEr5lD4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfIEr5lD4 H1 {
  color: #000000;
}
.cid-uxjXe3kD3G {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjXe3kD3G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjXe3kD3G .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjXe3kD3G .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjXe3kD3G .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjXe3kD3G .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjXe3kD3G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjXe3kD3G .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjXe3kD3G .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjXe3kD3G .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjXe3kD3G .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjXe3kD3G .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-uxjXe3kD3G .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjXe3kD3G .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjXe3kD3G .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjXe3kD3G .mbr-text,
.cid-uxjXe3kD3G .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvfIErRpUn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfIErRpUn H1 {
  color: #000000;
}
.cid-uxjXeGJBCL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjXeGJBCL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjXeGJBCL .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjXeGJBCL .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjXeGJBCL .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjXeGJBCL .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjXeGJBCL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjXeGJBCL .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjXeGJBCL .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjXeGJBCL .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjXeGJBCL .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjXeGJBCL .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-uxjXeGJBCL .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjXeGJBCL .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjXeGJBCL .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjXeGJBCL .mbr-text,
.cid-uxjXeGJBCL .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfIEsAbcl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfIEsAbcl H1 {
  color: #000000;
}
.cid-uxjXfiipTx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjXfiipTx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjXfiipTx .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjXfiipTx .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjXfiipTx .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjXfiipTx .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjXfiipTx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjXfiipTx .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjXfiipTx .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjXfiipTx .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjXfiipTx .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjXfiipTx .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-uxjXfiipTx .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjXfiipTx .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjXfiipTx .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjXfiipTx .mbr-text,
.cid-uxjXfiipTx .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjXfVGYlh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjXfVGYlh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjXfVGYlh .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjXfVGYlh .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjXfVGYlh .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjXfVGYlh .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjXfVGYlh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjXfVGYlh .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjXfVGYlh .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjXfVGYlh .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjXfVGYlh .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjXfVGYlh .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-uxjXfVGYlh .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjXfVGYlh .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjXfVGYlh .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjXfVGYlh .mbr-text,
.cid-uxjXfVGYlh .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfIEtV5w8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvfIEtV5w8 H1 {
  color: #000000;
}
.cid-uxjXhjNf82 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjXhjNf82 h2 {
  text-align: left;
}
.cid-uxjXhjNf82 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjXhjNf82 p {
  color: #767676;
  text-align: left;
}
.cid-uxjXhjNf82 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjXhjNf82 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjXhjNf82 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjXhjNf82 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjXhjNf82 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjXhjNf82 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjXhjNf82 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjXhjNf82 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjXhjNf82 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjXhjNf82 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjXhjNf82 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxjXkrUuHR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjXkrUuHR H1 {
  color: #000000;
}
.cid-uvfIEuHwlF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvfIEuHwlF .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfIEuHwlF .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfIEuHwlF .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfIEuHwlF .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvfIEuHwlF .box {
  right: 20%;
}
.cid-uvfIEuHwlF .text-box {
  right: 0;
}
.cid-uvfIEuHwlF .mbr-section-title,
.cid-uvfIEuHwlF .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvfIEuHwlF .text-box {
    display: none;
  }
  .cid-uvfIEuHwlF .mbr-section-title,
  .cid-uvfIEuHwlF .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfIEuHwlF .box {
    display: none;
  }
  .cid-uvfIEuHwlF .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfIEuHwlF .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfIEuHwlF .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfIEuHwlF .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfIEuHwlF .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfIEuHwlF .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfIEv1F00 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfIEvnTJk {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvfIEvnTJk h2 {
  text-align: left;
}
.cid-uvfIEvnTJk h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfIEvnTJk p {
  color: #767676;
  text-align: left;
}
.cid-uvfIEvnTJk .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfIEvnTJk .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfIEvnTJk .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfIEvnTJk .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfIEvnTJk .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfIEvnTJk .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfIEvnTJk .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfIEvnTJk .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfIEvnTJk .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfIEvnTJk .mbr-text {
  color: #232323;
}
.cid-uvfIEvLWlB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvfIEvLWlB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfIEvLWlB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfIEvLWlB .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvfIEvLWlB .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvfIEvLWlB .container {
    padding: 0 26px;
  }
}
.cid-uvfIEvLWlB .row {
  justify-content: center;
}
.cid-uvfIEvLWlB .item {
  margin-bottom: 32px;
}
.cid-uvfIEvLWlB .item a {
  display: block;
}
.cid-uvfIEvLWlB .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvfIEvLWlB .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvfIEvLWlB .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvfIEvLWlB .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-uvfIEvLWlB .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvfIEvLWlB .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvfIEvLWlB .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-uvfIEvLWlB .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvfIEvLWlB .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvfIEvLWlB .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvfIEvLWlB .item-title {
  color: #ffffff;
}
.cid-uvfIEvLWlB .mbr-date {
  color: #cacaca;
}
.cid-uvfIEvLWlB .mbr-desc {
  color: #cacaca;
}
.cid-uvfIEw96qx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvfIEw96qx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfIEw96qx .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-uvfIEw96qx .container {
    padding: 0 16px;
  }
}
.cid-uvfIEw96qx .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvfIEw96qx .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfIEw96qx .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvfIEw96qx .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfIEw96qx .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvfIEw96qx .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvfIEw96qx .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvfIEw96qx .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvfIEw96qx .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvfIEw96qx .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-uvfIEw96qx .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvfIEw96qx .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvfIEw96qx .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvfIEw96qx .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvfIEw96qx .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvfIEw96qx .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvfIEw96qx .dragArea.row .form-group .form-control:hover,
.cid-uvfIEw96qx .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvfIEw96qx .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvfIEw96qx .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvfIEw96qx .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvfIEw96qx .mbr-title {
  color: #ffffff;
}
.cid-uvfIEw96qx .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvfIEw96qx .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvfIEw96qx .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvfIEw96qx .list {
  color: #08323C;
}
.cid-uvfIEw96qx label {
  color: #08323C;
}
.cid-uvfIEw96qx H3 {
  color: #000000;
}
.cid-uvfIEw96qx P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvfFiNJRDO {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfFiNJRDO H1 {
  text-align: center;
}
.cid-uDmGgzwVi6 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmGgzwVi6 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmGgzwVi6 .video-block {
    width: 100% !important;
  }
}
.cid-uvfFiO9fAe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfFiOrKDg {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvfFiOrKDg .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfFiOrKDg .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfFiOrKDg .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfFiOrKDg .box {
  left: 20%;
}
.cid-uvfFiOrKDg .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvfFiOrKDg .mbr-section-text,
.cid-uvfFiOrKDg .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvfFiOrKDg .text-box {
    display: none;
  }
  .cid-uvfFiOrKDg .mbr-section-title,
  .cid-uvfFiOrKDg .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfFiOrKDg .box {
    display: none;
  }
  .cid-uvfFiOrKDg .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfFiOrKDg .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfFiOrKDg .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfFiOrKDg .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfFiOrKDg .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfFiOrKDg .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfFiOJUz6 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfFiOJUz6 H1 {
  text-align: center;
}
.cid-uvfFiP0Kdq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfFiPgtr8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvfFiPgtr8 h2 {
  text-align: left;
}
.cid-uvfFiPgtr8 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfFiPgtr8 p {
  color: #767676;
  text-align: left;
}
.cid-uvfFiPgtr8 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfFiPgtr8 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfFiPgtr8 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfFiPgtr8 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfFiPgtr8 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfFiPgtr8 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfFiPgtr8 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfFiPgtr8 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfFiPgtr8 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfFiPgtr8 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvfFiPgtr8 P {
  color: #ffffff;
  text-align: left;
}
.cid-uvfFiPgtr8 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvfFiPBdz0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfFiPBdz0 H1 {
  color: #000000;
}
.cid-uxjWmghfr9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjWmghfr9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjWmghfr9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjWmghfr9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjWmghfr9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjWmghfr9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjWmghfr9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjWmghfr9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjWmghfr9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjWmghfr9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjWmghfr9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjWmghfr9 .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-uxjWmghfr9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjWmghfr9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjWmghfr9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjWmghfr9 .mbr-text,
.cid-uxjWmghfr9 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvfFiQlIF6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfFiQlIF6 H1 {
  color: #000000;
}
.cid-uxjWmUmuBH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjWmUmuBH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjWmUmuBH .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjWmUmuBH .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjWmUmuBH .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjWmUmuBH .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjWmUmuBH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjWmUmuBH .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjWmUmuBH .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjWmUmuBH .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjWmUmuBH .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjWmUmuBH .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-uxjWmUmuBH .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjWmUmuBH .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjWmUmuBH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjWmUmuBH .mbr-text,
.cid-uxjWmUmuBH .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfFiR9zxc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvfFiR9zxc H1 {
  color: #000000;
}
.cid-uxjWnsMkqE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjWnsMkqE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjWnsMkqE .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjWnsMkqE .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjWnsMkqE .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjWnsMkqE .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjWnsMkqE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjWnsMkqE .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjWnsMkqE .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjWnsMkqE .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjWnsMkqE .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjWnsMkqE .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-uxjWnsMkqE .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjWnsMkqE .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjWnsMkqE .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjWnsMkqE .mbr-text,
.cid-uxjWnsMkqE .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjWo2FuBr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjWo2FuBr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjWo2FuBr .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjWo2FuBr .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjWo2FuBr .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjWo2FuBr .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjWo2FuBr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjWo2FuBr .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjWo2FuBr .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjWo2FuBr .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjWo2FuBr .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjWo2FuBr .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-uxjWo2FuBr .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjWo2FuBr .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjWo2FuBr .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjWo2FuBr .mbr-text,
.cid-uxjWo2FuBr .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvfFiSnJhS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvfFiSnJhS H1 {
  color: #000000;
}
.cid-uxjWpD3bEf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjWpD3bEf h2 {
  text-align: left;
}
.cid-uxjWpD3bEf h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjWpD3bEf p {
  color: #767676;
  text-align: left;
}
.cid-uxjWpD3bEf .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjWpD3bEf .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjWpD3bEf .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjWpD3bEf .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjWpD3bEf .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjWpD3bEf .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjWpD3bEf .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjWpD3bEf .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjWpD3bEf .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjWpD3bEf .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjWpD3bEf .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfFiSZyYm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvfFiSZyYm .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvfFiSZyYm .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvfFiSZyYm .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvfFiSZyYm .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvfFiSZyYm .box {
  right: 20%;
}
.cid-uvfFiSZyYm .text-box {
  right: 0;
}
.cid-uvfFiSZyYm .mbr-section-title,
.cid-uvfFiSZyYm .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvfFiSZyYm .text-box {
    display: none;
  }
  .cid-uvfFiSZyYm .mbr-section-title,
  .cid-uvfFiSZyYm .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvfFiSZyYm .box {
    display: none;
  }
  .cid-uvfFiSZyYm .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvfFiSZyYm .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvfFiSZyYm .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvfFiSZyYm .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvfFiSZyYm .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvfFiSZyYm .mbr-section-text DIV {
  text-align: center;
}
.cid-uvfFiTimCT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvfFiTzLvl {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvfFiTzLvl h2 {
  text-align: left;
}
.cid-uvfFiTzLvl h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvfFiTzLvl p {
  color: #767676;
  text-align: left;
}
.cid-uvfFiTzLvl .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvfFiTzLvl .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvfFiTzLvl .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvfFiTzLvl .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvfFiTzLvl .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvfFiTzLvl .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvfFiTzLvl .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvfFiTzLvl .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvfFiTzLvl .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvfFiTzLvl .mbr-text {
  color: #232323;
}
.cid-uvfFiTUIUP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvfFiTUIUP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfFiTUIUP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfFiTUIUP .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvfFiTUIUP .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvfFiTUIUP .container {
    padding: 0 26px;
  }
}
.cid-uvfFiTUIUP .row {
  justify-content: center;
}
.cid-uvfFiTUIUP .item {
  margin-bottom: 32px;
}
.cid-uvfFiTUIUP .item a {
  display: block;
}
.cid-uvfFiTUIUP .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvfFiTUIUP .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvfFiTUIUP .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvfFiTUIUP .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-uvfFiTUIUP .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvfFiTUIUP .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvfFiTUIUP .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-uvfFiTUIUP .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvfFiTUIUP .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvfFiTUIUP .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvfFiTUIUP .item-title {
  color: #ffffff;
}
.cid-uvfFiTUIUP .mbr-date {
  color: #cacaca;
}
.cid-uvfFiTUIUP .mbr-desc {
  color: #cacaca;
}
.cid-uvfFiUdLwd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvfFiUdLwd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfFiUdLwd .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-uvfFiUdLwd .container {
    padding: 0 16px;
  }
}
.cid-uvfFiUdLwd .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvfFiUdLwd .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfFiUdLwd .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvfFiUdLwd .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvfFiUdLwd .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvfFiUdLwd .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvfFiUdLwd .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvfFiUdLwd .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvfFiUdLwd .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvfFiUdLwd .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-uvfFiUdLwd .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvfFiUdLwd .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvfFiUdLwd .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvfFiUdLwd .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvfFiUdLwd .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvfFiUdLwd .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvfFiUdLwd .dragArea.row .form-group .form-control:hover,
.cid-uvfFiUdLwd .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvfFiUdLwd .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvfFiUdLwd .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvfFiUdLwd .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvfFiUdLwd .mbr-title {
  color: #ffffff;
}
.cid-uvfFiUdLwd .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvfFiUdLwd .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvfFiUdLwd .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvfFiUdLwd .list {
  color: #08323C;
}
.cid-uvfFiUdLwd label {
  color: #08323C;
}
.cid-uvfFiUdLwd H3 {
  color: #000000;
}
.cid-uvfFiUdLwd P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvkRwFkwD4 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvkRwFkwD4 H1 {
  text-align: center;
}
.cid-uDmGCoXCBN {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmGCoXCBN .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmGCoXCBN .video-block {
    width: 100% !important;
  }
}
.cid-uvkRwFCYE5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvkRwFOfb0 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvkRwFOfb0 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvkRwFOfb0 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvkRwFOfb0 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvkRwFOfb0 .box {
  left: 20%;
}
.cid-uvkRwFOfb0 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvkRwFOfb0 .mbr-section-text,
.cid-uvkRwFOfb0 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvkRwFOfb0 .text-box {
    display: none;
  }
  .cid-uvkRwFOfb0 .mbr-section-title,
  .cid-uvkRwFOfb0 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvkRwFOfb0 .box {
    display: none;
  }
  .cid-uvkRwFOfb0 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvkRwFOfb0 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvkRwFOfb0 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvkRwFOfb0 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvkRwFOfb0 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvkRwFOfb0 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvkRwFYSIN {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvkRwFYSIN H1 {
  text-align: center;
}
.cid-uvkRwG7hyc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvkRwGeBSa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvkRwGeBSa h2 {
  text-align: left;
}
.cid-uvkRwGeBSa h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvkRwGeBSa p {
  color: #767676;
  text-align: left;
}
.cid-uvkRwGeBSa .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvkRwGeBSa .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvkRwGeBSa .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvkRwGeBSa .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvkRwGeBSa .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvkRwGeBSa .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvkRwGeBSa .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvkRwGeBSa .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvkRwGeBSa .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvkRwGeBSa H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvkRwGeBSa P {
  color: #ffffff;
  text-align: left;
}
.cid-uvkRwGeBSa H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvkRwGs4KQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvkRwGs4KQ H1 {
  color: #000000;
}
.cid-uvl4KDCMUD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uvl4KDCMUD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvl4KDCMUD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uvl4KDCMUD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uvl4KDCMUD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uvl4KDCMUD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uvl4KDCMUD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvl4KDCMUD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uvl4KDCMUD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uvl4KDCMUD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uvl4KDCMUD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uvl4KDCMUD .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-uvl4KDCMUD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uvl4KDCMUD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uvl4KDCMUD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uvl4KDCMUD .mbr-text,
.cid-uvl4KDCMUD .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvkRwH5rgl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvkRwH5rgl H1 {
  color: #000000;
}
.cid-uxjXK8HtDU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjXK8HtDU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjXK8HtDU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjXK8HtDU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjXK8HtDU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjXK8HtDU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjXK8HtDU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjXK8HtDU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjXK8HtDU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjXK8HtDU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjXK8HtDU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjXK8HtDU .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-uxjXK8HtDU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjXK8HtDU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjXK8HtDU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjXK8HtDU .mbr-text,
.cid-uxjXK8HtDU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvkRwHE01I {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvkRwHE01I H1 {
  color: #000000;
}
.cid-uxjXKNlL75 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjXKNlL75 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjXKNlL75 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjXKNlL75 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjXKNlL75 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjXKNlL75 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjXKNlL75 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjXKNlL75 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjXKNlL75 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjXKNlL75 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjXKNlL75 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjXKNlL75 .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-uxjXKNlL75 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjXKNlL75 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjXKNlL75 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjXKNlL75 .mbr-text,
.cid-uxjXKNlL75 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjXLuz6sI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjXLuz6sI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjXLuz6sI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjXLuz6sI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjXLuz6sI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjXLuz6sI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjXLuz6sI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjXLuz6sI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjXLuz6sI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjXLuz6sI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjXLuz6sI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjXLuz6sI .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-uxjXLuz6sI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjXLuz6sI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjXLuz6sI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjXLuz6sI .mbr-text,
.cid-uxjXLuz6sI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvkRwIFx5u {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvkRwIFx5u H1 {
  color: #000000;
}
.cid-uxjXIAENjy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjXIAENjy h2 {
  text-align: left;
}
.cid-uxjXIAENjy h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjXIAENjy p {
  color: #767676;
  text-align: left;
}
.cid-uxjXIAENjy .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjXIAENjy .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjXIAENjy .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjXIAENjy .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjXIAENjy .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjXIAENjy .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjXIAENjy .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjXIAENjy .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjXIAENjy .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjXIAENjy .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjXIAENjy .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvkRwJ9xaz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvkRwJ9xaz .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvkRwJ9xaz .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvkRwJ9xaz .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvkRwJ9xaz .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvkRwJ9xaz .box {
  right: 20%;
}
.cid-uvkRwJ9xaz .text-box {
  right: 0;
}
.cid-uvkRwJ9xaz .mbr-section-title,
.cid-uvkRwJ9xaz .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvkRwJ9xaz .text-box {
    display: none;
  }
  .cid-uvkRwJ9xaz .mbr-section-title,
  .cid-uvkRwJ9xaz .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvkRwJ9xaz .box {
    display: none;
  }
  .cid-uvkRwJ9xaz .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvkRwJ9xaz .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvkRwJ9xaz .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvkRwJ9xaz .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvkRwJ9xaz .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvkRwJ9xaz .mbr-section-text DIV {
  text-align: center;
}
.cid-uvkRwJscOa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvkRwJEgIC {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvkRwJEgIC h2 {
  text-align: left;
}
.cid-uvkRwJEgIC h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvkRwJEgIC p {
  color: #767676;
  text-align: left;
}
.cid-uvkRwJEgIC .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvkRwJEgIC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvkRwJEgIC .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvkRwJEgIC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvkRwJEgIC .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvkRwJEgIC .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvkRwJEgIC .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvkRwJEgIC .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvkRwJEgIC .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvkRwJEgIC .mbr-text {
  color: #232323;
}
.cid-uvkRwJTr1q {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvkRwJTr1q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvkRwJTr1q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvkRwJTr1q .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvkRwJTr1q .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvkRwJTr1q .container {
    padding: 0 26px;
  }
}
.cid-uvkRwJTr1q .row {
  justify-content: center;
}
.cid-uvkRwJTr1q .item {
  margin-bottom: 32px;
}
.cid-uvkRwJTr1q .item a {
  display: block;
}
.cid-uvkRwJTr1q .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvkRwJTr1q .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvkRwJTr1q .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvkRwJTr1q .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-uvkRwJTr1q .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvkRwJTr1q .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvkRwJTr1q .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-uvkRwJTr1q .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvkRwJTr1q .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvkRwJTr1q .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvkRwJTr1q .item-title {
  color: #ffffff;
}
.cid-uvkRwJTr1q .mbr-date {
  color: #cacaca;
}
.cid-uvkRwJTr1q .mbr-desc {
  color: #cacaca;
}
.cid-uvkRwKa6lO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvkRwKa6lO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvkRwKa6lO .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-uvkRwKa6lO .container {
    padding: 0 16px;
  }
}
.cid-uvkRwKa6lO .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvkRwKa6lO .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvkRwKa6lO .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvkRwKa6lO .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvkRwKa6lO .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvkRwKa6lO .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvkRwKa6lO .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvkRwKa6lO .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvkRwKa6lO .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvkRwKa6lO .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-uvkRwKa6lO .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvkRwKa6lO .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvkRwKa6lO .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvkRwKa6lO .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvkRwKa6lO .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvkRwKa6lO .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvkRwKa6lO .dragArea.row .form-group .form-control:hover,
.cid-uvkRwKa6lO .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvkRwKa6lO .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvkRwKa6lO .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvkRwKa6lO .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvkRwKa6lO .mbr-title {
  color: #ffffff;
}
.cid-uvkRwKa6lO .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvkRwKa6lO .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvkRwKa6lO .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvkRwKa6lO .list {
  color: #08323C;
}
.cid-uvkRwKa6lO label {
  color: #08323C;
}
.cid-uvkRwKa6lO H3 {
  color: #000000;
}
.cid-uvkRwKa6lO P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvkU4QTei1 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvkU4QTei1 H1 {
  text-align: center;
}
.cid-uDmGFkyaq1 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmGFkyaq1 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmGFkyaq1 .video-block {
    width: 100% !important;
  }
}
.cid-uvkU4R8aDo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvkU4RiN5y {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvkU4RiN5y .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvkU4RiN5y .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvkU4RiN5y .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvkU4RiN5y .box {
  left: 20%;
}
.cid-uvkU4RiN5y .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvkU4RiN5y .mbr-section-text,
.cid-uvkU4RiN5y .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvkU4RiN5y .text-box {
    display: none;
  }
  .cid-uvkU4RiN5y .mbr-section-title,
  .cid-uvkU4RiN5y .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvkU4RiN5y .box {
    display: none;
  }
  .cid-uvkU4RiN5y .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvkU4RiN5y .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvkU4RiN5y .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvkU4RiN5y .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvkU4RiN5y .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvkU4RiN5y .mbr-section-text DIV {
  text-align: center;
}
.cid-uvkU4RtR0o {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvkU4RtR0o H1 {
  text-align: center;
}
.cid-uvkU4RE0Kx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvkU4RQUtn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvkU4RQUtn h2 {
  text-align: left;
}
.cid-uvkU4RQUtn h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvkU4RQUtn p {
  color: #767676;
  text-align: left;
}
.cid-uvkU4RQUtn .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvkU4RQUtn .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvkU4RQUtn .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvkU4RQUtn .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvkU4RQUtn .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvkU4RQUtn .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvkU4RQUtn .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvkU4RQUtn .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvkU4RQUtn .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvkU4RQUtn H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvkU4RQUtn P {
  color: #ffffff;
  text-align: left;
}
.cid-uvkU4RQUtn H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvkU4S5HYr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvkU4S5HYr H1 {
  color: #000000;
}
.cid-uxjXUrCqxx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjXUrCqxx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjXUrCqxx .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjXUrCqxx .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjXUrCqxx .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjXUrCqxx .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjXUrCqxx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjXUrCqxx .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjXUrCqxx .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjXUrCqxx .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjXUrCqxx .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjXUrCqxx .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-uxjXUrCqxx .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjXUrCqxx .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjXUrCqxx .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjXUrCqxx .mbr-text,
.cid-uxjXUrCqxx .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvkU4SGlFQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvkU4SGlFQ H1 {
  color: #000000;
}
.cid-uxjXV7Suyd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjXV7Suyd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjXV7Suyd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjXV7Suyd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjXV7Suyd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjXV7Suyd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjXV7Suyd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjXV7Suyd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjXV7Suyd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjXV7Suyd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjXV7Suyd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjXV7Suyd .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-uxjXV7Suyd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjXV7Suyd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjXV7Suyd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjXV7Suyd .mbr-text,
.cid-uxjXV7Suyd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvkU4TfRIm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvkU4TfRIm H1 {
  color: #000000;
}
.cid-uxjXVTjXfA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjXVTjXfA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjXVTjXfA .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjXVTjXfA .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjXVTjXfA .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjXVTjXfA .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjXVTjXfA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjXVTjXfA .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjXVTjXfA .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjXVTjXfA .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjXVTjXfA .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjXVTjXfA .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-uxjXVTjXfA .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjXVTjXfA .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjXVTjXfA .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjXVTjXfA .mbr-text,
.cid-uxjXVTjXfA .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjXWskBzf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjXWskBzf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjXWskBzf .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjXWskBzf .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjXWskBzf .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjXWskBzf .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjXWskBzf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjXWskBzf .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjXWskBzf .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjXWskBzf .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjXWskBzf .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjXWskBzf .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-uxjXWskBzf .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjXWskBzf .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjXWskBzf .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjXWskBzf .mbr-text,
.cid-uxjXWskBzf .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvkU4UiqCU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvkU4UiqCU H1 {
  color: #000000;
}
.cid-uxjXXAvuIo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjXXAvuIo h2 {
  text-align: left;
}
.cid-uxjXXAvuIo h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjXXAvuIo p {
  color: #767676;
  text-align: left;
}
.cid-uxjXXAvuIo .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjXXAvuIo .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjXXAvuIo .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjXXAvuIo .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjXXAvuIo .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjXXAvuIo .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjXXAvuIo .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjXXAvuIo .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjXXAvuIo .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjXXAvuIo .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjXXAvuIo .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvkU4UOZsV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvkU4UOZsV .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvkU4UOZsV .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvkU4UOZsV .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvkU4UOZsV .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvkU4UOZsV .box {
  right: 20%;
}
.cid-uvkU4UOZsV .text-box {
  right: 0;
}
.cid-uvkU4UOZsV .mbr-section-title,
.cid-uvkU4UOZsV .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvkU4UOZsV .text-box {
    display: none;
  }
  .cid-uvkU4UOZsV .mbr-section-title,
  .cid-uvkU4UOZsV .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvkU4UOZsV .box {
    display: none;
  }
  .cid-uvkU4UOZsV .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvkU4UOZsV .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvkU4UOZsV .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvkU4UOZsV .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvkU4UOZsV .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvkU4UOZsV .mbr-section-text DIV {
  text-align: center;
}
.cid-uvkU4V1WKi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvkU4Vg2Gm {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvkU4Vg2Gm h2 {
  text-align: left;
}
.cid-uvkU4Vg2Gm h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvkU4Vg2Gm p {
  color: #767676;
  text-align: left;
}
.cid-uvkU4Vg2Gm .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvkU4Vg2Gm .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvkU4Vg2Gm .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvkU4Vg2Gm .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvkU4Vg2Gm .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvkU4Vg2Gm .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvkU4Vg2Gm .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvkU4Vg2Gm .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvkU4Vg2Gm .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvkU4Vg2Gm .mbr-text {
  color: #232323;
}
.cid-uvkU4VCczT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvkU4VCczT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvkU4VCczT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvkU4VCczT .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvkU4VCczT .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvkU4VCczT .container {
    padding: 0 26px;
  }
}
.cid-uvkU4VCczT .row {
  justify-content: center;
}
.cid-uvkU4VCczT .item {
  margin-bottom: 32px;
}
.cid-uvkU4VCczT .item a {
  display: block;
}
.cid-uvkU4VCczT .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvkU4VCczT .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvkU4VCczT .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvkU4VCczT .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-uvkU4VCczT .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvkU4VCczT .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvkU4VCczT .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-uvkU4VCczT .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvkU4VCczT .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvkU4VCczT .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvkU4VCczT .item-title {
  color: #ffffff;
}
.cid-uvkU4VCczT .mbr-date {
  color: #cacaca;
}
.cid-uvkU4VCczT .mbr-desc {
  color: #cacaca;
}
.cid-uvkU4VZyyE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvkU4VZyyE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvkU4VZyyE .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-uvkU4VZyyE .container {
    padding: 0 16px;
  }
}
.cid-uvkU4VZyyE .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvkU4VZyyE .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvkU4VZyyE .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvkU4VZyyE .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvkU4VZyyE .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvkU4VZyyE .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvkU4VZyyE .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvkU4VZyyE .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvkU4VZyyE .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvkU4VZyyE .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-uvkU4VZyyE .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvkU4VZyyE .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvkU4VZyyE .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvkU4VZyyE .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvkU4VZyyE .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvkU4VZyyE .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvkU4VZyyE .dragArea.row .form-group .form-control:hover,
.cid-uvkU4VZyyE .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvkU4VZyyE .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvkU4VZyyE .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvkU4VZyyE .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvkU4VZyyE .mbr-title {
  color: #ffffff;
}
.cid-uvkU4VZyyE .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvkU4VZyyE .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvkU4VZyyE .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvkU4VZyyE .list {
  color: #08323C;
}
.cid-uvkU4VZyyE label {
  color: #08323C;
}
.cid-uvkU4VZyyE H3 {
  color: #000000;
}
.cid-uvkU4VZyyE P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvkWncpUkQ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvkWncpUkQ H1 {
  text-align: center;
}
.cid-uDmGHDez15 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmGHDez15 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmGHDez15 .video-block {
    width: 100% !important;
  }
}
.cid-uvkWncFBnq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvkWncQPeA {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvkWncQPeA .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvkWncQPeA .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvkWncQPeA .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvkWncQPeA .box {
  left: 20%;
}
.cid-uvkWncQPeA .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvkWncQPeA .mbr-section-text,
.cid-uvkWncQPeA .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvkWncQPeA .text-box {
    display: none;
  }
  .cid-uvkWncQPeA .mbr-section-title,
  .cid-uvkWncQPeA .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvkWncQPeA .box {
    display: none;
  }
  .cid-uvkWncQPeA .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvkWncQPeA .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvkWncQPeA .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvkWncQPeA .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvkWncQPeA .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvkWncQPeA .mbr-section-text DIV {
  text-align: center;
}
.cid-uvkWnd1dnD {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvkWnd1dnD H1 {
  text-align: center;
}
.cid-uvkWnde9IG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvkWndq8zc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvkWndq8zc h2 {
  text-align: left;
}
.cid-uvkWndq8zc h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvkWndq8zc p {
  color: #767676;
  text-align: left;
}
.cid-uvkWndq8zc .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvkWndq8zc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvkWndq8zc .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvkWndq8zc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvkWndq8zc .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvkWndq8zc .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvkWndq8zc .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvkWndq8zc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvkWndq8zc .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvkWndq8zc H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvkWndq8zc P {
  color: #ffffff;
  text-align: left;
}
.cid-uvkWndq8zc H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvkWndGY8J {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvkWndGY8J H1 {
  color: #000000;
}
.cid-uxjY69avR9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjY69avR9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjY69avR9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjY69avR9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjY69avR9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjY69avR9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjY69avR9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjY69avR9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjY69avR9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjY69avR9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjY69avR9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjY69avR9 .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-uxjY69avR9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjY69avR9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjY69avR9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjY69avR9 .mbr-text,
.cid-uxjY69avR9 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvkWnefWmk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvkWnefWmk H1 {
  color: #000000;
}
.cid-uxjY6RLtm1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjY6RLtm1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjY6RLtm1 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjY6RLtm1 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjY6RLtm1 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjY6RLtm1 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjY6RLtm1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjY6RLtm1 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjY6RLtm1 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjY6RLtm1 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjY6RLtm1 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjY6RLtm1 .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-uxjY6RLtm1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjY6RLtm1 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjY6RLtm1 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjY6RLtm1 .mbr-text,
.cid-uxjY6RLtm1 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvkWneQWC2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvkWneQWC2 H1 {
  color: #000000;
}
.cid-uxjY7rh8Ne {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjY7rh8Ne .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjY7rh8Ne .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjY7rh8Ne .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjY7rh8Ne .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjY7rh8Ne .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjY7rh8Ne .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjY7rh8Ne .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjY7rh8Ne .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjY7rh8Ne .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjY7rh8Ne .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjY7rh8Ne .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-uxjY7rh8Ne .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjY7rh8Ne .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjY7rh8Ne .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjY7rh8Ne .mbr-text,
.cid-uxjY7rh8Ne .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjY845aIG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjY845aIG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjY845aIG .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjY845aIG .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjY845aIG .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjY845aIG .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjY845aIG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjY845aIG .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjY845aIG .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjY845aIG .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjY845aIG .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjY845aIG .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-uxjY845aIG .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjY845aIG .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjY845aIG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjY845aIG .mbr-text,
.cid-uxjY845aIG .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvkWnfYokK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvkWnfYokK H1 {
  color: #000000;
}
.cid-uxjY9sLrLO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjY9sLrLO h2 {
  text-align: left;
}
.cid-uxjY9sLrLO h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjY9sLrLO p {
  color: #767676;
  text-align: left;
}
.cid-uxjY9sLrLO .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjY9sLrLO .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjY9sLrLO .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjY9sLrLO .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjY9sLrLO .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjY9sLrLO .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjY9sLrLO .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjY9sLrLO .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjY9sLrLO .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjY9sLrLO .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjY9sLrLO .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvkWngtGHu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvkWngtGHu .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvkWngtGHu .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvkWngtGHu .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvkWngtGHu .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvkWngtGHu .box {
  right: 20%;
}
.cid-uvkWngtGHu .text-box {
  right: 0;
}
.cid-uvkWngtGHu .mbr-section-title,
.cid-uvkWngtGHu .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvkWngtGHu .text-box {
    display: none;
  }
  .cid-uvkWngtGHu .mbr-section-title,
  .cid-uvkWngtGHu .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvkWngtGHu .box {
    display: none;
  }
  .cid-uvkWngtGHu .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvkWngtGHu .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvkWngtGHu .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvkWngtGHu .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvkWngtGHu .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvkWngtGHu .mbr-section-text DIV {
  text-align: center;
}
.cid-uvkWngJ7Tk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvkWngVgwF {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvkWngVgwF h2 {
  text-align: left;
}
.cid-uvkWngVgwF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvkWngVgwF p {
  color: #767676;
  text-align: left;
}
.cid-uvkWngVgwF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvkWngVgwF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvkWngVgwF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvkWngVgwF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvkWngVgwF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvkWngVgwF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvkWngVgwF .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvkWngVgwF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvkWngVgwF .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvkWngVgwF .mbr-text {
  color: #232323;
}
.cid-uvkWnhbjGA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvkWnhbjGA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvkWnhbjGA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvkWnhbjGA .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvkWnhbjGA .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvkWnhbjGA .container {
    padding: 0 26px;
  }
}
.cid-uvkWnhbjGA .row {
  justify-content: center;
}
.cid-uvkWnhbjGA .item {
  margin-bottom: 32px;
}
.cid-uvkWnhbjGA .item a {
  display: block;
}
.cid-uvkWnhbjGA .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvkWnhbjGA .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvkWnhbjGA .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvkWnhbjGA .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-uvkWnhbjGA .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvkWnhbjGA .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvkWnhbjGA .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-uvkWnhbjGA .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvkWnhbjGA .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvkWnhbjGA .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvkWnhbjGA .item-title {
  color: #ffffff;
}
.cid-uvkWnhbjGA .mbr-date {
  color: #cacaca;
}
.cid-uvkWnhbjGA .mbr-desc {
  color: #cacaca;
}
.cid-uvkWnhuAZH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvkWnhuAZH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvkWnhuAZH .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-uvkWnhuAZH .container {
    padding: 0 16px;
  }
}
.cid-uvkWnhuAZH .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvkWnhuAZH .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvkWnhuAZH .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvkWnhuAZH .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvkWnhuAZH .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvkWnhuAZH .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvkWnhuAZH .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvkWnhuAZH .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvkWnhuAZH .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvkWnhuAZH .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-uvkWnhuAZH .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvkWnhuAZH .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvkWnhuAZH .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvkWnhuAZH .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvkWnhuAZH .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvkWnhuAZH .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvkWnhuAZH .dragArea.row .form-group .form-control:hover,
.cid-uvkWnhuAZH .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvkWnhuAZH .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvkWnhuAZH .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvkWnhuAZH .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvkWnhuAZH .mbr-title {
  color: #ffffff;
}
.cid-uvkWnhuAZH .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvkWnhuAZH .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvkWnhuAZH .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvkWnhuAZH .list {
  color: #08323C;
}
.cid-uvkWnhuAZH label {
  color: #08323C;
}
.cid-uvkWnhuAZH H3 {
  color: #000000;
}
.cid-uvkWnhuAZH P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvkYcc18HL {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvkYcc18HL H1 {
  text-align: center;
}
.cid-uDmGSarCe0 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmGSarCe0 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmGSarCe0 .video-block {
    width: 100% !important;
  }
}
.cid-uvkYccgUqb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvkYccrl29 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvkYccrl29 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvkYccrl29 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvkYccrl29 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvkYccrl29 .box {
  left: 20%;
}
.cid-uvkYccrl29 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvkYccrl29 .mbr-section-text,
.cid-uvkYccrl29 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvkYccrl29 .text-box {
    display: none;
  }
  .cid-uvkYccrl29 .mbr-section-title,
  .cid-uvkYccrl29 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvkYccrl29 .box {
    display: none;
  }
  .cid-uvkYccrl29 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvkYccrl29 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvkYccrl29 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvkYccrl29 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvkYccrl29 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvkYccrl29 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvkYccEzfh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvkYccEzfh H1 {
  text-align: center;
}
.cid-uvkYccO6oI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvkYccX5D7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvkYccX5D7 h2 {
  text-align: left;
}
.cid-uvkYccX5D7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvkYccX5D7 p {
  color: #767676;
  text-align: left;
}
.cid-uvkYccX5D7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvkYccX5D7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvkYccX5D7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvkYccX5D7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvkYccX5D7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvkYccX5D7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvkYccX5D7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvkYccX5D7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvkYccX5D7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvkYccX5D7 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvkYccX5D7 P {
  color: #ffffff;
  text-align: left;
}
.cid-uvkYccX5D7 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvkYcdd7nz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvkYcdd7nz H1 {
  color: #000000;
}
.cid-uxjYkvYEFX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjYkvYEFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjYkvYEFX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjYkvYEFX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjYkvYEFX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjYkvYEFX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjYkvYEFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjYkvYEFX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjYkvYEFX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjYkvYEFX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjYkvYEFX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjYkvYEFX .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-uxjYkvYEFX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjYkvYEFX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjYkvYEFX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjYkvYEFX .mbr-text,
.cid-uxjYkvYEFX .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvkYcdMd13 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvkYcdMd13 H1 {
  color: #000000;
}
.cid-uxjYlpsOgr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjYlpsOgr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjYlpsOgr .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjYlpsOgr .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjYlpsOgr .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjYlpsOgr .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjYlpsOgr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjYlpsOgr .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjYlpsOgr .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjYlpsOgr .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjYlpsOgr .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjYlpsOgr .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-uxjYlpsOgr .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjYlpsOgr .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjYlpsOgr .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjYlpsOgr .mbr-text,
.cid-uxjYlpsOgr .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvkYceoTjR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvkYceoTjR H1 {
  color: #000000;
}
.cid-uxjYm419YV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjYm419YV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjYm419YV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjYm419YV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjYm419YV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjYm419YV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjYm419YV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjYm419YV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjYm419YV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjYm419YV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjYm419YV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjYm419YV .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-uxjYm419YV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjYm419YV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjYm419YV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjYm419YV .mbr-text,
.cid-uxjYm419YV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjYmKhOrs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjYmKhOrs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjYmKhOrs .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjYmKhOrs .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjYmKhOrs .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjYmKhOrs .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjYmKhOrs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjYmKhOrs .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjYmKhOrs .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjYmKhOrs .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjYmKhOrs .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjYmKhOrs .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-uxjYmKhOrs .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjYmKhOrs .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjYmKhOrs .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjYmKhOrs .mbr-text,
.cid-uxjYmKhOrs .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvkYcfp0P5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvkYcfp0P5 H1 {
  color: #000000;
}
.cid-uxjYi9OvS2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjYi9OvS2 h2 {
  text-align: left;
}
.cid-uxjYi9OvS2 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjYi9OvS2 p {
  color: #767676;
  text-align: left;
}
.cid-uxjYi9OvS2 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjYi9OvS2 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjYi9OvS2 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjYi9OvS2 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjYi9OvS2 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjYi9OvS2 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjYi9OvS2 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjYi9OvS2 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjYi9OvS2 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjYi9OvS2 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjYi9OvS2 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxjYiPEfAq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjYiPEfAq H1 {
  color: #000000;
}
.cid-uvkYcfTtCe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvkYcfTtCe .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvkYcfTtCe .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvkYcfTtCe .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvkYcfTtCe .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvkYcfTtCe .box {
  right: 20%;
}
.cid-uvkYcfTtCe .text-box {
  right: 0;
}
.cid-uvkYcfTtCe .mbr-section-title,
.cid-uvkYcfTtCe .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvkYcfTtCe .text-box {
    display: none;
  }
  .cid-uvkYcfTtCe .mbr-section-title,
  .cid-uvkYcfTtCe .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvkYcfTtCe .box {
    display: none;
  }
  .cid-uvkYcfTtCe .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvkYcfTtCe .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvkYcfTtCe .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvkYcfTtCe .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvkYcfTtCe .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvkYcfTtCe .mbr-section-text DIV {
  text-align: center;
}
.cid-uvkYcgaLxz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvkYcgnllP {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvkYcgnllP h2 {
  text-align: left;
}
.cid-uvkYcgnllP h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvkYcgnllP p {
  color: #767676;
  text-align: left;
}
.cid-uvkYcgnllP .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvkYcgnllP .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvkYcgnllP .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvkYcgnllP .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvkYcgnllP .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvkYcgnllP .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvkYcgnllP .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvkYcgnllP .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvkYcgnllP .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvkYcgnllP .mbr-text {
  color: #232323;
}
.cid-uvkYcgDlPz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvkYcgDlPz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvkYcgDlPz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvkYcgDlPz .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvkYcgDlPz .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvkYcgDlPz .container {
    padding: 0 26px;
  }
}
.cid-uvkYcgDlPz .row {
  justify-content: center;
}
.cid-uvkYcgDlPz .item {
  margin-bottom: 32px;
}
.cid-uvkYcgDlPz .item a {
  display: block;
}
.cid-uvkYcgDlPz .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvkYcgDlPz .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvkYcgDlPz .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvkYcgDlPz .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-uvkYcgDlPz .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvkYcgDlPz .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvkYcgDlPz .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-uvkYcgDlPz .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvkYcgDlPz .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvkYcgDlPz .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvkYcgDlPz .item-title {
  color: #ffffff;
}
.cid-uvkYcgDlPz .mbr-date {
  color: #cacaca;
}
.cid-uvkYcgDlPz .mbr-desc {
  color: #cacaca;
}
.cid-uvkYcgXXGX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvkYcgXXGX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvkYcgXXGX .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-uvkYcgXXGX .container {
    padding: 0 16px;
  }
}
.cid-uvkYcgXXGX .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvkYcgXXGX .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvkYcgXXGX .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvkYcgXXGX .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvkYcgXXGX .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvkYcgXXGX .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvkYcgXXGX .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvkYcgXXGX .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvkYcgXXGX .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvkYcgXXGX .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-uvkYcgXXGX .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvkYcgXXGX .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvkYcgXXGX .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvkYcgXXGX .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvkYcgXXGX .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvkYcgXXGX .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvkYcgXXGX .dragArea.row .form-group .form-control:hover,
.cid-uvkYcgXXGX .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvkYcgXXGX .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvkYcgXXGX .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvkYcgXXGX .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvkYcgXXGX .mbr-title {
  color: #ffffff;
}
.cid-uvkYcgXXGX .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvkYcgXXGX .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvkYcgXXGX .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvkYcgXXGX .list {
  color: #08323C;
}
.cid-uvkYcgXXGX label {
  color: #08323C;
}
.cid-uvkYcgXXGX H3 {
  color: #000000;
}
.cid-uvkYcgXXGX P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvl3AunOhj {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvl3AunOhj H1 {
  text-align: center;
}
.cid-uDmH2O24XC {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmH2O24XC .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmH2O24XC .video-block {
    width: 100% !important;
  }
}
.cid-uvl3AuDE2h {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvl3AuPVmJ {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvl3AuPVmJ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvl3AuPVmJ .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvl3AuPVmJ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvl3AuPVmJ .box {
  left: 20%;
}
.cid-uvl3AuPVmJ .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvl3AuPVmJ .mbr-section-text,
.cid-uvl3AuPVmJ .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvl3AuPVmJ .text-box {
    display: none;
  }
  .cid-uvl3AuPVmJ .mbr-section-title,
  .cid-uvl3AuPVmJ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvl3AuPVmJ .box {
    display: none;
  }
  .cid-uvl3AuPVmJ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvl3AuPVmJ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvl3AuPVmJ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvl3AuPVmJ .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvl3AuPVmJ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvl3AuPVmJ .mbr-section-text DIV {
  text-align: center;
}
.cid-uvl3Av0Xui {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvl3Av0Xui H1 {
  text-align: center;
}
.cid-uvl3AvbCjq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvl3AvkjL3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvl3AvkjL3 h2 {
  text-align: left;
}
.cid-uvl3AvkjL3 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvl3AvkjL3 p {
  color: #767676;
  text-align: left;
}
.cid-uvl3AvkjL3 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvl3AvkjL3 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvl3AvkjL3 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvl3AvkjL3 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvl3AvkjL3 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvl3AvkjL3 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvl3AvkjL3 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvl3AvkjL3 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvl3AvkjL3 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvl3AvkjL3 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvl3AvkjL3 P {
  color: #ffffff;
  text-align: left;
}
.cid-uvl3AvkjL3 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvl3AvCkEr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvl3AvCkEr H1 {
  color: #000000;
}
.cid-uxjYvhw1Zg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjYvhw1Zg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjYvhw1Zg .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjYvhw1Zg .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjYvhw1Zg .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjYvhw1Zg .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjYvhw1Zg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjYvhw1Zg .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjYvhw1Zg .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjYvhw1Zg .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjYvhw1Zg .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjYvhw1Zg .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-uxjYvhw1Zg .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjYvhw1Zg .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjYvhw1Zg .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjYvhw1Zg .mbr-text,
.cid-uxjYvhw1Zg .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvl3Aw9wQC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvl3Aw9wQC H1 {
  color: #000000;
}
.cid-uxjYvU6dWN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjYvU6dWN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjYvU6dWN .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjYvU6dWN .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjYvU6dWN .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjYvU6dWN .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjYvU6dWN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjYvU6dWN .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjYvU6dWN .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjYvU6dWN .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjYvU6dWN .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjYvU6dWN .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-uxjYvU6dWN .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjYvU6dWN .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjYvU6dWN .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjYvU6dWN .mbr-text,
.cid-uxjYvU6dWN .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvl3AwM4lu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvl3AwM4lu H1 {
  color: #000000;
}
.cid-uxjYwte039 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjYwte039 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjYwte039 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjYwte039 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjYwte039 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjYwte039 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjYwte039 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjYwte039 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjYwte039 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjYwte039 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjYwte039 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjYwte039 .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-uxjYwte039 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjYwte039 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjYwte039 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjYwte039 .mbr-text,
.cid-uxjYwte039 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjYx2qrQg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjYx2qrQg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjYx2qrQg .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjYx2qrQg .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjYx2qrQg .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjYx2qrQg .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjYx2qrQg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjYx2qrQg .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjYx2qrQg .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjYx2qrQg .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjYx2qrQg .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjYx2qrQg .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-uxjYx2qrQg .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjYx2qrQg .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjYx2qrQg .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjYx2qrQg .mbr-text,
.cid-uxjYx2qrQg .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvl3Ay0oCx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvl3Ay0oCx H1 {
  color: #000000;
}
.cid-uxjYykdFFa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjYykdFFa h2 {
  text-align: left;
}
.cid-uxjYykdFFa h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjYykdFFa p {
  color: #767676;
  text-align: left;
}
.cid-uxjYykdFFa .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjYykdFFa .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjYykdFFa .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjYykdFFa .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjYykdFFa .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjYykdFFa .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjYykdFFa .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjYykdFFa .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjYykdFFa .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjYykdFFa .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjYykdFFa .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvl3AyzaBf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvl3AyzaBf .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvl3AyzaBf .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvl3AyzaBf .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvl3AyzaBf .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvl3AyzaBf .box {
  right: 20%;
}
.cid-uvl3AyzaBf .text-box {
  right: 0;
}
.cid-uvl3AyzaBf .mbr-section-title,
.cid-uvl3AyzaBf .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvl3AyzaBf .text-box {
    display: none;
  }
  .cid-uvl3AyzaBf .mbr-section-title,
  .cid-uvl3AyzaBf .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvl3AyzaBf .box {
    display: none;
  }
  .cid-uvl3AyzaBf .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvl3AyzaBf .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvl3AyzaBf .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvl3AyzaBf .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvl3AyzaBf .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvl3AyzaBf .mbr-section-text DIV {
  text-align: center;
}
.cid-uvl3AyOCEL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvl3Az31NG {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvl3Az31NG h2 {
  text-align: left;
}
.cid-uvl3Az31NG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvl3Az31NG p {
  color: #767676;
  text-align: left;
}
.cid-uvl3Az31NG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvl3Az31NG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvl3Az31NG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvl3Az31NG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvl3Az31NG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvl3Az31NG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvl3Az31NG .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvl3Az31NG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvl3Az31NG .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvl3Az31NG .mbr-text {
  color: #232323;
}
.cid-uvl3AzoX5P {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvl3AzoX5P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvl3AzoX5P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvl3AzoX5P .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvl3AzoX5P .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvl3AzoX5P .container {
    padding: 0 26px;
  }
}
.cid-uvl3AzoX5P .row {
  justify-content: center;
}
.cid-uvl3AzoX5P .item {
  margin-bottom: 32px;
}
.cid-uvl3AzoX5P .item a {
  display: block;
}
.cid-uvl3AzoX5P .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvl3AzoX5P .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvl3AzoX5P .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvl3AzoX5P .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-uvl3AzoX5P .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvl3AzoX5P .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvl3AzoX5P .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-uvl3AzoX5P .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvl3AzoX5P .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvl3AzoX5P .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvl3AzoX5P .item-title {
  color: #ffffff;
}
.cid-uvl3AzoX5P .mbr-date {
  color: #cacaca;
}
.cid-uvl3AzoX5P .mbr-desc {
  color: #cacaca;
}
.cid-uvl3AzEzke {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvl3AzEzke .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvl3AzEzke .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-uvl3AzEzke .container {
    padding: 0 16px;
  }
}
.cid-uvl3AzEzke .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvl3AzEzke .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvl3AzEzke .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvl3AzEzke .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvl3AzEzke .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvl3AzEzke .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvl3AzEzke .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvl3AzEzke .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvl3AzEzke .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvl3AzEzke .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-uvl3AzEzke .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvl3AzEzke .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvl3AzEzke .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvl3AzEzke .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvl3AzEzke .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvl3AzEzke .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvl3AzEzke .dragArea.row .form-group .form-control:hover,
.cid-uvl3AzEzke .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvl3AzEzke .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvl3AzEzke .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvl3AzEzke .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvl3AzEzke .mbr-title {
  color: #ffffff;
}
.cid-uvl3AzEzke .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvl3AzEzke .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvl3AzEzke .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvl3AzEzke .list {
  color: #08323C;
}
.cid-uvl3AzEzke label {
  color: #08323C;
}
.cid-uvl3AzEzke H3 {
  color: #000000;
}
.cid-uvl3AzEzke P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvl5MTaps1 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvl5MTaps1 H1 {
  text-align: center;
}
.cid-uDmHb3vAyU {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmHb3vAyU .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmHb3vAyU .video-block {
    width: 100% !important;
  }
}
.cid-uvl5MTu2UC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvl5MTH0ZB {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvl5MTH0ZB .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvl5MTH0ZB .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvl5MTH0ZB .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvl5MTH0ZB .box {
  left: 20%;
}
.cid-uvl5MTH0ZB .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvl5MTH0ZB .mbr-section-text,
.cid-uvl5MTH0ZB .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvl5MTH0ZB .text-box {
    display: none;
  }
  .cid-uvl5MTH0ZB .mbr-section-title,
  .cid-uvl5MTH0ZB .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvl5MTH0ZB .box {
    display: none;
  }
  .cid-uvl5MTH0ZB .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvl5MTH0ZB .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvl5MTH0ZB .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvl5MTH0ZB .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvl5MTH0ZB .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvl5MTH0ZB .mbr-section-text DIV {
  text-align: center;
}
.cid-uvl5MTUypP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvl5MTUypP H1 {
  text-align: center;
}
.cid-uvl5MU5LHI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvl5MUghtU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvl5MUghtU h2 {
  text-align: left;
}
.cid-uvl5MUghtU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvl5MUghtU p {
  color: #767676;
  text-align: left;
}
.cid-uvl5MUghtU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvl5MUghtU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvl5MUghtU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvl5MUghtU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvl5MUghtU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvl5MUghtU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvl5MUghtU .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvl5MUghtU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvl5MUghtU .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvl5MUghtU H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvl5MUghtU P {
  color: #ffffff;
  text-align: left;
}
.cid-uvl5MUghtU H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvl5MUAmjz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvl5MUAmjz H1 {
  color: #000000;
}
.cid-uvlj3zJvmX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uvlj3zJvmX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlj3zJvmX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uvlj3zJvmX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uvlj3zJvmX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uvlj3zJvmX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uvlj3zJvmX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvlj3zJvmX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uvlj3zJvmX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uvlj3zJvmX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uvlj3zJvmX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uvlj3zJvmX .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-uvlj3zJvmX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlj3zJvmX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uvlj3zJvmX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uvlj3zJvmX .mbr-text,
.cid-uvlj3zJvmX .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvmq0rXOqa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvmq0rXOqa H1 {
  color: #000000;
}
.cid-uxjZ2XeHtT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZ2XeHtT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZ2XeHtT .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZ2XeHtT .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZ2XeHtT .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZ2XeHtT .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZ2XeHtT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZ2XeHtT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZ2XeHtT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZ2XeHtT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZ2XeHtT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZ2XeHtT .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-uxjZ2XeHtT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZ2XeHtT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZ2XeHtT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZ2XeHtT .mbr-text,
.cid-uxjZ2XeHtT .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvl5MVNIhM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvl5MVNIhM H1 {
  color: #000000;
}
.cid-uxjZ3zYuUv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZ3zYuUv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZ3zYuUv .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZ3zYuUv .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZ3zYuUv .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZ3zYuUv .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZ3zYuUv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZ3zYuUv .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZ3zYuUv .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZ3zYuUv .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZ3zYuUv .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZ3zYuUv .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-uxjZ3zYuUv .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZ3zYuUv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZ3zYuUv .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZ3zYuUv .mbr-text,
.cid-uxjZ3zYuUv .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjZ49FYc1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZ49FYc1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZ49FYc1 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZ49FYc1 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZ49FYc1 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZ49FYc1 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZ49FYc1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZ49FYc1 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZ49FYc1 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZ49FYc1 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZ49FYc1 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZ49FYc1 .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-uxjZ49FYc1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZ49FYc1 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZ49FYc1 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZ49FYc1 .mbr-text,
.cid-uxjZ49FYc1 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvl5MWSOSJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvl5MWSOSJ H1 {
  color: #000000;
}
.cid-uxjYVNPHmH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjYVNPHmH h2 {
  text-align: left;
}
.cid-uxjYVNPHmH h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjYVNPHmH p {
  color: #767676;
  text-align: left;
}
.cid-uxjYVNPHmH .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjYVNPHmH .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjYVNPHmH .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjYVNPHmH .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjYVNPHmH .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjYVNPHmH .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjYVNPHmH .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjYVNPHmH .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjYVNPHmH .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjYVNPHmH .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjYVNPHmH .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxjYX2CIbm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjYX2CIbm H1 {
  color: #000000;
}
.cid-uvl5MXqwzd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvl5MXqwzd .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvl5MXqwzd .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvl5MXqwzd .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvl5MXqwzd .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvl5MXqwzd .box {
  right: 20%;
}
.cid-uvl5MXqwzd .text-box {
  right: 0;
}
.cid-uvl5MXqwzd .mbr-section-title,
.cid-uvl5MXqwzd .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvl5MXqwzd .text-box {
    display: none;
  }
  .cid-uvl5MXqwzd .mbr-section-title,
  .cid-uvl5MXqwzd .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvl5MXqwzd .box {
    display: none;
  }
  .cid-uvl5MXqwzd .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvl5MXqwzd .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvl5MXqwzd .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvl5MXqwzd .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvl5MXqwzd .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvl5MXqwzd .mbr-section-text DIV {
  text-align: center;
}
.cid-uvl5MXKxlJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvl5MY1xsR {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvl5MY1xsR h2 {
  text-align: left;
}
.cid-uvl5MY1xsR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvl5MY1xsR p {
  color: #767676;
  text-align: left;
}
.cid-uvl5MY1xsR .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvl5MY1xsR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvl5MY1xsR .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvl5MY1xsR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvl5MY1xsR .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvl5MY1xsR .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvl5MY1xsR .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvl5MY1xsR .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvl5MY1xsR .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvl5MY1xsR .mbr-text {
  color: #232323;
}
.cid-uvl5MYkQHd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvl5MYkQHd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvl5MYkQHd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvl5MYkQHd .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvl5MYkQHd .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvl5MYkQHd .container {
    padding: 0 26px;
  }
}
.cid-uvl5MYkQHd .row {
  justify-content: center;
}
.cid-uvl5MYkQHd .item {
  margin-bottom: 32px;
}
.cid-uvl5MYkQHd .item a {
  display: block;
}
.cid-uvl5MYkQHd .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvl5MYkQHd .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvl5MYkQHd .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvl5MYkQHd .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-uvl5MYkQHd .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvl5MYkQHd .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvl5MYkQHd .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-uvl5MYkQHd .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvl5MYkQHd .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvl5MYkQHd .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvl5MYkQHd .item-title {
  color: #ffffff;
}
.cid-uvl5MYkQHd .mbr-date {
  color: #cacaca;
}
.cid-uvl5MYkQHd .mbr-desc {
  color: #cacaca;
}
.cid-uvl5MYE21R {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvl5MYE21R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvl5MYE21R .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-uvl5MYE21R .container {
    padding: 0 16px;
  }
}
.cid-uvl5MYE21R .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvl5MYE21R .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvl5MYE21R .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvl5MYE21R .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvl5MYE21R .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvl5MYE21R .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvl5MYE21R .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvl5MYE21R .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvl5MYE21R .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvl5MYE21R .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-uvl5MYE21R .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvl5MYE21R .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvl5MYE21R .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvl5MYE21R .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvl5MYE21R .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvl5MYE21R .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvl5MYE21R .dragArea.row .form-group .form-control:hover,
.cid-uvl5MYE21R .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvl5MYE21R .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvl5MYE21R .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvl5MYE21R .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvl5MYE21R .mbr-title {
  color: #ffffff;
}
.cid-uvl5MYE21R .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvl5MYE21R .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvl5MYE21R .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvl5MYE21R .list {
  color: #08323C;
}
.cid-uvl5MYE21R label {
  color: #08323C;
}
.cid-uvl5MYE21R H3 {
  color: #000000;
}
.cid-uvl5MYE21R P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvl9VHePta {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvl9VHePta H1 {
  text-align: center;
}
.cid-uDmHFEZQ7a {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmHFEZQ7a .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmHFEZQ7a .video-block {
    width: 100% !important;
  }
}
.cid-uvl9VHxrRz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvl9VHNWQ2 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvl9VHNWQ2 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvl9VHNWQ2 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvl9VHNWQ2 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvl9VHNWQ2 .box {
  left: 20%;
}
.cid-uvl9VHNWQ2 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvl9VHNWQ2 .mbr-section-text,
.cid-uvl9VHNWQ2 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvl9VHNWQ2 .text-box {
    display: none;
  }
  .cid-uvl9VHNWQ2 .mbr-section-title,
  .cid-uvl9VHNWQ2 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvl9VHNWQ2 .box {
    display: none;
  }
  .cid-uvl9VHNWQ2 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvl9VHNWQ2 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvl9VHNWQ2 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvl9VHNWQ2 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvl9VHNWQ2 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvl9VHNWQ2 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvl9VI0EwG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvl9VI0EwG H1 {
  text-align: center;
}
.cid-uvl9VIcQF8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvl9VIolmw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvl9VIolmw h2 {
  text-align: left;
}
.cid-uvl9VIolmw h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvl9VIolmw p {
  color: #767676;
  text-align: left;
}
.cid-uvl9VIolmw .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvl9VIolmw .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvl9VIolmw .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvl9VIolmw .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvl9VIolmw .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvl9VIolmw .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvl9VIolmw .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvl9VIolmw .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvl9VIolmw .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvl9VIolmw H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvl9VIolmw P {
  color: #ffffff;
  text-align: left;
}
.cid-uvl9VIolmw H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvl9VIHkcK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvl9VIHkcK H1 {
  color: #000000;
}
.cid-uxjZamYTEo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZamYTEo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZamYTEo .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZamYTEo .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZamYTEo .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZamYTEo .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZamYTEo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZamYTEo .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZamYTEo .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZamYTEo .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZamYTEo .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZamYTEo .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-uxjZamYTEo .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZamYTEo .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZamYTEo .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZamYTEo .mbr-text,
.cid-uxjZamYTEo .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvl9VJfYfZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvl9VJfYfZ H1 {
  color: #000000;
}
.cid-uxjZaWlU6O {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZaWlU6O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZaWlU6O .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZaWlU6O .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZaWlU6O .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZaWlU6O .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZaWlU6O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZaWlU6O .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZaWlU6O .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZaWlU6O .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZaWlU6O .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZaWlU6O .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-uxjZaWlU6O .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZaWlU6O .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZaWlU6O .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZaWlU6O .mbr-text,
.cid-uxjZaWlU6O .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvl9VJTSRu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvl9VJTSRu H1 {
  color: #000000;
}
.cid-uxjZbssOOu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZbssOOu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZbssOOu .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZbssOOu .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZbssOOu .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZbssOOu .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZbssOOu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZbssOOu .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZbssOOu .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZbssOOu .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZbssOOu .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZbssOOu .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-uxjZbssOOu .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZbssOOu .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZbssOOu .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZbssOOu .mbr-text,
.cid-uxjZbssOOu .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjZcpmyhX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZcpmyhX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZcpmyhX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZcpmyhX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZcpmyhX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZcpmyhX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZcpmyhX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZcpmyhX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZcpmyhX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZcpmyhX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZcpmyhX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZcpmyhX .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-uxjZcpmyhX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZcpmyhX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZcpmyhX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZcpmyhX .mbr-text,
.cid-uxjZcpmyhX .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvl9VL3yMs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvl9VL3yMs H1 {
  color: #000000;
}
.cid-uxjZdtJ4gx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjZdtJ4gx h2 {
  text-align: left;
}
.cid-uxjZdtJ4gx h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjZdtJ4gx p {
  color: #767676;
  text-align: left;
}
.cid-uxjZdtJ4gx .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjZdtJ4gx .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjZdtJ4gx .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjZdtJ4gx .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjZdtJ4gx .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjZdtJ4gx .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjZdtJ4gx .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjZdtJ4gx .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjZdtJ4gx .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjZdtJ4gx .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjZdtJ4gx .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxjZf5hjri {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjZf5hjri H1 {
  color: #000000;
}
.cid-uvl9VLBS5d {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvl9VLBS5d .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvl9VLBS5d .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvl9VLBS5d .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvl9VLBS5d .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvl9VLBS5d .box {
  right: 20%;
}
.cid-uvl9VLBS5d .text-box {
  right: 0;
}
.cid-uvl9VLBS5d .mbr-section-title,
.cid-uvl9VLBS5d .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvl9VLBS5d .text-box {
    display: none;
  }
  .cid-uvl9VLBS5d .mbr-section-title,
  .cid-uvl9VLBS5d .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvl9VLBS5d .box {
    display: none;
  }
  .cid-uvl9VLBS5d .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvl9VLBS5d .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvl9VLBS5d .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvl9VLBS5d .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvl9VLBS5d .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvl9VLBS5d .mbr-section-text DIV {
  text-align: center;
}
.cid-uvl9VLU8S7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvl9VM99oO {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvl9VM99oO h2 {
  text-align: left;
}
.cid-uvl9VM99oO h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvl9VM99oO p {
  color: #767676;
  text-align: left;
}
.cid-uvl9VM99oO .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvl9VM99oO .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvl9VM99oO .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvl9VM99oO .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvl9VM99oO .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvl9VM99oO .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvl9VM99oO .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvl9VM99oO .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvl9VM99oO .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvl9VM99oO .mbr-text {
  color: #232323;
}
.cid-uvl9VMq6f8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvl9VMq6f8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvl9VMq6f8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvl9VMq6f8 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvl9VMq6f8 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvl9VMq6f8 .container {
    padding: 0 26px;
  }
}
.cid-uvl9VMq6f8 .row {
  justify-content: center;
}
.cid-uvl9VMq6f8 .item {
  margin-bottom: 32px;
}
.cid-uvl9VMq6f8 .item a {
  display: block;
}
.cid-uvl9VMq6f8 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvl9VMq6f8 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvl9VMq6f8 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvl9VMq6f8 .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-uvl9VMq6f8 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvl9VMq6f8 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvl9VMq6f8 .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-uvl9VMq6f8 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvl9VMq6f8 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvl9VMq6f8 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvl9VMq6f8 .item-title {
  color: #ffffff;
}
.cid-uvl9VMq6f8 .mbr-date {
  color: #cacaca;
}
.cid-uvl9VMq6f8 .mbr-desc {
  color: #cacaca;
}
.cid-uvl9VMITkr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvl9VMITkr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvl9VMITkr .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-uvl9VMITkr .container {
    padding: 0 16px;
  }
}
.cid-uvl9VMITkr .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvl9VMITkr .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvl9VMITkr .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvl9VMITkr .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvl9VMITkr .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvl9VMITkr .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvl9VMITkr .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvl9VMITkr .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvl9VMITkr .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvl9VMITkr .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-uvl9VMITkr .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvl9VMITkr .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvl9VMITkr .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvl9VMITkr .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvl9VMITkr .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvl9VMITkr .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvl9VMITkr .dragArea.row .form-group .form-control:hover,
.cid-uvl9VMITkr .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvl9VMITkr .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvl9VMITkr .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvl9VMITkr .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvl9VMITkr .mbr-title {
  color: #ffffff;
}
.cid-uvl9VMITkr .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvl9VMITkr .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvl9VMITkr .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvl9VMITkr .list {
  color: #08323C;
}
.cid-uvl9VMITkr label {
  color: #08323C;
}
.cid-uvl9VMITkr H3 {
  color: #000000;
}
.cid-uvl9VMITkr P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvldelUulS {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvldelUulS H1 {
  text-align: center;
}
.cid-uDmHHZQJze {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmHHZQJze .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmHHZQJze .video-block {
    width: 100% !important;
  }
}
.cid-uvldemfBvy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvldemuqfd {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvldemuqfd .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvldemuqfd .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvldemuqfd .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvldemuqfd .box {
  left: 20%;
}
.cid-uvldemuqfd .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvldemuqfd .mbr-section-text,
.cid-uvldemuqfd .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvldemuqfd .text-box {
    display: none;
  }
  .cid-uvldemuqfd .mbr-section-title,
  .cid-uvldemuqfd .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvldemuqfd .box {
    display: none;
  }
  .cid-uvldemuqfd .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvldemuqfd .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvldemuqfd .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvldemuqfd .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvldemuqfd .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvldemuqfd .mbr-section-text DIV {
  text-align: center;
}
.cid-uvldemN632 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvldemN632 H1 {
  text-align: center;
}
.cid-uvlden2DT5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvldeng0BA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvldeng0BA h2 {
  text-align: left;
}
.cid-uvldeng0BA h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvldeng0BA p {
  color: #767676;
  text-align: left;
}
.cid-uvldeng0BA .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvldeng0BA .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvldeng0BA .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvldeng0BA .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvldeng0BA .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvldeng0BA .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvldeng0BA .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvldeng0BA .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvldeng0BA .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvldeng0BA H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvldeng0BA P {
  color: #ffffff;
  text-align: left;
}
.cid-uvldeng0BA H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvldenzDTd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvldenzDTd H1 {
  color: #000000;
}
.cid-uxjZo4EMgq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZo4EMgq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZo4EMgq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZo4EMgq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZo4EMgq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZo4EMgq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZo4EMgq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZo4EMgq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZo4EMgq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZo4EMgq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZo4EMgq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZo4EMgq .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-uxjZo4EMgq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZo4EMgq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZo4EMgq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZo4EMgq .mbr-text,
.cid-uxjZo4EMgq .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvldeofD8k {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvldeofD8k H1 {
  color: #000000;
}
.cid-uxjZoFgf8v {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZoFgf8v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZoFgf8v .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZoFgf8v .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZoFgf8v .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZoFgf8v .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZoFgf8v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZoFgf8v .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZoFgf8v .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZoFgf8v .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZoFgf8v .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZoFgf8v .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-uxjZoFgf8v .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZoFgf8v .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZoFgf8v .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZoFgf8v .mbr-text,
.cid-uxjZoFgf8v .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvldeoZ9aJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvldeoZ9aJ H1 {
  color: #000000;
}
.cid-uxjZpbUYgo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZpbUYgo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZpbUYgo .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZpbUYgo .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZpbUYgo .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZpbUYgo .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZpbUYgo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZpbUYgo .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZpbUYgo .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZpbUYgo .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZpbUYgo .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZpbUYgo .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-uxjZpbUYgo .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZpbUYgo .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZpbUYgo .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZpbUYgo .mbr-text,
.cid-uxjZpbUYgo .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjZpQ7m7P {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZpQ7m7P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZpQ7m7P .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZpQ7m7P .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZpQ7m7P .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZpQ7m7P .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZpQ7m7P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZpQ7m7P .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZpQ7m7P .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZpQ7m7P .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZpQ7m7P .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZpQ7m7P .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-uxjZpQ7m7P .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZpQ7m7P .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZpQ7m7P .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZpQ7m7P .mbr-text,
.cid-uxjZpQ7m7P .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvldeqjGJf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvldeqjGJf H1 {
  color: #000000;
}
.cid-uxjZsGV6Py {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjZsGV6Py h2 {
  text-align: left;
}
.cid-uxjZsGV6Py h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjZsGV6Py p {
  color: #767676;
  text-align: left;
}
.cid-uxjZsGV6Py .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjZsGV6Py .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjZsGV6Py .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjZsGV6Py .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjZsGV6Py .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjZsGV6Py .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjZsGV6Py .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjZsGV6Py .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjZsGV6Py .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjZsGV6Py .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjZsGV6Py .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxjZr4onAE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjZr4onAE H1 {
  color: #000000;
}
.cid-uvldeqXAyh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvldeqXAyh .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvldeqXAyh .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvldeqXAyh .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvldeqXAyh .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvldeqXAyh .box {
  right: 20%;
}
.cid-uvldeqXAyh .text-box {
  right: 0;
}
.cid-uvldeqXAyh .mbr-section-title,
.cid-uvldeqXAyh .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvldeqXAyh .text-box {
    display: none;
  }
  .cid-uvldeqXAyh .mbr-section-title,
  .cid-uvldeqXAyh .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvldeqXAyh .box {
    display: none;
  }
  .cid-uvldeqXAyh .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvldeqXAyh .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvldeqXAyh .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvldeqXAyh .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvldeqXAyh .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvldeqXAyh .mbr-section-text DIV {
  text-align: center;
}
.cid-uvlderjUQ9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlderB2bC {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvlderB2bC h2 {
  text-align: left;
}
.cid-uvlderB2bC h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvlderB2bC p {
  color: #767676;
  text-align: left;
}
.cid-uvlderB2bC .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvlderB2bC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvlderB2bC .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvlderB2bC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvlderB2bC .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvlderB2bC .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvlderB2bC .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlderB2bC .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvlderB2bC .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlderB2bC .mbr-text {
  color: #232323;
}
.cid-uvldes0CE6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvldes0CE6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvldes0CE6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvldes0CE6 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvldes0CE6 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvldes0CE6 .container {
    padding: 0 26px;
  }
}
.cid-uvldes0CE6 .row {
  justify-content: center;
}
.cid-uvldes0CE6 .item {
  margin-bottom: 32px;
}
.cid-uvldes0CE6 .item a {
  display: block;
}
.cid-uvldes0CE6 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvldes0CE6 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvldes0CE6 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvldes0CE6 .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-uvldes0CE6 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvldes0CE6 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvldes0CE6 .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-uvldes0CE6 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvldes0CE6 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvldes0CE6 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvldes0CE6 .item-title {
  color: #ffffff;
}
.cid-uvldes0CE6 .mbr-date {
  color: #cacaca;
}
.cid-uvldes0CE6 .mbr-desc {
  color: #cacaca;
}
.cid-uvldesqdDW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvldesqdDW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvldesqdDW .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-uvldesqdDW .container {
    padding: 0 16px;
  }
}
.cid-uvldesqdDW .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvldesqdDW .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvldesqdDW .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvldesqdDW .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvldesqdDW .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvldesqdDW .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvldesqdDW .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvldesqdDW .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvldesqdDW .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvldesqdDW .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-uvldesqdDW .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvldesqdDW .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvldesqdDW .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvldesqdDW .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvldesqdDW .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvldesqdDW .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvldesqdDW .dragArea.row .form-group .form-control:hover,
.cid-uvldesqdDW .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvldesqdDW .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvldesqdDW .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvldesqdDW .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvldesqdDW .mbr-title {
  color: #ffffff;
}
.cid-uvldesqdDW .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvldesqdDW .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvldesqdDW .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvldesqdDW .list {
  color: #08323C;
}
.cid-uvldesqdDW label {
  color: #08323C;
}
.cid-uvldesqdDW H3 {
  color: #000000;
}
.cid-uvldesqdDW P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvlg07o5yh {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlg07o5yh H1 {
  text-align: center;
}
.cid-uDmHKem1zz {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmHKem1zz .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmHKem1zz .video-block {
    width: 100% !important;
  }
}
.cid-uvlg07JiON {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlg080krp {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvlg080krp .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvlg080krp .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvlg080krp .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvlg080krp .box {
  left: 20%;
}
.cid-uvlg080krp .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvlg080krp .mbr-section-text,
.cid-uvlg080krp .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvlg080krp .text-box {
    display: none;
  }
  .cid-uvlg080krp .mbr-section-title,
  .cid-uvlg080krp .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvlg080krp .box {
    display: none;
  }
  .cid-uvlg080krp .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvlg080krp .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvlg080krp .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvlg080krp .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvlg080krp .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvlg080krp .mbr-section-text DIV {
  text-align: center;
}
.cid-uvlg08jUIg {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlg08jUIg H1 {
  text-align: center;
}
.cid-uvlg08z9pb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlg08RF5X {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlg08RF5X h2 {
  text-align: left;
}
.cid-uvlg08RF5X h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvlg08RF5X p {
  color: #767676;
  text-align: left;
}
.cid-uvlg08RF5X .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvlg08RF5X .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvlg08RF5X .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvlg08RF5X .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvlg08RF5X .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvlg08RF5X .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvlg08RF5X .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlg08RF5X .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvlg08RF5X .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlg08RF5X H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvlg08RF5X P {
  color: #ffffff;
  text-align: left;
}
.cid-uvlg08RF5X H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvlg09dWct {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlg09dWct H1 {
  color: #000000;
}
.cid-uxjZBoJj0y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZBoJj0y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZBoJj0y .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZBoJj0y .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZBoJj0y .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZBoJj0y .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZBoJj0y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZBoJj0y .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZBoJj0y .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZBoJj0y .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZBoJj0y .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZBoJj0y .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-uxjZBoJj0y .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZBoJj0y .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZBoJj0y .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZBoJj0y .mbr-text,
.cid-uxjZBoJj0y .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvlg09ZC8o {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlg09ZC8o H1 {
  color: #000000;
}
.cid-uxjZH3OwaJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZH3OwaJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZH3OwaJ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZH3OwaJ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZH3OwaJ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZH3OwaJ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZH3OwaJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZH3OwaJ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZH3OwaJ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZH3OwaJ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZH3OwaJ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZH3OwaJ .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-uxjZH3OwaJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZH3OwaJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZH3OwaJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZH3OwaJ .mbr-text,
.cid-uxjZH3OwaJ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvlg0aOses {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlg0aOses H1 {
  color: #000000;
}
.cid-uxjZIboI40 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZIboI40 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZIboI40 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZIboI40 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZIboI40 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZIboI40 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZIboI40 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZIboI40 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZIboI40 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZIboI40 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZIboI40 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZIboI40 .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-uxjZIboI40 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZIboI40 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZIboI40 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZIboI40 .mbr-text,
.cid-uxjZIboI40 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjZMsoOu7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZMsoOu7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZMsoOu7 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZMsoOu7 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZMsoOu7 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZMsoOu7 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZMsoOu7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZMsoOu7 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZMsoOu7 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZMsoOu7 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZMsoOu7 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZMsoOu7 .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-uxjZMsoOu7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZMsoOu7 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZMsoOu7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZMsoOu7 .mbr-text,
.cid-uxjZMsoOu7 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvlg0c8mil {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvlg0c8mil H1 {
  color: #000000;
}
.cid-uxjZz5tBym {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxjZz5tBym h2 {
  text-align: left;
}
.cid-uxjZz5tBym h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxjZz5tBym p {
  color: #767676;
  text-align: left;
}
.cid-uxjZz5tBym .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxjZz5tBym .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxjZz5tBym .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxjZz5tBym .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxjZz5tBym .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxjZz5tBym .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxjZz5tBym .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxjZz5tBym .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxjZz5tBym .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxjZz5tBym .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxjZz5tBym .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxjZzEW4Jn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxjZzEW4Jn H1 {
  color: #000000;
}
.cid-uvlg0cKKFH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvlg0cKKFH .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvlg0cKKFH .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvlg0cKKFH .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvlg0cKKFH .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvlg0cKKFH .box {
  right: 20%;
}
.cid-uvlg0cKKFH .text-box {
  right: 0;
}
.cid-uvlg0cKKFH .mbr-section-title,
.cid-uvlg0cKKFH .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvlg0cKKFH .text-box {
    display: none;
  }
  .cid-uvlg0cKKFH .mbr-section-title,
  .cid-uvlg0cKKFH .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvlg0cKKFH .box {
    display: none;
  }
  .cid-uvlg0cKKFH .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvlg0cKKFH .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvlg0cKKFH .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvlg0cKKFH .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvlg0cKKFH .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvlg0cKKFH .mbr-section-text DIV {
  text-align: center;
}
.cid-uvlg0d8TTJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlg0duxha {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvlg0duxha h2 {
  text-align: left;
}
.cid-uvlg0duxha h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvlg0duxha p {
  color: #767676;
  text-align: left;
}
.cid-uvlg0duxha .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvlg0duxha .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvlg0duxha .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvlg0duxha .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvlg0duxha .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvlg0duxha .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvlg0duxha .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlg0duxha .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvlg0duxha .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlg0duxha .mbr-text {
  color: #232323;
}
.cid-uvlg0dTmqI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvlg0dTmqI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlg0dTmqI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvlg0dTmqI .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvlg0dTmqI .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvlg0dTmqI .container {
    padding: 0 26px;
  }
}
.cid-uvlg0dTmqI .row {
  justify-content: center;
}
.cid-uvlg0dTmqI .item {
  margin-bottom: 32px;
}
.cid-uvlg0dTmqI .item a {
  display: block;
}
.cid-uvlg0dTmqI .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvlg0dTmqI .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvlg0dTmqI .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvlg0dTmqI .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-uvlg0dTmqI .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvlg0dTmqI .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvlg0dTmqI .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-uvlg0dTmqI .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvlg0dTmqI .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvlg0dTmqI .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvlg0dTmqI .item-title {
  color: #ffffff;
}
.cid-uvlg0dTmqI .mbr-date {
  color: #cacaca;
}
.cid-uvlg0dTmqI .mbr-desc {
  color: #cacaca;
}
.cid-uvlg0egdG1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvlg0egdG1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlg0egdG1 .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-uvlg0egdG1 .container {
    padding: 0 16px;
  }
}
.cid-uvlg0egdG1 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvlg0egdG1 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvlg0egdG1 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvlg0egdG1 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvlg0egdG1 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvlg0egdG1 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvlg0egdG1 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvlg0egdG1 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvlg0egdG1 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvlg0egdG1 .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-uvlg0egdG1 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvlg0egdG1 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvlg0egdG1 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvlg0egdG1 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvlg0egdG1 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvlg0egdG1 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvlg0egdG1 .dragArea.row .form-group .form-control:hover,
.cid-uvlg0egdG1 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvlg0egdG1 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvlg0egdG1 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvlg0egdG1 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvlg0egdG1 .mbr-title {
  color: #ffffff;
}
.cid-uvlg0egdG1 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvlg0egdG1 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvlg0egdG1 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvlg0egdG1 .list {
  color: #08323C;
}
.cid-uvlg0egdG1 label {
  color: #08323C;
}
.cid-uvlg0egdG1 H3 {
  color: #000000;
}
.cid-uvlg0egdG1 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvlhPwdSUe {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlhPwdSUe H1 {
  text-align: center;
}
.cid-uDmHQnz3VJ {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmHQnz3VJ .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmHQnz3VJ .video-block {
    width: 100% !important;
  }
}
.cid-uvlhPwCbgU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlhPwSVpT {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvlhPwSVpT .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvlhPwSVpT .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvlhPwSVpT .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvlhPwSVpT .box {
  left: 20%;
}
.cid-uvlhPwSVpT .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvlhPwSVpT .mbr-section-text,
.cid-uvlhPwSVpT .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvlhPwSVpT .text-box {
    display: none;
  }
  .cid-uvlhPwSVpT .mbr-section-title,
  .cid-uvlhPwSVpT .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvlhPwSVpT .box {
    display: none;
  }
  .cid-uvlhPwSVpT .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvlhPwSVpT .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvlhPwSVpT .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvlhPwSVpT .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvlhPwSVpT .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvlhPwSVpT .mbr-section-text DIV {
  text-align: center;
}
.cid-uvlhPx8w02 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlhPx8w02 H1 {
  text-align: center;
}
.cid-uvlhPxsVpz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlhPxGo14 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlhPxGo14 h2 {
  text-align: left;
}
.cid-uvlhPxGo14 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvlhPxGo14 p {
  color: #767676;
  text-align: left;
}
.cid-uvlhPxGo14 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvlhPxGo14 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvlhPxGo14 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvlhPxGo14 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvlhPxGo14 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvlhPxGo14 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvlhPxGo14 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlhPxGo14 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvlhPxGo14 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlhPxGo14 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvlhPxGo14 P {
  color: #ffffff;
  text-align: left;
}
.cid-uvlhPxGo14 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvlhPy0w6b {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlhPy0w6b H1 {
  color: #000000;
}
.cid-uxjZWcC14m {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZWcC14m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZWcC14m .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZWcC14m .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZWcC14m .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZWcC14m .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZWcC14m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZWcC14m .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZWcC14m .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZWcC14m .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZWcC14m .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZWcC14m .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-uxjZWcC14m .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZWcC14m .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZWcC14m .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZWcC14m .mbr-text,
.cid-uxjZWcC14m .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvlhPyNu3A {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlhPyNu3A H1 {
  color: #000000;
}
.cid-uxjZWQaJT9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZWQaJT9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZWQaJT9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZWQaJT9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZWQaJT9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZWQaJT9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZWQaJT9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZWQaJT9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZWQaJT9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZWQaJT9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZWQaJT9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZWQaJT9 .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-uxjZWQaJT9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZWQaJT9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZWQaJT9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZWQaJT9 .mbr-text,
.cid-uxjZWQaJT9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvlhPzyTnD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlhPzyTnD H1 {
  color: #000000;
}
.cid-uxjZXq2CDM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZXq2CDM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZXq2CDM .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZXq2CDM .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZXq2CDM .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZXq2CDM .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZXq2CDM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZXq2CDM .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZXq2CDM .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZXq2CDM .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZXq2CDM .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZXq2CDM .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-uxjZXq2CDM .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZXq2CDM .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZXq2CDM .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZXq2CDM .mbr-text,
.cid-uxjZXq2CDM .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxjZY1x8zp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxjZY1x8zp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxjZY1x8zp .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxjZY1x8zp .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxjZY1x8zp .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxjZY1x8zp .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxjZY1x8zp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxjZY1x8zp .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxjZY1x8zp .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxjZY1x8zp .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxjZY1x8zp .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxjZY1x8zp .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-uxjZY1x8zp .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxjZY1x8zp .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxjZY1x8zp .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxjZY1x8zp .mbr-text,
.cid-uxjZY1x8zp .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvlhPAT7xK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvlhPAT7xK H1 {
  color: #000000;
}
.cid-uxk00cTmfy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk00cTmfy h2 {
  text-align: left;
}
.cid-uxk00cTmfy h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk00cTmfy p {
  color: #767676;
  text-align: left;
}
.cid-uxk00cTmfy .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk00cTmfy .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk00cTmfy .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk00cTmfy .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk00cTmfy .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk00cTmfy .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk00cTmfy .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk00cTmfy .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk00cTmfy .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk00cTmfy .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk00cTmfy .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxk00PdngX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxk00PdngX H1 {
  color: #000000;
}
.cid-uvlhPBDc52 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvlhPBDc52 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvlhPBDc52 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvlhPBDc52 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvlhPBDc52 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvlhPBDc52 .box {
  right: 20%;
}
.cid-uvlhPBDc52 .text-box {
  right: 0;
}
.cid-uvlhPBDc52 .mbr-section-title,
.cid-uvlhPBDc52 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvlhPBDc52 .text-box {
    display: none;
  }
  .cid-uvlhPBDc52 .mbr-section-title,
  .cid-uvlhPBDc52 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvlhPBDc52 .box {
    display: none;
  }
  .cid-uvlhPBDc52 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvlhPBDc52 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvlhPBDc52 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvlhPBDc52 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvlhPBDc52 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvlhPBDc52 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvlhPC0sXW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlhPCi2jF {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvlhPCi2jF h2 {
  text-align: left;
}
.cid-uvlhPCi2jF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvlhPCi2jF p {
  color: #767676;
  text-align: left;
}
.cid-uvlhPCi2jF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvlhPCi2jF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvlhPCi2jF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvlhPCi2jF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvlhPCi2jF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvlhPCi2jF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvlhPCi2jF .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlhPCi2jF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvlhPCi2jF .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlhPCi2jF .mbr-text {
  color: #232323;
}
.cid-uvlhPCD5OA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvlhPCD5OA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlhPCD5OA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvlhPCD5OA .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvlhPCD5OA .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvlhPCD5OA .container {
    padding: 0 26px;
  }
}
.cid-uvlhPCD5OA .row {
  justify-content: center;
}
.cid-uvlhPCD5OA .item {
  margin-bottom: 32px;
}
.cid-uvlhPCD5OA .item a {
  display: block;
}
.cid-uvlhPCD5OA .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvlhPCD5OA .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvlhPCD5OA .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvlhPCD5OA .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-uvlhPCD5OA .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvlhPCD5OA .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvlhPCD5OA .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-uvlhPCD5OA .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvlhPCD5OA .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvlhPCD5OA .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvlhPCD5OA .item-title {
  color: #ffffff;
}
.cid-uvlhPCD5OA .mbr-date {
  color: #cacaca;
}
.cid-uvlhPCD5OA .mbr-desc {
  color: #cacaca;
}
.cid-uvlhPD4hhk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvlhPD4hhk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlhPD4hhk .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-uvlhPD4hhk .container {
    padding: 0 16px;
  }
}
.cid-uvlhPD4hhk .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvlhPD4hhk .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvlhPD4hhk .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvlhPD4hhk .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvlhPD4hhk .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvlhPD4hhk .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvlhPD4hhk .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvlhPD4hhk .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvlhPD4hhk .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvlhPD4hhk .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-uvlhPD4hhk .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvlhPD4hhk .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvlhPD4hhk .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvlhPD4hhk .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvlhPD4hhk .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvlhPD4hhk .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvlhPD4hhk .dragArea.row .form-group .form-control:hover,
.cid-uvlhPD4hhk .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvlhPD4hhk .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvlhPD4hhk .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvlhPD4hhk .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvlhPD4hhk .mbr-title {
  color: #ffffff;
}
.cid-uvlhPD4hhk .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvlhPD4hhk .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvlhPD4hhk .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvlhPD4hhk .list {
  color: #08323C;
}
.cid-uvlhPD4hhk label {
  color: #08323C;
}
.cid-uvlhPD4hhk H3 {
  color: #000000;
}
.cid-uvlhPD4hhk P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvljWB2zAD {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvljWB2zAD H1 {
  text-align: center;
}
.cid-uDmI1AalrY {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmI1AalrY .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmI1AalrY .video-block {
    width: 100% !important;
  }
}
.cid-uvljWBqg0l {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvljWBJJXT {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvljWBJJXT .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvljWBJJXT .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvljWBJJXT .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvljWBJJXT .box {
  left: 20%;
}
.cid-uvljWBJJXT .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvljWBJJXT .mbr-section-text,
.cid-uvljWBJJXT .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvljWBJJXT .text-box {
    display: none;
  }
  .cid-uvljWBJJXT .mbr-section-title,
  .cid-uvljWBJJXT .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvljWBJJXT .box {
    display: none;
  }
  .cid-uvljWBJJXT .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvljWBJJXT .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvljWBJJXT .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvljWBJJXT .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvljWBJJXT .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvljWBJJXT .mbr-section-text DIV {
  text-align: center;
}
.cid-uvljWC5KeJ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvljWC5KeJ H1 {
  text-align: center;
}
.cid-uvljWCnJIg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvljWCEflL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvljWCEflL h2 {
  text-align: left;
}
.cid-uvljWCEflL h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvljWCEflL p {
  color: #767676;
  text-align: left;
}
.cid-uvljWCEflL .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvljWCEflL .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvljWCEflL .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvljWCEflL .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvljWCEflL .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvljWCEflL .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvljWCEflL .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvljWCEflL .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvljWCEflL .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvljWCEflL H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvljWCEflL P {
  color: #ffffff;
  text-align: left;
}
.cid-uvljWCEflL H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvljWD40Kb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvljWD40Kb H1 {
  color: #000000;
}
.cid-uvlwMU4K9Y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uvlwMU4K9Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlwMU4K9Y .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uvlwMU4K9Y .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uvlwMU4K9Y .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uvlwMU4K9Y .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uvlwMU4K9Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvlwMU4K9Y .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uvlwMU4K9Y .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uvlwMU4K9Y .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uvlwMU4K9Y .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uvlwMU4K9Y .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-uvlwMU4K9Y .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlwMU4K9Y .image-wrapper {
    padding: 1rem;
  }
}
.cid-uvlwMU4K9Y .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uvlwMU4K9Y .mbr-text,
.cid-uvlwMU4K9Y .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvljWDQr4V {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvljWDQr4V H1 {
  color: #000000;
}
.cid-uxk0BzureZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk0BzureZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk0BzureZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk0BzureZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk0BzureZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk0BzureZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk0BzureZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk0BzureZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk0BzureZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk0BzureZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk0BzureZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk0BzureZ .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-uxk0BzureZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk0BzureZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk0BzureZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk0BzureZ .mbr-text,
.cid-uxk0BzureZ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvljWELHVR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvljWELHVR H1 {
  color: #000000;
}
.cid-uxk0C9fY3I {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk0C9fY3I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk0C9fY3I .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk0C9fY3I .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk0C9fY3I .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk0C9fY3I .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk0C9fY3I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk0C9fY3I .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk0C9fY3I .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk0C9fY3I .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk0C9fY3I .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk0C9fY3I .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-uxk0C9fY3I .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk0C9fY3I .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk0C9fY3I .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk0C9fY3I .mbr-text,
.cid-uxk0C9fY3I .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxk0CIEesU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk0CIEesU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk0CIEesU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk0CIEesU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk0CIEesU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk0CIEesU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk0CIEesU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk0CIEesU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk0CIEesU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk0CIEesU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk0CIEesU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk0CIEesU .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-uxk0CIEesU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk0CIEesU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk0CIEesU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk0CIEesU .mbr-text,
.cid-uxk0CIEesU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvljWGjD9W {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvljWGjD9W H1 {
  color: #000000;
}
.cid-uxk0EqHSgE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk0EqHSgE h2 {
  text-align: left;
}
.cid-uxk0EqHSgE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk0EqHSgE p {
  color: #767676;
  text-align: left;
}
.cid-uxk0EqHSgE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk0EqHSgE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk0EqHSgE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk0EqHSgE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk0EqHSgE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk0EqHSgE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk0EqHSgE .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk0EqHSgE .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk0EqHSgE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk0EqHSgE .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk0EqHSgE .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxk0F3C81m {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxk0F3C81m H1 {
  color: #000000;
}
.cid-uvljWHbj3u {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvljWHbj3u .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvljWHbj3u .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvljWHbj3u .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvljWHbj3u .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvljWHbj3u .box {
  right: 20%;
}
.cid-uvljWHbj3u .text-box {
  right: 0;
}
.cid-uvljWHbj3u .mbr-section-title,
.cid-uvljWHbj3u .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvljWHbj3u .text-box {
    display: none;
  }
  .cid-uvljWHbj3u .mbr-section-title,
  .cid-uvljWHbj3u .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvljWHbj3u .box {
    display: none;
  }
  .cid-uvljWHbj3u .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvljWHbj3u .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvljWHbj3u .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvljWHbj3u .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvljWHbj3u .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvljWHbj3u .mbr-section-text DIV {
  text-align: center;
}
.cid-uvljWHCexP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvljWI0044 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvljWI0044 h2 {
  text-align: left;
}
.cid-uvljWI0044 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvljWI0044 p {
  color: #767676;
  text-align: left;
}
.cid-uvljWI0044 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvljWI0044 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvljWI0044 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvljWI0044 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvljWI0044 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvljWI0044 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvljWI0044 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvljWI0044 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvljWI0044 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvljWI0044 .mbr-text {
  color: #232323;
}
.cid-uvljWIoG6X {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvljWIoG6X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvljWIoG6X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvljWIoG6X .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvljWIoG6X .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvljWIoG6X .container {
    padding: 0 26px;
  }
}
.cid-uvljWIoG6X .row {
  justify-content: center;
}
.cid-uvljWIoG6X .item {
  margin-bottom: 32px;
}
.cid-uvljWIoG6X .item a {
  display: block;
}
.cid-uvljWIoG6X .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvljWIoG6X .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvljWIoG6X .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvljWIoG6X .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-uvljWIoG6X .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvljWIoG6X .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvljWIoG6X .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-uvljWIoG6X .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvljWIoG6X .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvljWIoG6X .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvljWIoG6X .item-title {
  color: #ffffff;
}
.cid-uvljWIoG6X .mbr-date {
  color: #cacaca;
}
.cid-uvljWIoG6X .mbr-desc {
  color: #cacaca;
}
.cid-uvljWIMR6m {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvljWIMR6m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvljWIMR6m .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-uvljWIMR6m .container {
    padding: 0 16px;
  }
}
.cid-uvljWIMR6m .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvljWIMR6m .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvljWIMR6m .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvljWIMR6m .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvljWIMR6m .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvljWIMR6m .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvljWIMR6m .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvljWIMR6m .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvljWIMR6m .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvljWIMR6m .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-uvljWIMR6m .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvljWIMR6m .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvljWIMR6m .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvljWIMR6m .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvljWIMR6m .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvljWIMR6m .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvljWIMR6m .dragArea.row .form-group .form-control:hover,
.cid-uvljWIMR6m .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvljWIMR6m .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvljWIMR6m .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvljWIMR6m .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvljWIMR6m .mbr-title {
  color: #ffffff;
}
.cid-uvljWIMR6m .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvljWIMR6m .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvljWIMR6m .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvljWIMR6m .list {
  color: #08323C;
}
.cid-uvljWIMR6m label {
  color: #08323C;
}
.cid-uvljWIMR6m H3 {
  color: #000000;
}
.cid-uvljWIMR6m P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvlonsdFTa {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlonsdFTa H1 {
  text-align: center;
}
.cid-uDmI3Yjke1 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmI3Yjke1 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmI3Yjke1 .video-block {
    width: 100% !important;
  }
}
.cid-uvlonsDkST {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlonsXMNB {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvlonsXMNB .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvlonsXMNB .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvlonsXMNB .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvlonsXMNB .box {
  left: 20%;
}
.cid-uvlonsXMNB .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvlonsXMNB .mbr-section-text,
.cid-uvlonsXMNB .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvlonsXMNB .text-box {
    display: none;
  }
  .cid-uvlonsXMNB .mbr-section-title,
  .cid-uvlonsXMNB .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvlonsXMNB .box {
    display: none;
  }
  .cid-uvlonsXMNB .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvlonsXMNB .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvlonsXMNB .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvlonsXMNB .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvlonsXMNB .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvlonsXMNB .mbr-section-text DIV {
  text-align: center;
}
.cid-uvlontgnrf {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlontgnrf H1 {
  text-align: center;
}
.cid-uvlontA5FU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlontVlha {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlontVlha h2 {
  text-align: left;
}
.cid-uvlontVlha h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvlontVlha p {
  color: #767676;
  text-align: left;
}
.cid-uvlontVlha .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvlontVlha .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvlontVlha .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvlontVlha .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvlontVlha .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvlontVlha .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvlontVlha .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlontVlha .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvlontVlha .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlontVlha H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvlontVlha P {
  color: #ffffff;
  text-align: left;
}
.cid-uvlontVlha H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvlonukstT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlonukstT H1 {
  color: #000000;
}
.cid-uxk0Q0zBpp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk0Q0zBpp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk0Q0zBpp .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk0Q0zBpp .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk0Q0zBpp .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk0Q0zBpp .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk0Q0zBpp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk0Q0zBpp .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk0Q0zBpp .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk0Q0zBpp .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk0Q0zBpp .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk0Q0zBpp .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-uxk0Q0zBpp .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk0Q0zBpp .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk0Q0zBpp .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk0Q0zBpp .mbr-text,
.cid-uxk0Q0zBpp .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvlonvaoeJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlonvaoeJ H1 {
  color: #000000;
}
.cid-uxk0QBachU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk0QBachU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk0QBachU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk0QBachU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk0QBachU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk0QBachU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk0QBachU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk0QBachU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk0QBachU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk0QBachU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk0QBachU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk0QBachU .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-uxk0QBachU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk0QBachU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk0QBachU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk0QBachU .mbr-text,
.cid-uxk0QBachU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvlonwilfo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlonwilfo H1 {
  color: #000000;
}
.cid-uxk0Rb5OpJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk0Rb5OpJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk0Rb5OpJ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk0Rb5OpJ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk0Rb5OpJ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk0Rb5OpJ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk0Rb5OpJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk0Rb5OpJ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk0Rb5OpJ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk0Rb5OpJ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk0Rb5OpJ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk0Rb5OpJ .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-uxk0Rb5OpJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk0Rb5OpJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk0Rb5OpJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk0Rb5OpJ .mbr-text,
.cid-uxk0Rb5OpJ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxk0RLByBI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk0RLByBI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk0RLByBI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk0RLByBI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk0RLByBI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk0RLByBI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk0RLByBI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk0RLByBI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk0RLByBI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk0RLByBI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk0RLByBI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk0RLByBI .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-uxk0RLByBI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk0RLByBI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk0RLByBI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk0RLByBI .mbr-text,
.cid-uxk0RLByBI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvlonxFKc1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvlonxFKc1 H1 {
  color: #000000;
}
.cid-uxk0TicMX7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk0TicMX7 h2 {
  text-align: left;
}
.cid-uxk0TicMX7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk0TicMX7 p {
  color: #767676;
  text-align: left;
}
.cid-uxk0TicMX7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk0TicMX7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk0TicMX7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk0TicMX7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk0TicMX7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk0TicMX7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk0TicMX7 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk0TicMX7 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk0TicMX7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk0TicMX7 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk0TicMX7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlonyqzHK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvlonyqzHK .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvlonyqzHK .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvlonyqzHK .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvlonyqzHK .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvlonyqzHK .box {
  right: 20%;
}
.cid-uvlonyqzHK .text-box {
  right: 0;
}
.cid-uvlonyqzHK .mbr-section-title,
.cid-uvlonyqzHK .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvlonyqzHK .text-box {
    display: none;
  }
  .cid-uvlonyqzHK .mbr-section-title,
  .cid-uvlonyqzHK .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvlonyqzHK .box {
    display: none;
  }
  .cid-uvlonyqzHK .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvlonyqzHK .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvlonyqzHK .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvlonyqzHK .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvlonyqzHK .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvlonyqzHK .mbr-section-text DIV {
  text-align: center;
}
.cid-uvlonyNr5B {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlonz9ys9 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvlonz9ys9 h2 {
  text-align: left;
}
.cid-uvlonz9ys9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvlonz9ys9 p {
  color: #767676;
  text-align: left;
}
.cid-uvlonz9ys9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvlonz9ys9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvlonz9ys9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvlonz9ys9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvlonz9ys9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvlonz9ys9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvlonz9ys9 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlonz9ys9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvlonz9ys9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlonz9ys9 .mbr-text {
  color: #232323;
}
.cid-uvlonzyTfz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvlonzyTfz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlonzyTfz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvlonzyTfz .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvlonzyTfz .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvlonzyTfz .container {
    padding: 0 26px;
  }
}
.cid-uvlonzyTfz .row {
  justify-content: center;
}
.cid-uvlonzyTfz .item {
  margin-bottom: 32px;
}
.cid-uvlonzyTfz .item a {
  display: block;
}
.cid-uvlonzyTfz .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvlonzyTfz .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvlonzyTfz .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvlonzyTfz .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-uvlonzyTfz .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvlonzyTfz .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvlonzyTfz .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-uvlonzyTfz .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvlonzyTfz .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvlonzyTfz .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvlonzyTfz .item-title {
  color: #ffffff;
}
.cid-uvlonzyTfz .mbr-date {
  color: #cacaca;
}
.cid-uvlonzyTfz .mbr-desc {
  color: #cacaca;
}
.cid-uvlonzVzzI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvlonzVzzI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlonzVzzI .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-uvlonzVzzI .container {
    padding: 0 16px;
  }
}
.cid-uvlonzVzzI .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvlonzVzzI .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvlonzVzzI .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvlonzVzzI .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvlonzVzzI .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvlonzVzzI .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvlonzVzzI .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvlonzVzzI .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvlonzVzzI .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvlonzVzzI .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-uvlonzVzzI .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvlonzVzzI .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvlonzVzzI .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvlonzVzzI .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvlonzVzzI .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvlonzVzzI .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvlonzVzzI .dragArea.row .form-group .form-control:hover,
.cid-uvlonzVzzI .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvlonzVzzI .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvlonzVzzI .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvlonzVzzI .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvlonzVzzI .mbr-title {
  color: #ffffff;
}
.cid-uvlonzVzzI .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvlonzVzzI .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvlonzVzzI .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvlonzVzzI .list {
  color: #08323C;
}
.cid-uvlonzVzzI label {
  color: #08323C;
}
.cid-uvlonzVzzI H3 {
  color: #000000;
}
.cid-uvlonzVzzI P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvlq0UghAk {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlq0UghAk H1 {
  text-align: center;
}
.cid-uDmI6kg1RK {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmI6kg1RK .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmI6kg1RK .video-block {
    width: 100% !important;
  }
}
.cid-uvlq0UFPm9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlq0V210s {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvlq0V210s .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvlq0V210s .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvlq0V210s .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvlq0V210s .box {
  left: 20%;
}
.cid-uvlq0V210s .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvlq0V210s .mbr-section-text,
.cid-uvlq0V210s .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvlq0V210s .text-box {
    display: none;
  }
  .cid-uvlq0V210s .mbr-section-title,
  .cid-uvlq0V210s .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvlq0V210s .box {
    display: none;
  }
  .cid-uvlq0V210s .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvlq0V210s .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvlq0V210s .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvlq0V210s .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvlq0V210s .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvlq0V210s .mbr-section-text DIV {
  text-align: center;
}
.cid-uvlq0VlyK2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlq0VlyK2 H1 {
  text-align: center;
}
.cid-uvlq0VDcIY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlq0VXmhD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlq0VXmhD h2 {
  text-align: left;
}
.cid-uvlq0VXmhD h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvlq0VXmhD p {
  color: #767676;
  text-align: left;
}
.cid-uvlq0VXmhD .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvlq0VXmhD .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvlq0VXmhD .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvlq0VXmhD .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvlq0VXmhD .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvlq0VXmhD .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvlq0VXmhD .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlq0VXmhD .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvlq0VXmhD .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlq0VXmhD H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvlq0VXmhD P {
  color: #ffffff;
  text-align: left;
}
.cid-uvlq0VXmhD H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvlq0WlrLX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlq0WlrLX H1 {
  color: #000000;
}
.cid-uxk12EVaVS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk12EVaVS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk12EVaVS .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk12EVaVS .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk12EVaVS .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk12EVaVS .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk12EVaVS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk12EVaVS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk12EVaVS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk12EVaVS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk12EVaVS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk12EVaVS .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-uxk12EVaVS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk12EVaVS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk12EVaVS .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk12EVaVS .mbr-text,
.cid-uxk12EVaVS .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvlq0XcHHH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlq0XcHHH H1 {
  color: #000000;
}
.cid-uxk13hEn4s {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk13hEn4s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk13hEn4s .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk13hEn4s .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk13hEn4s .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk13hEn4s .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk13hEn4s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk13hEn4s .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk13hEn4s .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk13hEn4s .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk13hEn4s .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk13hEn4s .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-uxk13hEn4s .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk13hEn4s .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk13hEn4s .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk13hEn4s .mbr-text,
.cid-uxk13hEn4s .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvlq0Y3lHr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlq0Y3lHr H1 {
  color: #000000;
}
.cid-uxk13RWaVb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk13RWaVb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk13RWaVb .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk13RWaVb .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk13RWaVb .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk13RWaVb .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk13RWaVb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk13RWaVb .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk13RWaVb .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk13RWaVb .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk13RWaVb .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk13RWaVb .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-uxk13RWaVb .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk13RWaVb .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk13RWaVb .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk13RWaVb .mbr-text,
.cid-uxk13RWaVb .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxk14rKvJJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk14rKvJJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk14rKvJJ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk14rKvJJ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk14rKvJJ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk14rKvJJ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk14rKvJJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk14rKvJJ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk14rKvJJ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk14rKvJJ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk14rKvJJ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk14rKvJJ .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-uxk14rKvJJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk14rKvJJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk14rKvJJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk14rKvJJ .mbr-text,
.cid-uxk14rKvJJ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvlq0ZuHVO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvlq0ZuHVO H1 {
  color: #000000;
}
.cid-uxk0ZN9NFv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk0ZN9NFv h2 {
  text-align: left;
}
.cid-uxk0ZN9NFv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk0ZN9NFv p {
  color: #767676;
  text-align: left;
}
.cid-uxk0ZN9NFv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk0ZN9NFv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk0ZN9NFv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk0ZN9NFv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk0ZN9NFv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk0ZN9NFv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk0ZN9NFv .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk0ZN9NFv .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk0ZN9NFv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk0ZN9NFv .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk0ZN9NFv .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxk15IqBya {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxk15IqBya H1 {
  color: #000000;
}
.cid-uvlq10d3PI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvlq10d3PI .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvlq10d3PI .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvlq10d3PI .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvlq10d3PI .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvlq10d3PI .box {
  right: 20%;
}
.cid-uvlq10d3PI .text-box {
  right: 0;
}
.cid-uvlq10d3PI .mbr-section-title,
.cid-uvlq10d3PI .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvlq10d3PI .text-box {
    display: none;
  }
  .cid-uvlq10d3PI .mbr-section-title,
  .cid-uvlq10d3PI .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvlq10d3PI .box {
    display: none;
  }
  .cid-uvlq10d3PI .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvlq10d3PI .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvlq10d3PI .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvlq10d3PI .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvlq10d3PI .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvlq10d3PI .mbr-section-text DIV {
  text-align: center;
}
.cid-uvlq10CH6a {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlq111JHu {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvlq111JHu h2 {
  text-align: left;
}
.cid-uvlq111JHu h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvlq111JHu p {
  color: #767676;
  text-align: left;
}
.cid-uvlq111JHu .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvlq111JHu .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvlq111JHu .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvlq111JHu .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvlq111JHu .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvlq111JHu .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvlq111JHu .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlq111JHu .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvlq111JHu .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlq111JHu .mbr-text {
  color: #232323;
}
.cid-uvlq11sL7O {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvlq11sL7O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlq11sL7O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvlq11sL7O .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvlq11sL7O .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvlq11sL7O .container {
    padding: 0 26px;
  }
}
.cid-uvlq11sL7O .row {
  justify-content: center;
}
.cid-uvlq11sL7O .item {
  margin-bottom: 32px;
}
.cid-uvlq11sL7O .item a {
  display: block;
}
.cid-uvlq11sL7O .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvlq11sL7O .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvlq11sL7O .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvlq11sL7O .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-uvlq11sL7O .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvlq11sL7O .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvlq11sL7O .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-uvlq11sL7O .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvlq11sL7O .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvlq11sL7O .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvlq11sL7O .item-title {
  color: #ffffff;
}
.cid-uvlq11sL7O .mbr-date {
  color: #cacaca;
}
.cid-uvlq11sL7O .mbr-desc {
  color: #cacaca;
}
.cid-uvlq11PLdh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvlq11PLdh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlq11PLdh .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-uvlq11PLdh .container {
    padding: 0 16px;
  }
}
.cid-uvlq11PLdh .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvlq11PLdh .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvlq11PLdh .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvlq11PLdh .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvlq11PLdh .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvlq11PLdh .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvlq11PLdh .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvlq11PLdh .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvlq11PLdh .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvlq11PLdh .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-uvlq11PLdh .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvlq11PLdh .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvlq11PLdh .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvlq11PLdh .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvlq11PLdh .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvlq11PLdh .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvlq11PLdh .dragArea.row .form-group .form-control:hover,
.cid-uvlq11PLdh .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvlq11PLdh .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvlq11PLdh .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvlq11PLdh .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvlq11PLdh .mbr-title {
  color: #ffffff;
}
.cid-uvlq11PLdh .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvlq11PLdh .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvlq11PLdh .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvlq11PLdh .list {
  color: #08323C;
}
.cid-uvlq11PLdh label {
  color: #08323C;
}
.cid-uvlq11PLdh H3 {
  color: #000000;
}
.cid-uvlq11PLdh P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvlsb10oXl {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlsb10oXl H1 {
  text-align: center;
}
.cid-uDmI8Wa7Sj {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmI8Wa7Sj .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmI8Wa7Sj .video-block {
    width: 100% !important;
  }
}
.cid-uvlsb1sRkC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlsb1LBxu {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvlsb1LBxu .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvlsb1LBxu .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvlsb1LBxu .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvlsb1LBxu .box {
  left: 20%;
}
.cid-uvlsb1LBxu .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvlsb1LBxu .mbr-section-text,
.cid-uvlsb1LBxu .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvlsb1LBxu .text-box {
    display: none;
  }
  .cid-uvlsb1LBxu .mbr-section-title,
  .cid-uvlsb1LBxu .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvlsb1LBxu .box {
    display: none;
  }
  .cid-uvlsb1LBxu .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvlsb1LBxu .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvlsb1LBxu .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvlsb1LBxu .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvlsb1LBxu .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvlsb1LBxu .mbr-section-text DIV {
  text-align: center;
}
.cid-uvlsb27XJV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlsb27XJV H1 {
  text-align: center;
}
.cid-uvlsb2qTkW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlsb2I5lJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlsb2I5lJ h2 {
  text-align: left;
}
.cid-uvlsb2I5lJ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvlsb2I5lJ p {
  color: #767676;
  text-align: left;
}
.cid-uvlsb2I5lJ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvlsb2I5lJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvlsb2I5lJ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvlsb2I5lJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvlsb2I5lJ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvlsb2I5lJ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvlsb2I5lJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlsb2I5lJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvlsb2I5lJ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlsb2I5lJ H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvlsb2I5lJ P {
  color: #ffffff;
  text-align: left;
}
.cid-uvlsb2I5lJ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvlsb38C2q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlsb38C2q H1 {
  color: #000000;
}
.cid-uxk1hLFkiQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk1hLFkiQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk1hLFkiQ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk1hLFkiQ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk1hLFkiQ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk1hLFkiQ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk1hLFkiQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk1hLFkiQ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk1hLFkiQ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk1hLFkiQ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk1hLFkiQ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk1hLFkiQ .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-uxk1hLFkiQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk1hLFkiQ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk1hLFkiQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk1hLFkiQ .mbr-text,
.cid-uxk1hLFkiQ .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvlsb3ZNA1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlsb3ZNA1 H1 {
  color: #000000;
}
.cid-uxk1ioXfJQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk1ioXfJQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk1ioXfJQ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk1ioXfJQ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk1ioXfJQ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk1ioXfJQ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk1ioXfJQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk1ioXfJQ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk1ioXfJQ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk1ioXfJQ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk1ioXfJQ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk1ioXfJQ .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-uxk1ioXfJQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk1ioXfJQ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk1ioXfJQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk1ioXfJQ .mbr-text,
.cid-uxk1ioXfJQ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvlsb4UydC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlsb4UydC H1 {
  color: #000000;
}
.cid-uxk1j3UCbg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk1j3UCbg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk1j3UCbg .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk1j3UCbg .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk1j3UCbg .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk1j3UCbg .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk1j3UCbg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk1j3UCbg .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk1j3UCbg .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk1j3UCbg .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk1j3UCbg .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk1j3UCbg .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-uxk1j3UCbg .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk1j3UCbg .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk1j3UCbg .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk1j3UCbg .mbr-text,
.cid-uxk1j3UCbg .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxk1jDqS8u {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk1jDqS8u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk1jDqS8u .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk1jDqS8u .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk1jDqS8u .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk1jDqS8u .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk1jDqS8u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk1jDqS8u .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk1jDqS8u .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk1jDqS8u .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk1jDqS8u .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk1jDqS8u .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-uxk1jDqS8u .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk1jDqS8u .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk1jDqS8u .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk1jDqS8u .mbr-text,
.cid-uxk1jDqS8u .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvlsb6hlwt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvlsb6hlwt H1 {
  color: #000000;
}
.cid-uxk1kNkwTo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk1kNkwTo h2 {
  text-align: left;
}
.cid-uxk1kNkwTo h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk1kNkwTo p {
  color: #767676;
  text-align: left;
}
.cid-uxk1kNkwTo .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk1kNkwTo .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk1kNkwTo .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk1kNkwTo .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk1kNkwTo .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk1kNkwTo .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk1kNkwTo .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk1kNkwTo .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk1kNkwTo .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk1kNkwTo .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk1kNkwTo .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlsb73uRv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvlsb73uRv .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvlsb73uRv .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvlsb73uRv .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvlsb73uRv .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvlsb73uRv .box {
  right: 20%;
}
.cid-uvlsb73uRv .text-box {
  right: 0;
}
.cid-uvlsb73uRv .mbr-section-title,
.cid-uvlsb73uRv .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvlsb73uRv .text-box {
    display: none;
  }
  .cid-uvlsb73uRv .mbr-section-title,
  .cid-uvlsb73uRv .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvlsb73uRv .box {
    display: none;
  }
  .cid-uvlsb73uRv .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvlsb73uRv .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvlsb73uRv .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvlsb73uRv .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvlsb73uRv .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvlsb73uRv .mbr-section-text DIV {
  text-align: center;
}
.cid-uvlsb7tiM6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlsb7PdgX {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvlsb7PdgX h2 {
  text-align: left;
}
.cid-uvlsb7PdgX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvlsb7PdgX p {
  color: #767676;
  text-align: left;
}
.cid-uvlsb7PdgX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvlsb7PdgX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvlsb7PdgX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvlsb7PdgX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvlsb7PdgX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvlsb7PdgX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvlsb7PdgX .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlsb7PdgX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvlsb7PdgX .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlsb7PdgX .mbr-text {
  color: #232323;
}
.cid-uvlsb8dFD0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvlsb8dFD0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlsb8dFD0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvlsb8dFD0 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvlsb8dFD0 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvlsb8dFD0 .container {
    padding: 0 26px;
  }
}
.cid-uvlsb8dFD0 .row {
  justify-content: center;
}
.cid-uvlsb8dFD0 .item {
  margin-bottom: 32px;
}
.cid-uvlsb8dFD0 .item a {
  display: block;
}
.cid-uvlsb8dFD0 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvlsb8dFD0 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvlsb8dFD0 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvlsb8dFD0 .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-uvlsb8dFD0 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvlsb8dFD0 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvlsb8dFD0 .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-uvlsb8dFD0 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvlsb8dFD0 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvlsb8dFD0 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvlsb8dFD0 .item-title {
  color: #ffffff;
}
.cid-uvlsb8dFD0 .mbr-date {
  color: #cacaca;
}
.cid-uvlsb8dFD0 .mbr-desc {
  color: #cacaca;
}
.cid-uvlsb8GloV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvlsb8GloV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlsb8GloV .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-uvlsb8GloV .container {
    padding: 0 16px;
  }
}
.cid-uvlsb8GloV .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvlsb8GloV .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvlsb8GloV .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvlsb8GloV .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvlsb8GloV .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvlsb8GloV .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvlsb8GloV .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvlsb8GloV .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvlsb8GloV .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvlsb8GloV .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-uvlsb8GloV .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvlsb8GloV .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvlsb8GloV .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvlsb8GloV .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvlsb8GloV .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvlsb8GloV .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvlsb8GloV .dragArea.row .form-group .form-control:hover,
.cid-uvlsb8GloV .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvlsb8GloV .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvlsb8GloV .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvlsb8GloV .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvlsb8GloV .mbr-title {
  color: #ffffff;
}
.cid-uvlsb8GloV .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvlsb8GloV .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvlsb8GloV .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvlsb8GloV .list {
  color: #08323C;
}
.cid-uvlsb8GloV label {
  color: #08323C;
}
.cid-uvlsb8GloV H3 {
  color: #000000;
}
.cid-uvlsb8GloV P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvluhxcOK4 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvluhxcOK4 H1 {
  text-align: center;
}
.cid-uDmIbnHn11 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmIbnHn11 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmIbnHn11 .video-block {
    width: 100% !important;
  }
}
.cid-uvluhxCbsW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvluhxVB1d {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvluhxVB1d .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvluhxVB1d .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvluhxVB1d .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvluhxVB1d .box {
  left: 20%;
}
.cid-uvluhxVB1d .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvluhxVB1d .mbr-section-text,
.cid-uvluhxVB1d .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvluhxVB1d .text-box {
    display: none;
  }
  .cid-uvluhxVB1d .mbr-section-title,
  .cid-uvluhxVB1d .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvluhxVB1d .box {
    display: none;
  }
  .cid-uvluhxVB1d .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvluhxVB1d .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvluhxVB1d .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvluhxVB1d .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvluhxVB1d .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvluhxVB1d .mbr-section-text DIV {
  text-align: center;
}
.cid-uvluhyjCLY {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvluhyjCLY H1 {
  text-align: center;
}
.cid-uvluhyD6hh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvluhyVJj7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvluhyVJj7 h2 {
  text-align: left;
}
.cid-uvluhyVJj7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvluhyVJj7 p {
  color: #767676;
  text-align: left;
}
.cid-uvluhyVJj7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvluhyVJj7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvluhyVJj7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvluhyVJj7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvluhyVJj7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvluhyVJj7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvluhyVJj7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvluhyVJj7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvluhyVJj7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvluhyVJj7 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvluhyVJj7 P {
  color: #ffffff;
  text-align: left;
}
.cid-uvluhyVJj7 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvluhzmDqZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvluhzmDqZ H1 {
  color: #000000;
}
.cid-uxk1xlRrmS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk1xlRrmS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk1xlRrmS .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk1xlRrmS .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk1xlRrmS .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk1xlRrmS .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk1xlRrmS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk1xlRrmS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk1xlRrmS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk1xlRrmS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk1xlRrmS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk1xlRrmS .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-uxk1xlRrmS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk1xlRrmS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk1xlRrmS .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk1xlRrmS .mbr-text,
.cid-uxk1xlRrmS .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvluhAd8hC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvluhAd8hC H1 {
  color: #000000;
}
.cid-uxk1xXhaYz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk1xXhaYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk1xXhaYz .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk1xXhaYz .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk1xXhaYz .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk1xXhaYz .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk1xXhaYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk1xXhaYz .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk1xXhaYz .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk1xXhaYz .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk1xXhaYz .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk1xXhaYz .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-uxk1xXhaYz .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk1xXhaYz .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk1xXhaYz .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk1xXhaYz .mbr-text,
.cid-uxk1xXhaYz .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvluhB6rMC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvluhB6rMC H1 {
  color: #000000;
}
.cid-uxk1yxo5Uk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk1yxo5Uk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk1yxo5Uk .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk1yxo5Uk .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk1yxo5Uk .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk1yxo5Uk .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk1yxo5Uk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk1yxo5Uk .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk1yxo5Uk .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk1yxo5Uk .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk1yxo5Uk .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk1yxo5Uk .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-uxk1yxo5Uk .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk1yxo5Uk .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk1yxo5Uk .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk1yxo5Uk .mbr-text,
.cid-uxk1yxo5Uk .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxk1zqXvB2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk1zqXvB2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk1zqXvB2 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk1zqXvB2 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk1zqXvB2 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk1zqXvB2 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk1zqXvB2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk1zqXvB2 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk1zqXvB2 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk1zqXvB2 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk1zqXvB2 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk1zqXvB2 .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-uxk1zqXvB2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk1zqXvB2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk1zqXvB2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk1zqXvB2 .mbr-text,
.cid-uxk1zqXvB2 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvluhCAAJg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvluhCAAJg H1 {
  color: #000000;
}
.cid-uxk1v8AdTJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk1v8AdTJ h2 {
  text-align: left;
}
.cid-uxk1v8AdTJ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk1v8AdTJ p {
  color: #767676;
  text-align: left;
}
.cid-uxk1v8AdTJ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk1v8AdTJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk1v8AdTJ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk1v8AdTJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk1v8AdTJ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk1v8AdTJ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk1v8AdTJ .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk1v8AdTJ .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk1v8AdTJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk1v8AdTJ .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk1v8AdTJ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxk1vSbjPm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxk1vSbjPm H1 {
  color: #000000;
}
.cid-uvluhDpg2p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvluhDpg2p .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvluhDpg2p .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvluhDpg2p .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvluhDpg2p .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvluhDpg2p .box {
  right: 20%;
}
.cid-uvluhDpg2p .text-box {
  right: 0;
}
.cid-uvluhDpg2p .mbr-section-title,
.cid-uvluhDpg2p .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvluhDpg2p .text-box {
    display: none;
  }
  .cid-uvluhDpg2p .mbr-section-title,
  .cid-uvluhDpg2p .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvluhDpg2p .box {
    display: none;
  }
  .cid-uvluhDpg2p .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvluhDpg2p .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvluhDpg2p .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvluhDpg2p .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvluhDpg2p .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvluhDpg2p .mbr-section-text DIV {
  text-align: center;
}
.cid-uvluhDT8Xz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvluhEikYb {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvluhEikYb h2 {
  text-align: left;
}
.cid-uvluhEikYb h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvluhEikYb p {
  color: #767676;
  text-align: left;
}
.cid-uvluhEikYb .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvluhEikYb .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvluhEikYb .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvluhEikYb .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvluhEikYb .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvluhEikYb .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvluhEikYb .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvluhEikYb .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvluhEikYb .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvluhEikYb .mbr-text {
  color: #232323;
}
.cid-uvluhEKd1G {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvluhEKd1G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvluhEKd1G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvluhEKd1G .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvluhEKd1G .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvluhEKd1G .container {
    padding: 0 26px;
  }
}
.cid-uvluhEKd1G .row {
  justify-content: center;
}
.cid-uvluhEKd1G .item {
  margin-bottom: 32px;
}
.cid-uvluhEKd1G .item a {
  display: block;
}
.cid-uvluhEKd1G .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvluhEKd1G .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvluhEKd1G .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvluhEKd1G .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-uvluhEKd1G .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvluhEKd1G .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvluhEKd1G .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-uvluhEKd1G .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvluhEKd1G .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvluhEKd1G .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvluhEKd1G .item-title {
  color: #ffffff;
}
.cid-uvluhEKd1G .mbr-date {
  color: #cacaca;
}
.cid-uvluhEKd1G .mbr-desc {
  color: #cacaca;
}
.cid-uvluhFewmn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvluhFewmn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvluhFewmn .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-uvluhFewmn .container {
    padding: 0 16px;
  }
}
.cid-uvluhFewmn .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvluhFewmn .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvluhFewmn .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvluhFewmn .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvluhFewmn .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvluhFewmn .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvluhFewmn .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvluhFewmn .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvluhFewmn .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvluhFewmn .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-uvluhFewmn .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvluhFewmn .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvluhFewmn .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvluhFewmn .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvluhFewmn .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvluhFewmn .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvluhFewmn .dragArea.row .form-group .form-control:hover,
.cid-uvluhFewmn .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvluhFewmn .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvluhFewmn .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvluhFewmn .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvluhFewmn .mbr-title {
  color: #ffffff;
}
.cid-uvluhFewmn .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvluhFewmn .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvluhFewmn .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvluhFewmn .list {
  color: #08323C;
}
.cid-uvluhFewmn label {
  color: #08323C;
}
.cid-uvluhFewmn H3 {
  color: #000000;
}
.cid-uvluhFewmn P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvlyCahlle {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlyCahlle H1 {
  text-align: center;
}
.cid-uDmIecimaN {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmIecimaN .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmIecimaN .video-block {
    width: 100% !important;
  }
}
.cid-uvlyCaypKa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlyCaKcA9 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvlyCaKcA9 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvlyCaKcA9 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvlyCaKcA9 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvlyCaKcA9 .box {
  left: 20%;
}
.cid-uvlyCaKcA9 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvlyCaKcA9 .mbr-section-text,
.cid-uvlyCaKcA9 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvlyCaKcA9 .text-box {
    display: none;
  }
  .cid-uvlyCaKcA9 .mbr-section-title,
  .cid-uvlyCaKcA9 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvlyCaKcA9 .box {
    display: none;
  }
  .cid-uvlyCaKcA9 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvlyCaKcA9 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvlyCaKcA9 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvlyCaKcA9 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvlyCaKcA9 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvlyCaKcA9 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvlyCaWH3f {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlyCaWH3f H1 {
  text-align: center;
}
.cid-uvlyCb8ZcY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlyCbjuo0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlyCbjuo0 h2 {
  text-align: left;
}
.cid-uvlyCbjuo0 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvlyCbjuo0 p {
  color: #767676;
  text-align: left;
}
.cid-uvlyCbjuo0 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvlyCbjuo0 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvlyCbjuo0 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvlyCbjuo0 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvlyCbjuo0 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvlyCbjuo0 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvlyCbjuo0 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlyCbjuo0 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvlyCbjuo0 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlyCbjuo0 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvlyCbjuo0 P {
  color: #ffffff;
  text-align: left;
}
.cid-uvlyCbjuo0 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvlyCbAlrT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlyCbAlrT H1 {
  color: #000000;
}
.cid-uvmpcFM8qM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uvmpcFM8qM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvmpcFM8qM .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uvmpcFM8qM .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uvmpcFM8qM .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uvmpcFM8qM .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uvmpcFM8qM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvmpcFM8qM .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uvmpcFM8qM .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uvmpcFM8qM .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uvmpcFM8qM .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uvmpcFM8qM .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-uvmpcFM8qM .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uvmpcFM8qM .image-wrapper {
    padding: 1rem;
  }
}
.cid-uvmpcFM8qM .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uvmpcFM8qM .mbr-text,
.cid-uvmpcFM8qM .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvlyCc7RkR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlyCc7RkR H1 {
  color: #000000;
}
.cid-uxk23toMGc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk23toMGc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk23toMGc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk23toMGc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk23toMGc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk23toMGc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk23toMGc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk23toMGc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk23toMGc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk23toMGc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk23toMGc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk23toMGc .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-uxk23toMGc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk23toMGc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk23toMGc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk23toMGc .mbr-text,
.cid-uxk23toMGc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvlyCcIN8z {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlyCcIN8z H1 {
  color: #000000;
}
.cid-uxk248fFHd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk248fFHd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk248fFHd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk248fFHd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk248fFHd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk248fFHd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk248fFHd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk248fFHd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk248fFHd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk248fFHd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk248fFHd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk248fFHd .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-uxk248fFHd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk248fFHd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk248fFHd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk248fFHd .mbr-text,
.cid-uxk248fFHd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxk24INE73 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk24INE73 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk24INE73 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk24INE73 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk24INE73 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk24INE73 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk24INE73 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk24INE73 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk24INE73 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk24INE73 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk24INE73 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk24INE73 .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-uxk24INE73 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk24INE73 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk24INE73 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk24INE73 .mbr-text,
.cid-uxk24INE73 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvlyCdUlCH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvlyCdUlCH H1 {
  color: #000000;
}
.cid-uxk26e2cOh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk26e2cOh h2 {
  text-align: left;
}
.cid-uxk26e2cOh h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk26e2cOh p {
  color: #767676;
  text-align: left;
}
.cid-uxk26e2cOh .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk26e2cOh .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk26e2cOh .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk26e2cOh .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk26e2cOh .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk26e2cOh .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk26e2cOh .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk26e2cOh .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk26e2cOh .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk26e2cOh .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk26e2cOh .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlyCepIZr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvlyCepIZr .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvlyCepIZr .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvlyCepIZr .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvlyCepIZr .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvlyCepIZr .box {
  right: 20%;
}
.cid-uvlyCepIZr .text-box {
  right: 0;
}
.cid-uvlyCepIZr .mbr-section-title,
.cid-uvlyCepIZr .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvlyCepIZr .text-box {
    display: none;
  }
  .cid-uvlyCepIZr .mbr-section-title,
  .cid-uvlyCepIZr .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvlyCepIZr .box {
    display: none;
  }
  .cid-uvlyCepIZr .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvlyCepIZr .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvlyCepIZr .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvlyCepIZr .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvlyCepIZr .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvlyCepIZr .mbr-section-text DIV {
  text-align: center;
}
.cid-uvlyCeFPXP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlyCeSbsi {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvlyCeSbsi h2 {
  text-align: left;
}
.cid-uvlyCeSbsi h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvlyCeSbsi p {
  color: #767676;
  text-align: left;
}
.cid-uvlyCeSbsi .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvlyCeSbsi .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvlyCeSbsi .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvlyCeSbsi .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvlyCeSbsi .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvlyCeSbsi .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvlyCeSbsi .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlyCeSbsi .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvlyCeSbsi .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlyCeSbsi .mbr-text {
  color: #232323;
}
.cid-uvlyCf8gLO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvlyCf8gLO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlyCf8gLO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvlyCf8gLO .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvlyCf8gLO .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvlyCf8gLO .container {
    padding: 0 26px;
  }
}
.cid-uvlyCf8gLO .row {
  justify-content: center;
}
.cid-uvlyCf8gLO .item {
  margin-bottom: 32px;
}
.cid-uvlyCf8gLO .item a {
  display: block;
}
.cid-uvlyCf8gLO .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvlyCf8gLO .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvlyCf8gLO .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvlyCf8gLO .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-uvlyCf8gLO .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvlyCf8gLO .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvlyCf8gLO .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-uvlyCf8gLO .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvlyCf8gLO .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvlyCf8gLO .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvlyCf8gLO .item-title {
  color: #ffffff;
}
.cid-uvlyCf8gLO .mbr-date {
  color: #cacaca;
}
.cid-uvlyCf8gLO .mbr-desc {
  color: #cacaca;
}
.cid-uvlyCfpNGU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvlyCfpNGU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlyCfpNGU .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-uvlyCfpNGU .container {
    padding: 0 16px;
  }
}
.cid-uvlyCfpNGU .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvlyCfpNGU .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvlyCfpNGU .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvlyCfpNGU .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvlyCfpNGU .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvlyCfpNGU .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvlyCfpNGU .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvlyCfpNGU .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvlyCfpNGU .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvlyCfpNGU .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-uvlyCfpNGU .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvlyCfpNGU .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvlyCfpNGU .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvlyCfpNGU .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvlyCfpNGU .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvlyCfpNGU .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvlyCfpNGU .dragArea.row .form-group .form-control:hover,
.cid-uvlyCfpNGU .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvlyCfpNGU .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvlyCfpNGU .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvlyCfpNGU .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvlyCfpNGU .mbr-title {
  color: #ffffff;
}
.cid-uvlyCfpNGU .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvlyCfpNGU .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvlyCfpNGU .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvlyCfpNGU .list {
  color: #08323C;
}
.cid-uvlyCfpNGU label {
  color: #08323C;
}
.cid-uvlyCfpNGU H3 {
  color: #000000;
}
.cid-uvlyCfpNGU P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvlANUgXGR {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlANUgXGR H1 {
  text-align: center;
}
.cid-uDmIgzcZ6x {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmIgzcZ6x .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmIgzcZ6x .video-block {
    width: 100% !important;
  }
}
.cid-uvlANUEwhX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlANUTGRo {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvlANUTGRo .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvlANUTGRo .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvlANUTGRo .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvlANUTGRo .box {
  left: 20%;
}
.cid-uvlANUTGRo .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvlANUTGRo .mbr-section-text,
.cid-uvlANUTGRo .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvlANUTGRo .text-box {
    display: none;
  }
  .cid-uvlANUTGRo .mbr-section-title,
  .cid-uvlANUTGRo .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvlANUTGRo .box {
    display: none;
  }
  .cid-uvlANUTGRo .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvlANUTGRo .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvlANUTGRo .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvlANUTGRo .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvlANUTGRo .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvlANUTGRo .mbr-section-text DIV {
  text-align: center;
}
.cid-uvlANV5ltK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlANV5ltK H1 {
  text-align: center;
}
.cid-uvlANVfuAK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlANVpf1N {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlANVpf1N h2 {
  text-align: left;
}
.cid-uvlANVpf1N h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvlANVpf1N p {
  color: #767676;
  text-align: left;
}
.cid-uvlANVpf1N .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvlANVpf1N .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvlANVpf1N .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvlANVpf1N .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvlANVpf1N .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvlANVpf1N .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvlANVpf1N .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlANVpf1N .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvlANVpf1N .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlANVpf1N H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvlANVpf1N P {
  color: #ffffff;
  text-align: left;
}
.cid-uvlANVpf1N H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxk2irNOU4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxk2irNOU4 H1 {
  color: #000000;
}
.cid-uxk2jwnV6U {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk2jwnV6U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk2jwnV6U .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk2jwnV6U .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk2jwnV6U .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk2jwnV6U .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk2jwnV6U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk2jwnV6U .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk2jwnV6U .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk2jwnV6U .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk2jwnV6U .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk2jwnV6U .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-uxk2jwnV6U .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk2jwnV6U .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk2jwnV6U .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk2jwnV6U .mbr-text,
.cid-uxk2jwnV6U .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvlANWdiQ6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlANWdiQ6 H1 {
  color: #000000;
}
.cid-uxk2lcneyb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk2lcneyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk2lcneyb .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk2lcneyb .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk2lcneyb .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk2lcneyb .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk2lcneyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk2lcneyb .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk2lcneyb .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk2lcneyb .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk2lcneyb .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk2lcneyb .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-uxk2lcneyb .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk2lcneyb .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk2lcneyb .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk2lcneyb .mbr-text,
.cid-uxk2lcneyb .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvlANWM3cs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlANWM3cs H1 {
  color: #000000;
}
.cid-uxk2lV0cQF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk2lV0cQF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk2lV0cQF .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk2lV0cQF .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk2lV0cQF .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk2lV0cQF .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk2lV0cQF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk2lV0cQF .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk2lV0cQF .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk2lV0cQF .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk2lV0cQF .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk2lV0cQF .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-uxk2lV0cQF .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk2lV0cQF .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk2lV0cQF .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk2lV0cQF .mbr-text,
.cid-uxk2lV0cQF .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxk2mDMrJ8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk2mDMrJ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk2mDMrJ8 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk2mDMrJ8 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk2mDMrJ8 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk2mDMrJ8 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk2mDMrJ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk2mDMrJ8 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk2mDMrJ8 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk2mDMrJ8 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk2mDMrJ8 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk2mDMrJ8 .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-uxk2mDMrJ8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk2mDMrJ8 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk2mDMrJ8 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk2mDMrJ8 .mbr-text,
.cid-uxk2mDMrJ8 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvlANXLXp3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvlANXLXp3 H1 {
  color: #000000;
}
.cid-uxk2g3GBx2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk2g3GBx2 h2 {
  text-align: left;
}
.cid-uxk2g3GBx2 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk2g3GBx2 p {
  color: #767676;
  text-align: left;
}
.cid-uxk2g3GBx2 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk2g3GBx2 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk2g3GBx2 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk2g3GBx2 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk2g3GBx2 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk2g3GBx2 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk2g3GBx2 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk2g3GBx2 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk2g3GBx2 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk2g3GBx2 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk2g3GBx2 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxk2gEGdZ2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxk2gEGdZ2 H1 {
  color: #000000;
}
.cid-uvlANYoZJB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvlANYoZJB .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvlANYoZJB .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvlANYoZJB .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvlANYoZJB .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvlANYoZJB .box {
  right: 20%;
}
.cid-uvlANYoZJB .text-box {
  right: 0;
}
.cid-uvlANYoZJB .mbr-section-title,
.cid-uvlANYoZJB .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvlANYoZJB .text-box {
    display: none;
  }
  .cid-uvlANYoZJB .mbr-section-title,
  .cid-uvlANYoZJB .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvlANYoZJB .box {
    display: none;
  }
  .cid-uvlANYoZJB .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvlANYoZJB .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvlANYoZJB .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvlANYoZJB .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvlANYoZJB .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvlANYoZJB .mbr-section-text DIV {
  text-align: center;
}
.cid-uvlANYDhP4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlANYQBOY {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvlANYQBOY h2 {
  text-align: left;
}
.cid-uvlANYQBOY h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvlANYQBOY p {
  color: #767676;
  text-align: left;
}
.cid-uvlANYQBOY .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvlANYQBOY .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvlANYQBOY .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvlANYQBOY .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvlANYQBOY .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvlANYQBOY .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvlANYQBOY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlANYQBOY .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvlANYQBOY .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlANYQBOY .mbr-text {
  color: #232323;
}
.cid-uvlANZjq1W {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvlANZjq1W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlANZjq1W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvlANZjq1W .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvlANZjq1W .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvlANZjq1W .container {
    padding: 0 26px;
  }
}
.cid-uvlANZjq1W .row {
  justify-content: center;
}
.cid-uvlANZjq1W .item {
  margin-bottom: 32px;
}
.cid-uvlANZjq1W .item a {
  display: block;
}
.cid-uvlANZjq1W .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvlANZjq1W .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvlANZjq1W .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvlANZjq1W .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-uvlANZjq1W .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvlANZjq1W .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvlANZjq1W .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-uvlANZjq1W .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvlANZjq1W .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvlANZjq1W .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvlANZjq1W .item-title {
  color: #ffffff;
}
.cid-uvlANZjq1W .mbr-date {
  color: #cacaca;
}
.cid-uvlANZjq1W .mbr-desc {
  color: #cacaca;
}
.cid-uvlANZzGyv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvlANZzGyv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlANZzGyv .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-uvlANZzGyv .container {
    padding: 0 16px;
  }
}
.cid-uvlANZzGyv .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvlANZzGyv .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvlANZzGyv .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvlANZzGyv .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvlANZzGyv .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvlANZzGyv .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvlANZzGyv .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvlANZzGyv .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvlANZzGyv .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvlANZzGyv .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-uvlANZzGyv .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvlANZzGyv .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvlANZzGyv .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvlANZzGyv .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvlANZzGyv .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvlANZzGyv .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvlANZzGyv .dragArea.row .form-group .form-control:hover,
.cid-uvlANZzGyv .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvlANZzGyv .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvlANZzGyv .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvlANZzGyv .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvlANZzGyv .mbr-title {
  color: #ffffff;
}
.cid-uvlANZzGyv .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvlANZzGyv .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvlANZzGyv .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvlANZzGyv .list {
  color: #08323C;
}
.cid-uvlANZzGyv label {
  color: #08323C;
}
.cid-uvlANZzGyv H3 {
  color: #000000;
}
.cid-uvlANZzGyv P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvlCrrWEdU {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlCrrWEdU H1 {
  text-align: center;
}
.cid-uDmIj4IVXd {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmIj4IVXd .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmIj4IVXd .video-block {
    width: 100% !important;
  }
}
.cid-uvlCrsdAn4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlCrsrgcc {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvlCrsrgcc .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvlCrsrgcc .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvlCrsrgcc .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvlCrsrgcc .box {
  left: 20%;
}
.cid-uvlCrsrgcc .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvlCrsrgcc .mbr-section-text,
.cid-uvlCrsrgcc .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvlCrsrgcc .text-box {
    display: none;
  }
  .cid-uvlCrsrgcc .mbr-section-title,
  .cid-uvlCrsrgcc .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvlCrsrgcc .box {
    display: none;
  }
  .cid-uvlCrsrgcc .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvlCrsrgcc .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvlCrsrgcc .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvlCrsrgcc .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvlCrsrgcc .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvlCrsrgcc .mbr-section-text DIV {
  text-align: center;
}
.cid-uvlCrsFDUm {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlCrsFDUm H1 {
  text-align: center;
}
.cid-uvlCrsSsuI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlCrt3w6k {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvlCrt3w6k h2 {
  text-align: left;
}
.cid-uvlCrt3w6k h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvlCrt3w6k p {
  color: #767676;
  text-align: left;
}
.cid-uvlCrt3w6k .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvlCrt3w6k .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvlCrt3w6k .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvlCrt3w6k .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvlCrt3w6k .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvlCrt3w6k .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvlCrt3w6k .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlCrt3w6k .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvlCrt3w6k .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlCrt3w6k H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvlCrt3w6k P {
  color: #ffffff;
  text-align: left;
}
.cid-uvlCrt3w6k H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxk4rxtXdL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxk4rxtXdL H1 {
  color: #000000;
}
.cid-uxk4sgGS7w {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk4sgGS7w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk4sgGS7w .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk4sgGS7w .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk4sgGS7w .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk4sgGS7w .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk4sgGS7w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk4sgGS7w .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk4sgGS7w .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk4sgGS7w .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk4sgGS7w .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk4sgGS7w .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-uxk4sgGS7w .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk4sgGS7w .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk4sgGS7w .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk4sgGS7w .mbr-text,
.cid-uxk4sgGS7w .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvlCrtSmNn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlCrtSmNn H1 {
  color: #000000;
}
.cid-uxk4v5TxvK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk4v5TxvK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk4v5TxvK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk4v5TxvK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk4v5TxvK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk4v5TxvK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk4v5TxvK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk4v5TxvK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk4v5TxvK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk4v5TxvK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk4v5TxvK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk4v5TxvK .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-uxk4v5TxvK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk4v5TxvK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk4v5TxvK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk4v5TxvK .mbr-text,
.cid-uxk4v5TxvK .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvlCruwYeb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlCruwYeb H1 {
  color: #000000;
}
.cid-uxk4vDnrsv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk4vDnrsv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk4vDnrsv .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk4vDnrsv .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk4vDnrsv .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk4vDnrsv .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk4vDnrsv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk4vDnrsv .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk4vDnrsv .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk4vDnrsv .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk4vDnrsv .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk4vDnrsv .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-uxk4vDnrsv .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk4vDnrsv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk4vDnrsv .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk4vDnrsv .mbr-text,
.cid-uxk4vDnrsv .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxk4wiUiKF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk4wiUiKF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk4wiUiKF .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk4wiUiKF .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk4wiUiKF .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk4wiUiKF .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk4wiUiKF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk4wiUiKF .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk4wiUiKF .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk4wiUiKF .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk4wiUiKF .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk4wiUiKF .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-uxk4wiUiKF .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk4wiUiKF .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk4wiUiKF .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk4wiUiKF .mbr-text,
.cid-uxk4wiUiKF .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvlCrvExfz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvlCrvExfz H1 {
  color: #000000;
}
.cid-uxk4xvwlOm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk4xvwlOm h2 {
  text-align: left;
}
.cid-uxk4xvwlOm h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk4xvwlOm p {
  color: #767676;
  text-align: left;
}
.cid-uxk4xvwlOm .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk4xvwlOm .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk4xvwlOm .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk4xvwlOm .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk4xvwlOm .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk4xvwlOm .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk4xvwlOm .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk4xvwlOm .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk4xvwlOm .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk4xvwlOm .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk4xvwlOm .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlCrweiem {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvlCrweiem .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvlCrweiem .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvlCrweiem .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvlCrweiem .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvlCrweiem .box {
  right: 20%;
}
.cid-uvlCrweiem .text-box {
  right: 0;
}
.cid-uvlCrweiem .mbr-section-title,
.cid-uvlCrweiem .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvlCrweiem .text-box {
    display: none;
  }
  .cid-uvlCrweiem .mbr-section-title,
  .cid-uvlCrweiem .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvlCrweiem .box {
    display: none;
  }
  .cid-uvlCrweiem .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvlCrweiem .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvlCrweiem .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvlCrweiem .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvlCrweiem .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvlCrweiem .mbr-section-text DIV {
  text-align: center;
}
.cid-uvlCrwuVP3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvlCrwIdkO {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvlCrwIdkO h2 {
  text-align: left;
}
.cid-uvlCrwIdkO h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvlCrwIdkO p {
  color: #767676;
  text-align: left;
}
.cid-uvlCrwIdkO .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvlCrwIdkO .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvlCrwIdkO .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvlCrwIdkO .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvlCrwIdkO .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvlCrwIdkO .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvlCrwIdkO .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvlCrwIdkO .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvlCrwIdkO .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvlCrwIdkO .mbr-text {
  color: #232323;
}
.cid-uvlCrx2pAL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvlCrx2pAL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlCrx2pAL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvlCrx2pAL .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvlCrx2pAL .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvlCrx2pAL .container {
    padding: 0 26px;
  }
}
.cid-uvlCrx2pAL .row {
  justify-content: center;
}
.cid-uvlCrx2pAL .item {
  margin-bottom: 32px;
}
.cid-uvlCrx2pAL .item a {
  display: block;
}
.cid-uvlCrx2pAL .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvlCrx2pAL .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvlCrx2pAL .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvlCrx2pAL .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-uvlCrx2pAL .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvlCrx2pAL .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvlCrx2pAL .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-uvlCrx2pAL .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvlCrx2pAL .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvlCrx2pAL .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvlCrx2pAL .item-title {
  color: #ffffff;
}
.cid-uvlCrx2pAL .mbr-date {
  color: #cacaca;
}
.cid-uvlCrx2pAL .mbr-desc {
  color: #cacaca;
}
.cid-uvlCrxnKZd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvlCrxnKZd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvlCrxnKZd .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-uvlCrxnKZd .container {
    padding: 0 16px;
  }
}
.cid-uvlCrxnKZd .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvlCrxnKZd .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvlCrxnKZd .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvlCrxnKZd .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvlCrxnKZd .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvlCrxnKZd .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvlCrxnKZd .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvlCrxnKZd .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvlCrxnKZd .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvlCrxnKZd .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-uvlCrxnKZd .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvlCrxnKZd .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvlCrxnKZd .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvlCrxnKZd .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvlCrxnKZd .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvlCrxnKZd .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvlCrxnKZd .dragArea.row .form-group .form-control:hover,
.cid-uvlCrxnKZd .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvlCrxnKZd .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvlCrxnKZd .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvlCrxnKZd .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvlCrxnKZd .mbr-title {
  color: #ffffff;
}
.cid-uvlCrxnKZd .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvlCrxnKZd .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvlCrxnKZd .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvlCrxnKZd .list {
  color: #08323C;
}
.cid-uvlCrxnKZd label {
  color: #08323C;
}
.cid-uvlCrxnKZd H3 {
  color: #000000;
}
.cid-uvlCrxnKZd P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvm2BC9SvA {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvm2BC9SvA H1 {
  text-align: center;
}
.cid-uDmIpzPGph {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmIpzPGph .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmIpzPGph .video-block {
    width: 100% !important;
  }
}
.cid-uvm2BCvH5z {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvm2BCK21T {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvm2BCK21T .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvm2BCK21T .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvm2BCK21T .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvm2BCK21T .box {
  left: 20%;
}
.cid-uvm2BCK21T .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvm2BCK21T .mbr-section-text,
.cid-uvm2BCK21T .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvm2BCK21T .text-box {
    display: none;
  }
  .cid-uvm2BCK21T .mbr-section-title,
  .cid-uvm2BCK21T .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvm2BCK21T .box {
    display: none;
  }
  .cid-uvm2BCK21T .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvm2BCK21T .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvm2BCK21T .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvm2BCK21T .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvm2BCK21T .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvm2BCK21T .mbr-section-text DIV {
  text-align: center;
}
.cid-uvm2BCWXxM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvm2BCWXxM H1 {
  text-align: center;
}
.cid-uvm2BD8gRn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvm2BDjzCn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvm2BDjzCn h2 {
  text-align: left;
}
.cid-uvm2BDjzCn h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvm2BDjzCn p {
  color: #767676;
  text-align: left;
}
.cid-uvm2BDjzCn .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvm2BDjzCn .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvm2BDjzCn .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvm2BDjzCn .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvm2BDjzCn .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvm2BDjzCn .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvm2BDjzCn .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvm2BDjzCn .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvm2BDjzCn .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvm2BDjzCn H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvm2BDjzCn P {
  color: #ffffff;
  text-align: left;
}
.cid-uvm2BDjzCn H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxk4CY10pC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxk4CY10pC H1 {
  color: #000000;
}
.cid-uxk4DQe0eI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk4DQe0eI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk4DQe0eI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk4DQe0eI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk4DQe0eI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk4DQe0eI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk4DQe0eI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk4DQe0eI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk4DQe0eI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk4DQe0eI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk4DQe0eI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk4DQe0eI .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-uxk4DQe0eI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk4DQe0eI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk4DQe0eI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk4DQe0eI .mbr-text,
.cid-uxk4DQe0eI .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvmorMGmKm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvmorMGmKm H1 {
  color: #000000;
}
.cid-uxk4HnjLS9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk4HnjLS9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk4HnjLS9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk4HnjLS9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk4HnjLS9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk4HnjLS9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk4HnjLS9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk4HnjLS9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk4HnjLS9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk4HnjLS9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk4HnjLS9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk4HnjLS9 .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-uxk4HnjLS9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk4HnjLS9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk4HnjLS9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk4HnjLS9 .mbr-text,
.cid-uxk4HnjLS9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvm2BEPl6K {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvm2BEPl6K H1 {
  color: #000000;
}
.cid-uxk4HXFYQe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk4HXFYQe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk4HXFYQe .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk4HXFYQe .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk4HXFYQe .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk4HXFYQe .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk4HXFYQe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk4HXFYQe .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk4HXFYQe .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk4HXFYQe .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk4HXFYQe .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk4HXFYQe .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-uxk4HXFYQe .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk4HXFYQe .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk4HXFYQe .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk4HXFYQe .mbr-text,
.cid-uxk4HXFYQe .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxk4IyqIvT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk4IyqIvT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk4IyqIvT .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk4IyqIvT .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk4IyqIvT .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk4IyqIvT .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk4IyqIvT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk4IyqIvT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk4IyqIvT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk4IyqIvT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk4IyqIvT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk4IyqIvT .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-uxk4IyqIvT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk4IyqIvT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk4IyqIvT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk4IyqIvT .mbr-text,
.cid-uxk4IyqIvT .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvm2BFZB1B {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvm2BFZB1B H1 {
  color: #000000;
}
.cid-uxk4KMvJov {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk4KMvJov h2 {
  text-align: left;
}
.cid-uxk4KMvJov h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk4KMvJov p {
  color: #767676;
  text-align: left;
}
.cid-uxk4KMvJov .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk4KMvJov .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk4KMvJov .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk4KMvJov .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk4KMvJov .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk4KMvJov .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk4KMvJov .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk4KMvJov .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk4KMvJov .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk4KMvJov .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk4KMvJov .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxk4JAAqW1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxk4JAAqW1 H1 {
  color: #000000;
}
.cid-uvm2BGuTMd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvm2BGuTMd .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvm2BGuTMd .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvm2BGuTMd .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvm2BGuTMd .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvm2BGuTMd .box {
  right: 20%;
}
.cid-uvm2BGuTMd .text-box {
  right: 0;
}
.cid-uvm2BGuTMd .mbr-section-title,
.cid-uvm2BGuTMd .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvm2BGuTMd .text-box {
    display: none;
  }
  .cid-uvm2BGuTMd .mbr-section-title,
  .cid-uvm2BGuTMd .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvm2BGuTMd .box {
    display: none;
  }
  .cid-uvm2BGuTMd .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvm2BGuTMd .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvm2BGuTMd .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvm2BGuTMd .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvm2BGuTMd .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvm2BGuTMd .mbr-section-text DIV {
  text-align: center;
}
.cid-uvm2BGLl3K {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvm2BGZr9z {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvm2BGZr9z h2 {
  text-align: left;
}
.cid-uvm2BGZr9z h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvm2BGZr9z p {
  color: #767676;
  text-align: left;
}
.cid-uvm2BGZr9z .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvm2BGZr9z .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvm2BGZr9z .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvm2BGZr9z .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvm2BGZr9z .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvm2BGZr9z .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvm2BGZr9z .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvm2BGZr9z .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvm2BGZr9z .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvm2BGZr9z .mbr-text {
  color: #232323;
}
.cid-uvm2BHfiPL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvm2BHfiPL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvm2BHfiPL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvm2BHfiPL .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvm2BHfiPL .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvm2BHfiPL .container {
    padding: 0 26px;
  }
}
.cid-uvm2BHfiPL .row {
  justify-content: center;
}
.cid-uvm2BHfiPL .item {
  margin-bottom: 32px;
}
.cid-uvm2BHfiPL .item a {
  display: block;
}
.cid-uvm2BHfiPL .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvm2BHfiPL .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvm2BHfiPL .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvm2BHfiPL .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-uvm2BHfiPL .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvm2BHfiPL .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvm2BHfiPL .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-uvm2BHfiPL .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvm2BHfiPL .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvm2BHfiPL .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvm2BHfiPL .item-title {
  color: #ffffff;
}
.cid-uvm2BHfiPL .mbr-date {
  color: #cacaca;
}
.cid-uvm2BHfiPL .mbr-desc {
  color: #cacaca;
}
.cid-uvm2BHzChH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvm2BHzChH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvm2BHzChH .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-uvm2BHzChH .container {
    padding: 0 16px;
  }
}
.cid-uvm2BHzChH .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvm2BHzChH .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvm2BHzChH .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvm2BHzChH .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvm2BHzChH .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvm2BHzChH .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvm2BHzChH .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvm2BHzChH .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvm2BHzChH .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvm2BHzChH .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-uvm2BHzChH .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvm2BHzChH .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvm2BHzChH .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvm2BHzChH .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvm2BHzChH .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvm2BHzChH .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvm2BHzChH .dragArea.row .form-group .form-control:hover,
.cid-uvm2BHzChH .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvm2BHzChH .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvm2BHzChH .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvm2BHzChH .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvm2BHzChH .mbr-title {
  color: #ffffff;
}
.cid-uvm2BHzChH .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvm2BHzChH .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvm2BHzChH .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvm2BHzChH .list {
  color: #08323C;
}
.cid-uvm2BHzChH label {
  color: #08323C;
}
.cid-uvm2BHzChH H3 {
  color: #000000;
}
.cid-uvm2BHzChH P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvm3ZHejGC {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvm3ZHejGC H1 {
  text-align: center;
}
.cid-uDmIs8bDnT {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmIs8bDnT .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmIs8bDnT .video-block {
    width: 100% !important;
  }
}
.cid-uvm3ZHyDFR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvm3ZHMKp6 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvm3ZHMKp6 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvm3ZHMKp6 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvm3ZHMKp6 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvm3ZHMKp6 .box {
  left: 20%;
}
.cid-uvm3ZHMKp6 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvm3ZHMKp6 .mbr-section-text,
.cid-uvm3ZHMKp6 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvm3ZHMKp6 .text-box {
    display: none;
  }
  .cid-uvm3ZHMKp6 .mbr-section-title,
  .cid-uvm3ZHMKp6 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvm3ZHMKp6 .box {
    display: none;
  }
  .cid-uvm3ZHMKp6 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvm3ZHMKp6 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvm3ZHMKp6 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvm3ZHMKp6 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvm3ZHMKp6 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvm3ZHMKp6 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvm3ZHYpDP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvm3ZHYpDP H1 {
  text-align: center;
}
.cid-uvm3ZIavva {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvm3ZInUss {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvm3ZInUss h2 {
  text-align: left;
}
.cid-uvm3ZInUss h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvm3ZInUss p {
  color: #767676;
  text-align: left;
}
.cid-uvm3ZInUss .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvm3ZInUss .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvm3ZInUss .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvm3ZInUss .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvm3ZInUss .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvm3ZInUss .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvm3ZInUss .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvm3ZInUss .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvm3ZInUss .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvm3ZInUss H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvm3ZInUss P {
  color: #ffffff;
  text-align: left;
}
.cid-uvm3ZInUss H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxk4SQFc02 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxk4SQFc02 H1 {
  color: #000000;
}
.cid-uxk4TEKq86 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk4TEKq86 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk4TEKq86 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk4TEKq86 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk4TEKq86 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk4TEKq86 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk4TEKq86 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk4TEKq86 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk4TEKq86 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk4TEKq86 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk4TEKq86 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk4TEKq86 .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-uxk4TEKq86 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk4TEKq86 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk4TEKq86 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk4TEKq86 .mbr-text,
.cid-uxk4TEKq86 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvm3ZJjIo9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvm3ZJjIo9 H1 {
  color: #000000;
}
.cid-uxk4Zg50Fw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk4Zg50Fw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk4Zg50Fw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk4Zg50Fw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk4Zg50Fw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk4Zg50Fw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk4Zg50Fw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk4Zg50Fw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk4Zg50Fw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk4Zg50Fw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk4Zg50Fw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk4Zg50Fw .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-uxk4Zg50Fw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk4Zg50Fw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk4Zg50Fw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk4Zg50Fw .mbr-text,
.cid-uxk4Zg50Fw .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvm3ZJXWOh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvm3ZJXWOh H1 {
  color: #000000;
}
.cid-uxk4ZXHmcx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk4ZXHmcx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk4ZXHmcx .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk4ZXHmcx .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk4ZXHmcx .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk4ZXHmcx .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk4ZXHmcx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk4ZXHmcx .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk4ZXHmcx .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk4ZXHmcx .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk4ZXHmcx .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk4ZXHmcx .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-uxk4ZXHmcx .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk4ZXHmcx .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk4ZXHmcx .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk4ZXHmcx .mbr-text,
.cid-uxk4ZXHmcx .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxk50JOVdJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk50JOVdJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk50JOVdJ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk50JOVdJ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk50JOVdJ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk50JOVdJ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk50JOVdJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk50JOVdJ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk50JOVdJ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk50JOVdJ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk50JOVdJ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk50JOVdJ .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-uxk50JOVdJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk50JOVdJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk50JOVdJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk50JOVdJ .mbr-text,
.cid-uxk50JOVdJ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvm3ZLaE2s {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvm3ZLaE2s H1 {
  color: #000000;
}
.cid-uxk4Qlkaz9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk4Qlkaz9 h2 {
  text-align: left;
}
.cid-uxk4Qlkaz9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk4Qlkaz9 p {
  color: #767676;
  text-align: left;
}
.cid-uxk4Qlkaz9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk4Qlkaz9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk4Qlkaz9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk4Qlkaz9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk4Qlkaz9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk4Qlkaz9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk4Qlkaz9 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk4Qlkaz9 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk4Qlkaz9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk4Qlkaz9 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk4Qlkaz9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxk4R1I6hG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxk4R1I6hG H1 {
  color: #000000;
}
.cid-uvm3ZLLSyX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvm3ZLLSyX .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvm3ZLLSyX .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvm3ZLLSyX .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvm3ZLLSyX .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvm3ZLLSyX .box {
  right: 20%;
}
.cid-uvm3ZLLSyX .text-box {
  right: 0;
}
.cid-uvm3ZLLSyX .mbr-section-title,
.cid-uvm3ZLLSyX .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvm3ZLLSyX .text-box {
    display: none;
  }
  .cid-uvm3ZLLSyX .mbr-section-title,
  .cid-uvm3ZLLSyX .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvm3ZLLSyX .box {
    display: none;
  }
  .cid-uvm3ZLLSyX .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvm3ZLLSyX .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvm3ZLLSyX .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvm3ZLLSyX .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvm3ZLLSyX .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvm3ZLLSyX .mbr-section-text DIV {
  text-align: center;
}
.cid-uvm3ZM8OGh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvm3ZMnNfg {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvm3ZMnNfg h2 {
  text-align: left;
}
.cid-uvm3ZMnNfg h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvm3ZMnNfg p {
  color: #767676;
  text-align: left;
}
.cid-uvm3ZMnNfg .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvm3ZMnNfg .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvm3ZMnNfg .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvm3ZMnNfg .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvm3ZMnNfg .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvm3ZMnNfg .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvm3ZMnNfg .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvm3ZMnNfg .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvm3ZMnNfg .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvm3ZMnNfg .mbr-text {
  color: #232323;
}
.cid-uvm3ZMJg6Z {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvm3ZMJg6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvm3ZMJg6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvm3ZMJg6Z .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvm3ZMJg6Z .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvm3ZMJg6Z .container {
    padding: 0 26px;
  }
}
.cid-uvm3ZMJg6Z .row {
  justify-content: center;
}
.cid-uvm3ZMJg6Z .item {
  margin-bottom: 32px;
}
.cid-uvm3ZMJg6Z .item a {
  display: block;
}
.cid-uvm3ZMJg6Z .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvm3ZMJg6Z .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvm3ZMJg6Z .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvm3ZMJg6Z .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-uvm3ZMJg6Z .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvm3ZMJg6Z .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvm3ZMJg6Z .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-uvm3ZMJg6Z .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvm3ZMJg6Z .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvm3ZMJg6Z .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvm3ZMJg6Z .item-title {
  color: #ffffff;
}
.cid-uvm3ZMJg6Z .mbr-date {
  color: #cacaca;
}
.cid-uvm3ZMJg6Z .mbr-desc {
  color: #cacaca;
}
.cid-uvm3ZN2jjI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvm3ZN2jjI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvm3ZN2jjI .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-uvm3ZN2jjI .container {
    padding: 0 16px;
  }
}
.cid-uvm3ZN2jjI .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvm3ZN2jjI .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvm3ZN2jjI .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvm3ZN2jjI .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvm3ZN2jjI .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvm3ZN2jjI .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvm3ZN2jjI .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvm3ZN2jjI .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvm3ZN2jjI .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvm3ZN2jjI .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-uvm3ZN2jjI .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvm3ZN2jjI .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvm3ZN2jjI .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvm3ZN2jjI .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvm3ZN2jjI .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvm3ZN2jjI .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvm3ZN2jjI .dragArea.row .form-group .form-control:hover,
.cid-uvm3ZN2jjI .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvm3ZN2jjI .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvm3ZN2jjI .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvm3ZN2jjI .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvm3ZN2jjI .mbr-title {
  color: #ffffff;
}
.cid-uvm3ZN2jjI .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvm3ZN2jjI .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvm3ZN2jjI .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvm3ZN2jjI .list {
  color: #08323C;
}
.cid-uvm3ZN2jjI label {
  color: #08323C;
}
.cid-uvm3ZN2jjI H3 {
  color: #000000;
}
.cid-uvm3ZN2jjI P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvm5cddGux {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvm5cddGux H1 {
  text-align: center;
}
.cid-uDmIwZQG89 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmIwZQG89 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmIwZQG89 .video-block {
    width: 100% !important;
  }
}
.cid-uvm5cdwuZC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvm5cdJABX {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvm5cdJABX .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvm5cdJABX .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvm5cdJABX .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvm5cdJABX .box {
  left: 20%;
}
.cid-uvm5cdJABX .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvm5cdJABX .mbr-section-text,
.cid-uvm5cdJABX .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvm5cdJABX .text-box {
    display: none;
  }
  .cid-uvm5cdJABX .mbr-section-title,
  .cid-uvm5cdJABX .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvm5cdJABX .box {
    display: none;
  }
  .cid-uvm5cdJABX .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvm5cdJABX .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvm5cdJABX .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvm5cdJABX .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvm5cdJABX .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvm5cdJABX .mbr-section-text DIV {
  text-align: center;
}
.cid-uvm5ce1pcy {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvm5ce1pcy H1 {
  text-align: center;
}
.cid-uvm5ceeL57 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvm5cesfJ5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvm5cesfJ5 h2 {
  text-align: left;
}
.cid-uvm5cesfJ5 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvm5cesfJ5 p {
  color: #767676;
  text-align: left;
}
.cid-uvm5cesfJ5 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvm5cesfJ5 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvm5cesfJ5 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvm5cesfJ5 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvm5cesfJ5 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvm5cesfJ5 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvm5cesfJ5 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvm5cesfJ5 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvm5cesfJ5 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvm5cesfJ5 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvm5cesfJ5 P {
  color: #ffffff;
  text-align: left;
}
.cid-uvm5cesfJ5 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvm5ceJKNQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvm5ceJKNQ H1 {
  color: #000000;
}
.cid-uvmkaahQeF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uvmkaahQeF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvmkaahQeF .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uvmkaahQeF .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uvmkaahQeF .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uvmkaahQeF .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uvmkaahQeF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvmkaahQeF .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uvmkaahQeF .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uvmkaahQeF .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uvmkaahQeF .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uvmkaahQeF .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-uvmkaahQeF .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uvmkaahQeF .image-wrapper {
    padding: 1rem;
  }
}
.cid-uvmkaahQeF .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uvmkaahQeF .mbr-text,
.cid-uvmkaahQeF .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvm5cfsVAL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvm5cfsVAL H1 {
  color: #000000;
}
.cid-uxk5DmRsvR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk5DmRsvR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk5DmRsvR .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk5DmRsvR .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk5DmRsvR .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk5DmRsvR .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk5DmRsvR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk5DmRsvR .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk5DmRsvR .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk5DmRsvR .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk5DmRsvR .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk5DmRsvR .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-uxk5DmRsvR .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk5DmRsvR .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk5DmRsvR .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk5DmRsvR .mbr-text,
.cid-uxk5DmRsvR .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvm5cg7Il3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvm5cg7Il3 H1 {
  color: #000000;
}
.cid-uxk5E3abC3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk5E3abC3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk5E3abC3 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk5E3abC3 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk5E3abC3 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk5E3abC3 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk5E3abC3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk5E3abC3 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk5E3abC3 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk5E3abC3 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk5E3abC3 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk5E3abC3 .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-uxk5E3abC3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk5E3abC3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk5E3abC3 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk5E3abC3 .mbr-text,
.cid-uxk5E3abC3 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxk5EKOxjW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk5EKOxjW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk5EKOxjW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk5EKOxjW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk5EKOxjW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk5EKOxjW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk5EKOxjW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk5EKOxjW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk5EKOxjW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk5EKOxjW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk5EKOxjW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk5EKOxjW .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-uxk5EKOxjW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk5EKOxjW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk5EKOxjW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk5EKOxjW .mbr-text,
.cid-uxk5EKOxjW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvm5chkWH3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvm5chkWH3 H1 {
  color: #000000;
}
.cid-uxk5H2OlNO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk5H2OlNO h2 {
  text-align: left;
}
.cid-uxk5H2OlNO h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk5H2OlNO p {
  color: #767676;
  text-align: left;
}
.cid-uxk5H2OlNO .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk5H2OlNO .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk5H2OlNO .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk5H2OlNO .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk5H2OlNO .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk5H2OlNO .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk5H2OlNO .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk5H2OlNO .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk5H2OlNO .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk5H2OlNO .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk5H2OlNO .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvm5chXbSE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvm5chXbSE .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvm5chXbSE .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvm5chXbSE .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvm5chXbSE .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvm5chXbSE .box {
  right: 20%;
}
.cid-uvm5chXbSE .text-box {
  right: 0;
}
.cid-uvm5chXbSE .mbr-section-title,
.cid-uvm5chXbSE .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvm5chXbSE .text-box {
    display: none;
  }
  .cid-uvm5chXbSE .mbr-section-title,
  .cid-uvm5chXbSE .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvm5chXbSE .box {
    display: none;
  }
  .cid-uvm5chXbSE .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvm5chXbSE .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvm5chXbSE .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvm5chXbSE .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvm5chXbSE .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvm5chXbSE .mbr-section-text DIV {
  text-align: center;
}
.cid-uvm5cikGnE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvm5ciBRPv {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvm5ciBRPv h2 {
  text-align: left;
}
.cid-uvm5ciBRPv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvm5ciBRPv p {
  color: #767676;
  text-align: left;
}
.cid-uvm5ciBRPv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvm5ciBRPv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvm5ciBRPv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvm5ciBRPv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvm5ciBRPv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvm5ciBRPv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvm5ciBRPv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvm5ciBRPv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvm5ciBRPv .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvm5ciBRPv .mbr-text {
  color: #232323;
}
.cid-uvm5ciU6zR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvm5ciU6zR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvm5ciU6zR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvm5ciU6zR .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvm5ciU6zR .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvm5ciU6zR .container {
    padding: 0 26px;
  }
}
.cid-uvm5ciU6zR .row {
  justify-content: center;
}
.cid-uvm5ciU6zR .item {
  margin-bottom: 32px;
}
.cid-uvm5ciU6zR .item a {
  display: block;
}
.cid-uvm5ciU6zR .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvm5ciU6zR .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvm5ciU6zR .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvm5ciU6zR .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-uvm5ciU6zR .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvm5ciU6zR .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvm5ciU6zR .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-uvm5ciU6zR .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvm5ciU6zR .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvm5ciU6zR .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvm5ciU6zR .item-title {
  color: #ffffff;
}
.cid-uvm5ciU6zR .mbr-date {
  color: #cacaca;
}
.cid-uvm5ciU6zR .mbr-desc {
  color: #cacaca;
}
.cid-uvm5cjgi99 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvm5cjgi99 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvm5cjgi99 .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-uvm5cjgi99 .container {
    padding: 0 16px;
  }
}
.cid-uvm5cjgi99 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvm5cjgi99 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvm5cjgi99 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvm5cjgi99 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvm5cjgi99 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvm5cjgi99 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvm5cjgi99 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvm5cjgi99 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvm5cjgi99 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvm5cjgi99 .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-uvm5cjgi99 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvm5cjgi99 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvm5cjgi99 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvm5cjgi99 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvm5cjgi99 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvm5cjgi99 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvm5cjgi99 .dragArea.row .form-group .form-control:hover,
.cid-uvm5cjgi99 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvm5cjgi99 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvm5cjgi99 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvm5cjgi99 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvm5cjgi99 .mbr-title {
  color: #ffffff;
}
.cid-uvm5cjgi99 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvm5cjgi99 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvm5cjgi99 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvm5cjgi99 .list {
  color: #08323C;
}
.cid-uvm5cjgi99 label {
  color: #08323C;
}
.cid-uvm5cjgi99 H3 {
  color: #000000;
}
.cid-uvm5cjgi99 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvm9sNx6bH {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvm9sNx6bH H1 {
  text-align: center;
}
.cid-uDmIzJvltG {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmIzJvltG .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmIzJvltG .video-block {
    width: 100% !important;
  }
}
.cid-uvm9sNMxTT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvm9sNWdti {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvm9sNWdti .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvm9sNWdti .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvm9sNWdti .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvm9sNWdti .box {
  left: 20%;
}
.cid-uvm9sNWdti .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvm9sNWdti .mbr-section-text,
.cid-uvm9sNWdti .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvm9sNWdti .text-box {
    display: none;
  }
  .cid-uvm9sNWdti .mbr-section-title,
  .cid-uvm9sNWdti .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvm9sNWdti .box {
    display: none;
  }
  .cid-uvm9sNWdti .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvm9sNWdti .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvm9sNWdti .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvm9sNWdti .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvm9sNWdti .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvm9sNWdti .mbr-section-text DIV {
  text-align: center;
}
.cid-uvm9sO6nFG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvm9sO6nFG H1 {
  text-align: center;
}
.cid-uvm9sOfDLL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvm9sOmPWK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvm9sOmPWK h2 {
  text-align: left;
}
.cid-uvm9sOmPWK h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvm9sOmPWK p {
  color: #767676;
  text-align: left;
}
.cid-uvm9sOmPWK .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvm9sOmPWK .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvm9sOmPWK .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvm9sOmPWK .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvm9sOmPWK .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvm9sOmPWK .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvm9sOmPWK .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvm9sOmPWK .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvm9sOmPWK .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvm9sOmPWK H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvm9sOmPWK P {
  color: #ffffff;
  text-align: left;
}
.cid-uvm9sOmPWK H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxk6gY4SGX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxk6gY4SGX H1 {
  color: #000000;
}
.cid-uxk6hPFQaZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk6hPFQaZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk6hPFQaZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk6hPFQaZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk6hPFQaZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk6hPFQaZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk6hPFQaZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk6hPFQaZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk6hPFQaZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk6hPFQaZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk6hPFQaZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk6hPFQaZ .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-uxk6hPFQaZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk6hPFQaZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk6hPFQaZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk6hPFQaZ .mbr-text,
.cid-uxk6hPFQaZ .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvm9sP54aE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvm9sP54aE H1 {
  color: #000000;
}
.cid-uxk6orgT6Y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk6orgT6Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk6orgT6Y .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk6orgT6Y .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk6orgT6Y .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk6orgT6Y .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk6orgT6Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk6orgT6Y .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk6orgT6Y .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk6orgT6Y .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk6orgT6Y .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk6orgT6Y .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-uxk6orgT6Y .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk6orgT6Y .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk6orgT6Y .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk6orgT6Y .mbr-text,
.cid-uxk6orgT6Y .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvm9sPBjkS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvm9sPBjkS H1 {
  color: #000000;
}
.cid-uxk6p2dYfs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk6p2dYfs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk6p2dYfs .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk6p2dYfs .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk6p2dYfs .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk6p2dYfs .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk6p2dYfs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk6p2dYfs .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk6p2dYfs .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk6p2dYfs .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk6p2dYfs .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk6p2dYfs .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-uxk6p2dYfs .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk6p2dYfs .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk6p2dYfs .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk6p2dYfs .mbr-text,
.cid-uxk6p2dYfs .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxk6pFAOuK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk6pFAOuK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk6pFAOuK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk6pFAOuK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk6pFAOuK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk6pFAOuK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk6pFAOuK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk6pFAOuK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk6pFAOuK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk6pFAOuK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk6pFAOuK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk6pFAOuK .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-uxk6pFAOuK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk6pFAOuK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk6pFAOuK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk6pFAOuK .mbr-text,
.cid-uxk6pFAOuK .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvm9sQGyRd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvm9sQGyRd H1 {
  color: #000000;
}
.cid-uxk6fdwUhR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk6fdwUhR h2 {
  text-align: left;
}
.cid-uxk6fdwUhR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk6fdwUhR p {
  color: #767676;
  text-align: left;
}
.cid-uxk6fdwUhR .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk6fdwUhR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk6fdwUhR .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk6fdwUhR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk6fdwUhR .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk6fdwUhR .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk6fdwUhR .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk6fdwUhR .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk6fdwUhR .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk6fdwUhR .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk6fdwUhR .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvm9sRdQDV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvm9sRdQDV .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvm9sRdQDV .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvm9sRdQDV .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvm9sRdQDV .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvm9sRdQDV .box {
  right: 20%;
}
.cid-uvm9sRdQDV .text-box {
  right: 0;
}
.cid-uvm9sRdQDV .mbr-section-title,
.cid-uvm9sRdQDV .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvm9sRdQDV .text-box {
    display: none;
  }
  .cid-uvm9sRdQDV .mbr-section-title,
  .cid-uvm9sRdQDV .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvm9sRdQDV .box {
    display: none;
  }
  .cid-uvm9sRdQDV .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvm9sRdQDV .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvm9sRdQDV .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvm9sRdQDV .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvm9sRdQDV .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvm9sRdQDV .mbr-section-text DIV {
  text-align: center;
}
.cid-uvm9sRsKWL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvm9sRDqHA {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvm9sRDqHA h2 {
  text-align: left;
}
.cid-uvm9sRDqHA h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvm9sRDqHA p {
  color: #767676;
  text-align: left;
}
.cid-uvm9sRDqHA .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvm9sRDqHA .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvm9sRDqHA .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvm9sRDqHA .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvm9sRDqHA .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvm9sRDqHA .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvm9sRDqHA .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvm9sRDqHA .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvm9sRDqHA .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvm9sRDqHA .mbr-text {
  color: #232323;
}
.cid-uvm9sRSNmB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvm9sRSNmB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvm9sRSNmB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvm9sRSNmB .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvm9sRSNmB .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvm9sRSNmB .container {
    padding: 0 26px;
  }
}
.cid-uvm9sRSNmB .row {
  justify-content: center;
}
.cid-uvm9sRSNmB .item {
  margin-bottom: 32px;
}
.cid-uvm9sRSNmB .item a {
  display: block;
}
.cid-uvm9sRSNmB .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvm9sRSNmB .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvm9sRSNmB .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvm9sRSNmB .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-uvm9sRSNmB .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvm9sRSNmB .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvm9sRSNmB .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-uvm9sRSNmB .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvm9sRSNmB .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvm9sRSNmB .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvm9sRSNmB .item-title {
  color: #ffffff;
}
.cid-uvm9sRSNmB .mbr-date {
  color: #cacaca;
}
.cid-uvm9sRSNmB .mbr-desc {
  color: #cacaca;
}
.cid-uvm9sS7uV1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvm9sS7uV1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvm9sS7uV1 .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-uvm9sS7uV1 .container {
    padding: 0 16px;
  }
}
.cid-uvm9sS7uV1 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvm9sS7uV1 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvm9sS7uV1 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvm9sS7uV1 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvm9sS7uV1 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvm9sS7uV1 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvm9sS7uV1 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvm9sS7uV1 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvm9sS7uV1 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvm9sS7uV1 .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-uvm9sS7uV1 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvm9sS7uV1 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvm9sS7uV1 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvm9sS7uV1 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvm9sS7uV1 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvm9sS7uV1 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvm9sS7uV1 .dragArea.row .form-group .form-control:hover,
.cid-uvm9sS7uV1 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvm9sS7uV1 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvm9sS7uV1 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvm9sS7uV1 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvm9sS7uV1 .mbr-title {
  color: #ffffff;
}
.cid-uvm9sS7uV1 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvm9sS7uV1 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvm9sS7uV1 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvm9sS7uV1 .list {
  color: #08323C;
}
.cid-uvm9sS7uV1 label {
  color: #08323C;
}
.cid-uvm9sS7uV1 H3 {
  color: #000000;
}
.cid-uvm9sS7uV1 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvmb683ZeK {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvmb683ZeK H1 {
  text-align: center;
}
.cid-uDmIBTRhCC {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmIBTRhCC .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmIBTRhCC .video-block {
    width: 100% !important;
  }
}
.cid-uvmb68n7YN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvmb68yUbe {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvmb68yUbe .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvmb68yUbe .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvmb68yUbe .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvmb68yUbe .box {
  left: 20%;
}
.cid-uvmb68yUbe .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvmb68yUbe .mbr-section-text,
.cid-uvmb68yUbe .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvmb68yUbe .text-box {
    display: none;
  }
  .cid-uvmb68yUbe .mbr-section-title,
  .cid-uvmb68yUbe .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvmb68yUbe .box {
    display: none;
  }
  .cid-uvmb68yUbe .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvmb68yUbe .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvmb68yUbe .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvmb68yUbe .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvmb68yUbe .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvmb68yUbe .mbr-section-text DIV {
  text-align: center;
}
.cid-uvmb68LvVm {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvmb68LvVm H1 {
  text-align: center;
}
.cid-uvmb68Ub3m {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvmb692Mka {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvmb692Mka h2 {
  text-align: left;
}
.cid-uvmb692Mka h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvmb692Mka p {
  color: #767676;
  text-align: left;
}
.cid-uvmb692Mka .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvmb692Mka .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvmb692Mka .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvmb692Mka .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvmb692Mka .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvmb692Mka .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvmb692Mka .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvmb692Mka .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvmb692Mka .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvmb692Mka H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvmb692Mka P {
  color: #ffffff;
  text-align: left;
}
.cid-uvmb692Mka H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxk6v5Pyi0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxk6v5Pyi0 H1 {
  color: #000000;
}
.cid-uxk6vZLF0s {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk6vZLF0s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk6vZLF0s .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk6vZLF0s .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk6vZLF0s .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk6vZLF0s .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk6vZLF0s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk6vZLF0s .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk6vZLF0s .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk6vZLF0s .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk6vZLF0s .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk6vZLF0s .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-uxk6vZLF0s .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk6vZLF0s .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk6vZLF0s .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk6vZLF0s .mbr-text,
.cid-uxk6vZLF0s .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvmb69ThZ6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvmb69ThZ6 H1 {
  color: #000000;
}
.cid-uxk6zIHzqW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk6zIHzqW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk6zIHzqW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk6zIHzqW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk6zIHzqW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk6zIHzqW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk6zIHzqW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk6zIHzqW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk6zIHzqW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk6zIHzqW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk6zIHzqW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk6zIHzqW .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-uxk6zIHzqW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk6zIHzqW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk6zIHzqW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk6zIHzqW .mbr-text,
.cid-uxk6zIHzqW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvmb6apLVw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvmb6apLVw H1 {
  color: #000000;
}
.cid-uxk6Als8Ts {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk6Als8Ts .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk6Als8Ts .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk6Als8Ts .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk6Als8Ts .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk6Als8Ts .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk6Als8Ts .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk6Als8Ts .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk6Als8Ts .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk6Als8Ts .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk6Als8Ts .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk6Als8Ts .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-uxk6Als8Ts .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk6Als8Ts .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk6Als8Ts .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk6Als8Ts .mbr-text,
.cid-uxk6Als8Ts .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxk6AW5Dbd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk6AW5Dbd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk6AW5Dbd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk6AW5Dbd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk6AW5Dbd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk6AW5Dbd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk6AW5Dbd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk6AW5Dbd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk6AW5Dbd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk6AW5Dbd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk6AW5Dbd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk6AW5Dbd .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-uxk6AW5Dbd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk6AW5Dbd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk6AW5Dbd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk6AW5Dbd .mbr-text,
.cid-uxk6AW5Dbd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvmb6brydV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvmb6brydV H1 {
  color: #000000;
}
.cid-uxk6DjdFs8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk6DjdFs8 h2 {
  text-align: left;
}
.cid-uxk6DjdFs8 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk6DjdFs8 p {
  color: #767676;
  text-align: left;
}
.cid-uxk6DjdFs8 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk6DjdFs8 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk6DjdFs8 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk6DjdFs8 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk6DjdFs8 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk6DjdFs8 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk6DjdFs8 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk6DjdFs8 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk6DjdFs8 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk6DjdFs8 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk6DjdFs8 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxk6CoZfhn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxk6CoZfhn H1 {
  color: #000000;
}
.cid-uvmb6bRZth {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvmb6bRZth .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvmb6bRZth .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvmb6bRZth .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvmb6bRZth .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvmb6bRZth .box {
  right: 20%;
}
.cid-uvmb6bRZth .text-box {
  right: 0;
}
.cid-uvmb6bRZth .mbr-section-title,
.cid-uvmb6bRZth .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvmb6bRZth .text-box {
    display: none;
  }
  .cid-uvmb6bRZth .mbr-section-title,
  .cid-uvmb6bRZth .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvmb6bRZth .box {
    display: none;
  }
  .cid-uvmb6bRZth .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvmb6bRZth .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvmb6bRZth .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvmb6bRZth .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvmb6bRZth .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvmb6bRZth .mbr-section-text DIV {
  text-align: center;
}
.cid-uvmb6caUTG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvmb6covbT {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvmb6covbT h2 {
  text-align: left;
}
.cid-uvmb6covbT h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvmb6covbT p {
  color: #767676;
  text-align: left;
}
.cid-uvmb6covbT .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvmb6covbT .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvmb6covbT .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvmb6covbT .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvmb6covbT .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvmb6covbT .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvmb6covbT .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvmb6covbT .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvmb6covbT .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvmb6covbT .mbr-text {
  color: #232323;
}
.cid-uvmb6cCSPy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvmb6cCSPy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvmb6cCSPy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvmb6cCSPy .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvmb6cCSPy .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvmb6cCSPy .container {
    padding: 0 26px;
  }
}
.cid-uvmb6cCSPy .row {
  justify-content: center;
}
.cid-uvmb6cCSPy .item {
  margin-bottom: 32px;
}
.cid-uvmb6cCSPy .item a {
  display: block;
}
.cid-uvmb6cCSPy .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvmb6cCSPy .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvmb6cCSPy .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvmb6cCSPy .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-uvmb6cCSPy .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvmb6cCSPy .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvmb6cCSPy .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-uvmb6cCSPy .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvmb6cCSPy .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvmb6cCSPy .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvmb6cCSPy .item-title {
  color: #ffffff;
}
.cid-uvmb6cCSPy .mbr-date {
  color: #cacaca;
}
.cid-uvmb6cCSPy .mbr-desc {
  color: #cacaca;
}
.cid-uvmb6cRD5o {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvmb6cRD5o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvmb6cRD5o .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-uvmb6cRD5o .container {
    padding: 0 16px;
  }
}
.cid-uvmb6cRD5o .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvmb6cRD5o .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvmb6cRD5o .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvmb6cRD5o .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvmb6cRD5o .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvmb6cRD5o .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvmb6cRD5o .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvmb6cRD5o .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvmb6cRD5o .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvmb6cRD5o .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-uvmb6cRD5o .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvmb6cRD5o .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvmb6cRD5o .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvmb6cRD5o .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvmb6cRD5o .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvmb6cRD5o .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvmb6cRD5o .dragArea.row .form-group .form-control:hover,
.cid-uvmb6cRD5o .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvmb6cRD5o .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvmb6cRD5o .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvmb6cRD5o .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvmb6cRD5o .mbr-title {
  color: #ffffff;
}
.cid-uvmb6cRD5o .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvmb6cRD5o .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvmb6cRD5o .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvmb6cRD5o .list {
  color: #08323C;
}
.cid-uvmb6cRD5o label {
  color: #08323C;
}
.cid-uvmb6cRD5o H3 {
  color: #000000;
}
.cid-uvmb6cRD5o P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvmerMSPH6 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvmerMSPH6 H1 {
  text-align: center;
}
.cid-uDmIEv9kk6 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmIEv9kk6 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmIEv9kk6 .video-block {
    width: 100% !important;
  }
}
.cid-uvmerNbMWC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvmerNorvU {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvmerNorvU .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvmerNorvU .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvmerNorvU .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvmerNorvU .box {
  left: 20%;
}
.cid-uvmerNorvU .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvmerNorvU .mbr-section-text,
.cid-uvmerNorvU .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvmerNorvU .text-box {
    display: none;
  }
  .cid-uvmerNorvU .mbr-section-title,
  .cid-uvmerNorvU .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvmerNorvU .box {
    display: none;
  }
  .cid-uvmerNorvU .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvmerNorvU .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvmerNorvU .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvmerNorvU .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvmerNorvU .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvmerNorvU .mbr-section-text DIV {
  text-align: center;
}
.cid-uvmerNxqQu {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvmerNxqQu H1 {
  text-align: center;
}
.cid-uvmerNGfRb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvmerNQqgt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvmerNQqgt h2 {
  text-align: left;
}
.cid-uvmerNQqgt h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvmerNQqgt p {
  color: #767676;
  text-align: left;
}
.cid-uvmerNQqgt .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvmerNQqgt .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvmerNQqgt .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvmerNQqgt .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvmerNQqgt .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvmerNQqgt .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvmerNQqgt .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvmerNQqgt .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvmerNQqgt .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvmerNQqgt H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvmerNQqgt P {
  color: #ffffff;
  text-align: left;
}
.cid-uvmerNQqgt H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxk6KuonZ2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxk6KuonZ2 H1 {
  color: #000000;
}
.cid-uxk6Lhkwl4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk6Lhkwl4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk6Lhkwl4 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk6Lhkwl4 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk6Lhkwl4 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk6Lhkwl4 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk6Lhkwl4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk6Lhkwl4 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk6Lhkwl4 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk6Lhkwl4 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk6Lhkwl4 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk6Lhkwl4 .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-uxk6Lhkwl4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk6Lhkwl4 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk6Lhkwl4 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk6Lhkwl4 .mbr-text,
.cid-uxk6Lhkwl4 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvmerOCv4p {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvmerOCv4p H1 {
  color: #000000;
}
.cid-uxk6P9ypuz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk6P9ypuz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk6P9ypuz .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk6P9ypuz .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk6P9ypuz .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk6P9ypuz .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk6P9ypuz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk6P9ypuz .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk6P9ypuz .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk6P9ypuz .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk6P9ypuz .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk6P9ypuz .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-uxk6P9ypuz .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk6P9ypuz .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk6P9ypuz .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk6P9ypuz .mbr-text,
.cid-uxk6P9ypuz .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvmerPfcDb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvmerPfcDb H1 {
  color: #000000;
}
.cid-uxk6PJ1cci {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk6PJ1cci .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk6PJ1cci .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk6PJ1cci .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk6PJ1cci .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk6PJ1cci .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk6PJ1cci .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk6PJ1cci .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk6PJ1cci .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk6PJ1cci .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk6PJ1cci .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk6PJ1cci .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-uxk6PJ1cci .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk6PJ1cci .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk6PJ1cci .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk6PJ1cci .mbr-text,
.cid-uxk6PJ1cci .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxk6S7vjWk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk6S7vjWk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk6S7vjWk .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk6S7vjWk .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk6S7vjWk .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk6S7vjWk .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk6S7vjWk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk6S7vjWk .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk6S7vjWk .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk6S7vjWk .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk6S7vjWk .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk6S7vjWk .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-uxk6S7vjWk .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk6S7vjWk .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk6S7vjWk .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk6S7vjWk .mbr-text,
.cid-uxk6S7vjWk .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvmerQkQjG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvmerQkQjG H1 {
  color: #000000;
}
.cid-uxk6IaNoMf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk6IaNoMf h2 {
  text-align: left;
}
.cid-uxk6IaNoMf h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk6IaNoMf p {
  color: #767676;
  text-align: left;
}
.cid-uxk6IaNoMf .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk6IaNoMf .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk6IaNoMf .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk6IaNoMf .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk6IaNoMf .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk6IaNoMf .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk6IaNoMf .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk6IaNoMf .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk6IaNoMf .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk6IaNoMf .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk6IaNoMf .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxk6IKNacU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxk6IKNacU H1 {
  color: #000000;
}
.cid-uvmerQNOtD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvmerQNOtD .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvmerQNOtD .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvmerQNOtD .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvmerQNOtD .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvmerQNOtD .box {
  right: 20%;
}
.cid-uvmerQNOtD .text-box {
  right: 0;
}
.cid-uvmerQNOtD .mbr-section-title,
.cid-uvmerQNOtD .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvmerQNOtD .text-box {
    display: none;
  }
  .cid-uvmerQNOtD .mbr-section-title,
  .cid-uvmerQNOtD .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvmerQNOtD .box {
    display: none;
  }
  .cid-uvmerQNOtD .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvmerQNOtD .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvmerQNOtD .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvmerQNOtD .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvmerQNOtD .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvmerQNOtD .mbr-section-text DIV {
  text-align: center;
}
.cid-uvmerR2GYE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvmerRiwSs {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvmerRiwSs h2 {
  text-align: left;
}
.cid-uvmerRiwSs h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvmerRiwSs p {
  color: #767676;
  text-align: left;
}
.cid-uvmerRiwSs .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvmerRiwSs .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvmerRiwSs .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvmerRiwSs .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvmerRiwSs .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvmerRiwSs .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvmerRiwSs .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvmerRiwSs .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvmerRiwSs .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvmerRiwSs .mbr-text {
  color: #232323;
}
.cid-uvmerRC2tE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvmerRC2tE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvmerRC2tE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvmerRC2tE .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvmerRC2tE .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvmerRC2tE .container {
    padding: 0 26px;
  }
}
.cid-uvmerRC2tE .row {
  justify-content: center;
}
.cid-uvmerRC2tE .item {
  margin-bottom: 32px;
}
.cid-uvmerRC2tE .item a {
  display: block;
}
.cid-uvmerRC2tE .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvmerRC2tE .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvmerRC2tE .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvmerRC2tE .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-uvmerRC2tE .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvmerRC2tE .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvmerRC2tE .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-uvmerRC2tE .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvmerRC2tE .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvmerRC2tE .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvmerRC2tE .item-title {
  color: #ffffff;
}
.cid-uvmerRC2tE .mbr-date {
  color: #cacaca;
}
.cid-uvmerRC2tE .mbr-desc {
  color: #cacaca;
}
.cid-uvmerRX9Sl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvmerRX9Sl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvmerRX9Sl .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-uvmerRX9Sl .container {
    padding: 0 16px;
  }
}
.cid-uvmerRX9Sl .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvmerRX9Sl .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvmerRX9Sl .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvmerRX9Sl .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvmerRX9Sl .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvmerRX9Sl .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvmerRX9Sl .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvmerRX9Sl .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvmerRX9Sl .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvmerRX9Sl .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-uvmerRX9Sl .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvmerRX9Sl .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvmerRX9Sl .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvmerRX9Sl .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvmerRX9Sl .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvmerRX9Sl .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvmerRX9Sl .dragArea.row .form-group .form-control:hover,
.cid-uvmerRX9Sl .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvmerRX9Sl .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvmerRX9Sl .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvmerRX9Sl .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvmerRX9Sl .mbr-title {
  color: #ffffff;
}
.cid-uvmerRX9Sl .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvmerRX9Sl .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvmerRX9Sl .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvmerRX9Sl .list {
  color: #08323C;
}
.cid-uvmerRX9Sl label {
  color: #08323C;
}
.cid-uvmerRX9Sl H3 {
  color: #000000;
}
.cid-uvmerRX9Sl P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvmfU9jvQ6 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvmfU9jvQ6 H1 {
  text-align: center;
}
.cid-uDmIGIUcL9 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmIGIUcL9 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmIGIUcL9 .video-block {
    width: 100% !important;
  }
}
.cid-uvmfU9zGzR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvmfU9J9vW {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvmfU9J9vW .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvmfU9J9vW .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvmfU9J9vW .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvmfU9J9vW .box {
  left: 20%;
}
.cid-uvmfU9J9vW .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvmfU9J9vW .mbr-section-text,
.cid-uvmfU9J9vW .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvmfU9J9vW .text-box {
    display: none;
  }
  .cid-uvmfU9J9vW .mbr-section-title,
  .cid-uvmfU9J9vW .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvmfU9J9vW .box {
    display: none;
  }
  .cid-uvmfU9J9vW .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvmfU9J9vW .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvmfU9J9vW .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvmfU9J9vW .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvmfU9J9vW .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvmfU9J9vW .mbr-section-text DIV {
  text-align: center;
}
.cid-uvmfU9UfV5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvmfU9UfV5 H1 {
  text-align: center;
}
.cid-uvmfUa3fGe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvmfUaej06 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvmfUaej06 h2 {
  text-align: left;
}
.cid-uvmfUaej06 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvmfUaej06 p {
  color: #767676;
  text-align: left;
}
.cid-uvmfUaej06 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvmfUaej06 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvmfUaej06 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvmfUaej06 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvmfUaej06 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvmfUaej06 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvmfUaej06 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvmfUaej06 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvmfUaej06 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvmfUaej06 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvmfUaej06 P {
  color: #ffffff;
  text-align: left;
}
.cid-uvmfUaej06 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxk70MYszD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxk70MYszD H1 {
  color: #000000;
}
.cid-uxk71F9SIu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk71F9SIu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk71F9SIu .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk71F9SIu .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk71F9SIu .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk71F9SIu .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk71F9SIu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk71F9SIu .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk71F9SIu .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk71F9SIu .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk71F9SIu .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk71F9SIu .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-uxk71F9SIu .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk71F9SIu .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk71F9SIu .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk71F9SIu .mbr-text,
.cid-uxk71F9SIu .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvmfUb0KxI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvmfUb0KxI H1 {
  color: #000000;
}
.cid-uxk75d2SRM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk75d2SRM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk75d2SRM .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk75d2SRM .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk75d2SRM .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk75d2SRM .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk75d2SRM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk75d2SRM .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk75d2SRM .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk75d2SRM .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk75d2SRM .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk75d2SRM .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-uxk75d2SRM .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk75d2SRM .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk75d2SRM .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk75d2SRM .mbr-text,
.cid-uxk75d2SRM .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvmfUbwWhY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvmfUbwWhY H1 {
  color: #000000;
}
.cid-uxk75PFLqA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk75PFLqA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk75PFLqA .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk75PFLqA .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk75PFLqA .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk75PFLqA .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk75PFLqA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk75PFLqA .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk75PFLqA .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk75PFLqA .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk75PFLqA .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk75PFLqA .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-uxk75PFLqA .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk75PFLqA .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk75PFLqA .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk75PFLqA .mbr-text,
.cid-uxk75PFLqA .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxk76GLXhS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk76GLXhS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk76GLXhS .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk76GLXhS .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk76GLXhS .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk76GLXhS .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk76GLXhS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk76GLXhS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk76GLXhS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk76GLXhS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk76GLXhS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk76GLXhS .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-uxk76GLXhS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk76GLXhS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk76GLXhS .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk76GLXhS .mbr-text,
.cid-uxk76GLXhS .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvmfUcuqur {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvmfUcuqur H1 {
  color: #000000;
}
.cid-uxk7hyMzmR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk7hyMzmR h2 {
  text-align: left;
}
.cid-uxk7hyMzmR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk7hyMzmR p {
  color: #767676;
  text-align: left;
}
.cid-uxk7hyMzmR .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk7hyMzmR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk7hyMzmR .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk7hyMzmR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk7hyMzmR .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk7hyMzmR .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk7hyMzmR .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk7hyMzmR .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk7hyMzmR .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk7hyMzmR .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk7hyMzmR .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxk7idoBq0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxk7idoBq0 H1 {
  color: #000000;
}
.cid-uvmfUcVRGr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvmfUcVRGr .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvmfUcVRGr .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvmfUcVRGr .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvmfUcVRGr .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvmfUcVRGr .box {
  right: 20%;
}
.cid-uvmfUcVRGr .text-box {
  right: 0;
}
.cid-uvmfUcVRGr .mbr-section-title,
.cid-uvmfUcVRGr .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvmfUcVRGr .text-box {
    display: none;
  }
  .cid-uvmfUcVRGr .mbr-section-title,
  .cid-uvmfUcVRGr .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvmfUcVRGr .box {
    display: none;
  }
  .cid-uvmfUcVRGr .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvmfUcVRGr .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvmfUcVRGr .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvmfUcVRGr .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvmfUcVRGr .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvmfUcVRGr .mbr-section-text DIV {
  text-align: center;
}
.cid-uvmfUda6uI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvmfUdrrDE {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvmfUdrrDE h2 {
  text-align: left;
}
.cid-uvmfUdrrDE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvmfUdrrDE p {
  color: #767676;
  text-align: left;
}
.cid-uvmfUdrrDE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvmfUdrrDE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvmfUdrrDE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvmfUdrrDE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvmfUdrrDE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvmfUdrrDE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvmfUdrrDE .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvmfUdrrDE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvmfUdrrDE .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvmfUdrrDE .mbr-text {
  color: #232323;
}
.cid-uvmfUdJ1BO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvmfUdJ1BO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvmfUdJ1BO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvmfUdJ1BO .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvmfUdJ1BO .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvmfUdJ1BO .container {
    padding: 0 26px;
  }
}
.cid-uvmfUdJ1BO .row {
  justify-content: center;
}
.cid-uvmfUdJ1BO .item {
  margin-bottom: 32px;
}
.cid-uvmfUdJ1BO .item a {
  display: block;
}
.cid-uvmfUdJ1BO .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvmfUdJ1BO .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvmfUdJ1BO .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvmfUdJ1BO .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-uvmfUdJ1BO .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvmfUdJ1BO .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvmfUdJ1BO .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-uvmfUdJ1BO .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvmfUdJ1BO .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvmfUdJ1BO .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvmfUdJ1BO .item-title {
  color: #ffffff;
}
.cid-uvmfUdJ1BO .mbr-date {
  color: #cacaca;
}
.cid-uvmfUdJ1BO .mbr-desc {
  color: #cacaca;
}
.cid-uvmfUe1gMr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvmfUe1gMr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvmfUe1gMr .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-uvmfUe1gMr .container {
    padding: 0 16px;
  }
}
.cid-uvmfUe1gMr .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvmfUe1gMr .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvmfUe1gMr .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvmfUe1gMr .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvmfUe1gMr .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvmfUe1gMr .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvmfUe1gMr .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvmfUe1gMr .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvmfUe1gMr .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvmfUe1gMr .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-uvmfUe1gMr .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvmfUe1gMr .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvmfUe1gMr .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvmfUe1gMr .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvmfUe1gMr .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvmfUe1gMr .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvmfUe1gMr .dragArea.row .form-group .form-control:hover,
.cid-uvmfUe1gMr .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvmfUe1gMr .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvmfUe1gMr .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvmfUe1gMr .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvmfUe1gMr .mbr-title {
  color: #ffffff;
}
.cid-uvmfUe1gMr .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvmfUe1gMr .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvmfUe1gMr .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvmfUe1gMr .list {
  color: #08323C;
}
.cid-uvmfUe1gMr label {
  color: #08323C;
}
.cid-uvmfUe1gMr H3 {
  color: #000000;
}
.cid-uvmfUe1gMr P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvmhNmyOSP {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvmhNmyOSP H1 {
  text-align: center;
}
.cid-uDmIIVuRWR {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmIIVuRWR .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmIIVuRWR .video-block {
    width: 100% !important;
  }
}
.cid-uvmhNmQx5S {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvmhNn3L6X {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvmhNn3L6X .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvmhNn3L6X .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvmhNn3L6X .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvmhNn3L6X .box {
  left: 20%;
}
.cid-uvmhNn3L6X .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvmhNn3L6X .mbr-section-text,
.cid-uvmhNn3L6X .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvmhNn3L6X .text-box {
    display: none;
  }
  .cid-uvmhNn3L6X .mbr-section-title,
  .cid-uvmhNn3L6X .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvmhNn3L6X .box {
    display: none;
  }
  .cid-uvmhNn3L6X .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvmhNn3L6X .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvmhNn3L6X .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvmhNn3L6X .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvmhNn3L6X .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvmhNn3L6X .mbr-section-text DIV {
  text-align: center;
}
.cid-uvmhNnebAC {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvmhNnebAC H1 {
  text-align: center;
}
.cid-uvmhNnqkHj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvmhNnAs7a {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvmhNnAs7a h2 {
  text-align: left;
}
.cid-uvmhNnAs7a h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvmhNnAs7a p {
  color: #767676;
  text-align: left;
}
.cid-uvmhNnAs7a .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvmhNnAs7a .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvmhNnAs7a .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvmhNnAs7a .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvmhNnAs7a .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvmhNnAs7a .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvmhNnAs7a .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvmhNnAs7a .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvmhNnAs7a .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvmhNnAs7a H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvmhNnAs7a P {
  color: #ffffff;
  text-align: left;
}
.cid-uvmhNnAs7a H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxk7rwK5A9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxk7rwK5A9 H1 {
  color: #000000;
}
.cid-uxk7srfQq5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk7srfQq5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk7srfQq5 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk7srfQq5 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk7srfQq5 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk7srfQq5 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk7srfQq5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk7srfQq5 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk7srfQq5 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk7srfQq5 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk7srfQq5 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk7srfQq5 .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-uxk7srfQq5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk7srfQq5 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk7srfQq5 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk7srfQq5 .mbr-text,
.cid-uxk7srfQq5 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvmhNonzuF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvmhNonzuF H1 {
  color: #000000;
}
.cid-uxk7tdOR3P {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk7tdOR3P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk7tdOR3P .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk7tdOR3P .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk7tdOR3P .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk7tdOR3P .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk7tdOR3P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk7tdOR3P .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk7tdOR3P .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk7tdOR3P .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk7tdOR3P .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk7tdOR3P .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-uxk7tdOR3P .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk7tdOR3P .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk7tdOR3P .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk7tdOR3P .mbr-text,
.cid-uxk7tdOR3P .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvmhNoY0R9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvmhNoY0R9 H1 {
  color: #000000;
}
.cid-uxk7tRZCLA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk7tRZCLA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk7tRZCLA .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk7tRZCLA .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk7tRZCLA .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk7tRZCLA .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk7tRZCLA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk7tRZCLA .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk7tRZCLA .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk7tRZCLA .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk7tRZCLA .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk7tRZCLA .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-uxk7tRZCLA .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk7tRZCLA .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk7tRZCLA .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk7tRZCLA .mbr-text,
.cid-uxk7tRZCLA .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxk7utfCzF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk7utfCzF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk7utfCzF .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk7utfCzF .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk7utfCzF .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk7utfCzF .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk7utfCzF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk7utfCzF .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk7utfCzF .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk7utfCzF .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk7utfCzF .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk7utfCzF .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-uxk7utfCzF .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk7utfCzF .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk7utfCzF .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk7utfCzF .mbr-text,
.cid-uxk7utfCzF .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvmhNq3dyt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvmhNq3dyt H1 {
  color: #000000;
}
.cid-uxk7p4SUU3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk7p4SUU3 h2 {
  text-align: left;
}
.cid-uxk7p4SUU3 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk7p4SUU3 p {
  color: #767676;
  text-align: left;
}
.cid-uxk7p4SUU3 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk7p4SUU3 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk7p4SUU3 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk7p4SUU3 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk7p4SUU3 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk7p4SUU3 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk7p4SUU3 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk7p4SUU3 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk7p4SUU3 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk7p4SUU3 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk7p4SUU3 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxk7pRIVog {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxk7pRIVog H1 {
  color: #000000;
}
.cid-uvmhNqBcCs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvmhNqBcCs .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvmhNqBcCs .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvmhNqBcCs .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvmhNqBcCs .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvmhNqBcCs .box {
  right: 20%;
}
.cid-uvmhNqBcCs .text-box {
  right: 0;
}
.cid-uvmhNqBcCs .mbr-section-title,
.cid-uvmhNqBcCs .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvmhNqBcCs .text-box {
    display: none;
  }
  .cid-uvmhNqBcCs .mbr-section-title,
  .cid-uvmhNqBcCs .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvmhNqBcCs .box {
    display: none;
  }
  .cid-uvmhNqBcCs .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvmhNqBcCs .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvmhNqBcCs .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvmhNqBcCs .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvmhNqBcCs .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvmhNqBcCs .mbr-section-text DIV {
  text-align: center;
}
.cid-uvmhNqVP6u {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvmhNrcBtU {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvmhNrcBtU h2 {
  text-align: left;
}
.cid-uvmhNrcBtU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvmhNrcBtU p {
  color: #767676;
  text-align: left;
}
.cid-uvmhNrcBtU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvmhNrcBtU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvmhNrcBtU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvmhNrcBtU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvmhNrcBtU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvmhNrcBtU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvmhNrcBtU .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvmhNrcBtU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvmhNrcBtU .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvmhNrcBtU .mbr-text {
  color: #232323;
}
.cid-uvmhNrsUiF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvmhNrsUiF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvmhNrsUiF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvmhNrsUiF .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvmhNrsUiF .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvmhNrsUiF .container {
    padding: 0 26px;
  }
}
.cid-uvmhNrsUiF .row {
  justify-content: center;
}
.cid-uvmhNrsUiF .item {
  margin-bottom: 32px;
}
.cid-uvmhNrsUiF .item a {
  display: block;
}
.cid-uvmhNrsUiF .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvmhNrsUiF .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvmhNrsUiF .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvmhNrsUiF .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-uvmhNrsUiF .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvmhNrsUiF .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvmhNrsUiF .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-uvmhNrsUiF .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvmhNrsUiF .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvmhNrsUiF .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvmhNrsUiF .item-title {
  color: #ffffff;
}
.cid-uvmhNrsUiF .mbr-date {
  color: #cacaca;
}
.cid-uvmhNrsUiF .mbr-desc {
  color: #cacaca;
}
.cid-uvmhNrKnH2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvmhNrKnH2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvmhNrKnH2 .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-uvmhNrKnH2 .container {
    padding: 0 16px;
  }
}
.cid-uvmhNrKnH2 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvmhNrKnH2 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvmhNrKnH2 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvmhNrKnH2 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvmhNrKnH2 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvmhNrKnH2 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvmhNrKnH2 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvmhNrKnH2 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvmhNrKnH2 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvmhNrKnH2 .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-uvmhNrKnH2 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvmhNrKnH2 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvmhNrKnH2 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvmhNrKnH2 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvmhNrKnH2 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvmhNrKnH2 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvmhNrKnH2 .dragArea.row .form-group .form-control:hover,
.cid-uvmhNrKnH2 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvmhNrKnH2 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvmhNrKnH2 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvmhNrKnH2 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvmhNrKnH2 .mbr-title {
  color: #ffffff;
}
.cid-uvmhNrKnH2 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvmhNrKnH2 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvmhNrKnH2 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvmhNrKnH2 .list {
  color: #08323C;
}
.cid-uvmhNrKnH2 label {
  color: #08323C;
}
.cid-uvmhNrKnH2 H3 {
  color: #000000;
}
.cid-uvmhNrKnH2 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvmiINjL1J {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvmiINjL1J H1 {
  text-align: center;
}
.cid-uDmIQ27de8 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmIQ27de8 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmIQ27de8 .video-block {
    width: 100% !important;
  }
}
.cid-uvmiINB5Tm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvmiINP7aE {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvmiINP7aE .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvmiINP7aE .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvmiINP7aE .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvmiINP7aE .box {
  left: 20%;
}
.cid-uvmiINP7aE .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvmiINP7aE .mbr-section-text,
.cid-uvmiINP7aE .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvmiINP7aE .text-box {
    display: none;
  }
  .cid-uvmiINP7aE .mbr-section-title,
  .cid-uvmiINP7aE .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvmiINP7aE .box {
    display: none;
  }
  .cid-uvmiINP7aE .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvmiINP7aE .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvmiINP7aE .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvmiINP7aE .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvmiINP7aE .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvmiINP7aE .mbr-section-text DIV {
  text-align: center;
}
.cid-uvmiIO32as {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvmiIO32as H1 {
  text-align: center;
}
.cid-uvmiIOeSvQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvmiIOp3Wp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvmiIOp3Wp h2 {
  text-align: left;
}
.cid-uvmiIOp3Wp h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvmiIOp3Wp p {
  color: #767676;
  text-align: left;
}
.cid-uvmiIOp3Wp .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvmiIOp3Wp .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvmiIOp3Wp .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvmiIOp3Wp .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvmiIOp3Wp .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvmiIOp3Wp .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvmiIOp3Wp .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvmiIOp3Wp .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvmiIOp3Wp .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvmiIOp3Wp H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvmiIOp3Wp P {
  color: #ffffff;
  text-align: left;
}
.cid-uvmiIOp3Wp H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxk7EDUwjO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxk7EDUwjO H1 {
  color: #000000;
}
.cid-uxk7FwEsnx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk7FwEsnx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk7FwEsnx .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk7FwEsnx .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk7FwEsnx .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk7FwEsnx .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk7FwEsnx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk7FwEsnx .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk7FwEsnx .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk7FwEsnx .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk7FwEsnx .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk7FwEsnx .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-uxk7FwEsnx .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk7FwEsnx .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk7FwEsnx .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk7FwEsnx .mbr-text,
.cid-uxk7FwEsnx .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uvmiIPg8ZQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvmiIPg8ZQ H1 {
  color: #000000;
}
.cid-uxk7G4OwEo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk7G4OwEo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk7G4OwEo .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk7G4OwEo .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk7G4OwEo .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk7G4OwEo .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk7G4OwEo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk7G4OwEo .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk7G4OwEo .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk7G4OwEo .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk7G4OwEo .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk7G4OwEo .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-uxk7G4OwEo .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk7G4OwEo .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk7G4OwEo .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk7G4OwEo .mbr-text,
.cid-uxk7G4OwEo .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvmiIPSxDC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvmiIPSxDC H1 {
  color: #000000;
}
.cid-uxk7GLxuty {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk7GLxuty .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk7GLxuty .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk7GLxuty .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk7GLxuty .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk7GLxuty .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk7GLxuty .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk7GLxuty .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk7GLxuty .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk7GLxuty .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk7GLxuty .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk7GLxuty .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-uxk7GLxuty .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk7GLxuty .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk7GLxuty .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk7GLxuty .mbr-text,
.cid-uxk7GLxuty .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxk7HT9mAP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk7HT9mAP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk7HT9mAP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk7HT9mAP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk7HT9mAP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk7HT9mAP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk7HT9mAP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk7HT9mAP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk7HT9mAP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk7HT9mAP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk7HT9mAP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk7HT9mAP .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-uxk7HT9mAP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk7HT9mAP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk7HT9mAP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk7HT9mAP .mbr-text,
.cid-uxk7HT9mAP .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvmiIQWMmZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvmiIQWMmZ H1 {
  color: #000000;
}
.cid-uxk7IWVu94 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk7IWVu94 h2 {
  text-align: left;
}
.cid-uxk7IWVu94 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk7IWVu94 p {
  color: #767676;
  text-align: left;
}
.cid-uxk7IWVu94 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk7IWVu94 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk7IWVu94 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk7IWVu94 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk7IWVu94 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk7IWVu94 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk7IWVu94 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk7IWVu94 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk7IWVu94 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk7IWVu94 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk7IWVu94 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxk7JyHA56 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxk7JyHA56 H1 {
  color: #000000;
}
.cid-uvmiIRsImw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvmiIRsImw .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvmiIRsImw .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvmiIRsImw .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvmiIRsImw .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvmiIRsImw .box {
  right: 20%;
}
.cid-uvmiIRsImw .text-box {
  right: 0;
}
.cid-uvmiIRsImw .mbr-section-title,
.cid-uvmiIRsImw .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvmiIRsImw .text-box {
    display: none;
  }
  .cid-uvmiIRsImw .mbr-section-title,
  .cid-uvmiIRsImw .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvmiIRsImw .box {
    display: none;
  }
  .cid-uvmiIRsImw .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvmiIRsImw .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvmiIRsImw .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvmiIRsImw .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvmiIRsImw .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvmiIRsImw .mbr-section-text DIV {
  text-align: center;
}
.cid-uvmiIRIVoo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvmiIRW4aQ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvmiIRW4aQ h2 {
  text-align: left;
}
.cid-uvmiIRW4aQ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvmiIRW4aQ p {
  color: #767676;
  text-align: left;
}
.cid-uvmiIRW4aQ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvmiIRW4aQ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvmiIRW4aQ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvmiIRW4aQ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvmiIRW4aQ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvmiIRW4aQ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvmiIRW4aQ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvmiIRW4aQ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvmiIRW4aQ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvmiIRW4aQ .mbr-text {
  color: #232323;
}
.cid-uvmiIScgiF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvmiIScgiF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvmiIScgiF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvmiIScgiF .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvmiIScgiF .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvmiIScgiF .container {
    padding: 0 26px;
  }
}
.cid-uvmiIScgiF .row {
  justify-content: center;
}
.cid-uvmiIScgiF .item {
  margin-bottom: 32px;
}
.cid-uvmiIScgiF .item a {
  display: block;
}
.cid-uvmiIScgiF .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvmiIScgiF .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvmiIScgiF .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvmiIScgiF .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-uvmiIScgiF .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvmiIScgiF .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvmiIScgiF .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-uvmiIScgiF .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvmiIScgiF .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvmiIScgiF .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvmiIScgiF .item-title {
  color: #ffffff;
}
.cid-uvmiIScgiF .mbr-date {
  color: #cacaca;
}
.cid-uvmiIScgiF .mbr-desc {
  color: #cacaca;
}
.cid-uvmiISyEuh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvmiISyEuh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvmiISyEuh .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-uvmiISyEuh .container {
    padding: 0 16px;
  }
}
.cid-uvmiISyEuh .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvmiISyEuh .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvmiISyEuh .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvmiISyEuh .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvmiISyEuh .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvmiISyEuh .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvmiISyEuh .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvmiISyEuh .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvmiISyEuh .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvmiISyEuh .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-uvmiISyEuh .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvmiISyEuh .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvmiISyEuh .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvmiISyEuh .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvmiISyEuh .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvmiISyEuh .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvmiISyEuh .dragArea.row .form-group .form-control:hover,
.cid-uvmiISyEuh .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvmiISyEuh .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvmiISyEuh .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvmiISyEuh .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvmiISyEuh .mbr-title {
  color: #ffffff;
}
.cid-uvmiISyEuh .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvmiISyEuh .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvmiISyEuh .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvmiISyEuh .list {
  color: #08323C;
}
.cid-uvmiISyEuh label {
  color: #08323C;
}
.cid-uvmiISyEuh H3 {
  color: #000000;
}
.cid-uvmiISyEuh P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvmkZ8YJN7 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvmkZ8YJN7 H1 {
  text-align: center;
}
.cid-uDmISOZaaq {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmISOZaaq .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmISOZaaq .video-block {
    width: 100% !important;
  }
}
.cid-uvmkZ9gPpL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvmkZ9txKr {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvmkZ9txKr .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvmkZ9txKr .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvmkZ9txKr .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvmkZ9txKr .box {
  left: 20%;
}
.cid-uvmkZ9txKr .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvmkZ9txKr .mbr-section-text,
.cid-uvmkZ9txKr .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvmkZ9txKr .text-box {
    display: none;
  }
  .cid-uvmkZ9txKr .mbr-section-title,
  .cid-uvmkZ9txKr .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvmkZ9txKr .box {
    display: none;
  }
  .cid-uvmkZ9txKr .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvmkZ9txKr .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvmkZ9txKr .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvmkZ9txKr .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvmkZ9txKr .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvmkZ9txKr .mbr-section-text DIV {
  text-align: center;
}
.cid-uvmkZ9Jqzs {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvmkZ9Jqzs H1 {
  text-align: center;
}
.cid-uvmkZ9Yb6X {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvmkZabqRF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvmkZabqRF h2 {
  text-align: left;
}
.cid-uvmkZabqRF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvmkZabqRF p {
  color: #767676;
  text-align: left;
}
.cid-uvmkZabqRF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvmkZabqRF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvmkZabqRF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvmkZabqRF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvmkZabqRF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvmkZabqRF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvmkZabqRF .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvmkZabqRF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvmkZabqRF .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvmkZabqRF H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvmkZabqRF P {
  color: #ffffff;
  text-align: left;
}
.cid-uvmkZabqRF H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvmkZbbISp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvmkZbbISp H1 {
  color: #000000;
}
.cid-uxk7SfCVKF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk7SfCVKF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk7SfCVKF .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk7SfCVKF .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk7SfCVKF .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk7SfCVKF .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk7SfCVKF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk7SfCVKF .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk7SfCVKF .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk7SfCVKF .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk7SfCVKF .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk7SfCVKF .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-uxk7SfCVKF .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk7SfCVKF .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk7SfCVKF .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk7SfCVKF .mbr-text,
.cid-uxk7SfCVKF .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvmkZbSXDC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvmkZbSXDC H1 {
  color: #000000;
}
.cid-uxk7SRdRzD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk7SRdRzD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk7SRdRzD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk7SRdRzD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk7SRdRzD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk7SRdRzD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk7SRdRzD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk7SRdRzD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk7SRdRzD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk7SRdRzD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk7SRdRzD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk7SRdRzD .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-uxk7SRdRzD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk7SRdRzD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk7SRdRzD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk7SRdRzD .mbr-text,
.cid-uxk7SRdRzD .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxk7TrwfER {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxk7TrwfER .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxk7TrwfER .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxk7TrwfER .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxk7TrwfER .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxk7TrwfER .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxk7TrwfER .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxk7TrwfER .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxk7TrwfER .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxk7TrwfER .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxk7TrwfER .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxk7TrwfER .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-uxk7TrwfER .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk7TrwfER .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxk7TrwfER .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxk7TrwfER .mbr-text,
.cid-uxk7TrwfER .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvmkZcYqwE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvmkZcYqwE H1 {
  color: #000000;
}
.cid-uxk7QUOOnL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxk7QUOOnL h2 {
  text-align: left;
}
.cid-uxk7QUOOnL h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxk7QUOOnL p {
  color: #767676;
  text-align: left;
}
.cid-uxk7QUOOnL .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxk7QUOOnL .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxk7QUOOnL .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxk7QUOOnL .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxk7QUOOnL .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxk7QUOOnL .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxk7QUOOnL .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxk7QUOOnL .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxk7QUOOnL .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxk7QUOOnL .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxk7QUOOnL .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvmkZdC1mB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvmkZdC1mB .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvmkZdC1mB .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvmkZdC1mB .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvmkZdC1mB .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvmkZdC1mB .box {
  right: 20%;
}
.cid-uvmkZdC1mB .text-box {
  right: 0;
}
.cid-uvmkZdC1mB .mbr-section-title,
.cid-uvmkZdC1mB .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvmkZdC1mB .text-box {
    display: none;
  }
  .cid-uvmkZdC1mB .mbr-section-title,
  .cid-uvmkZdC1mB .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvmkZdC1mB .box {
    display: none;
  }
  .cid-uvmkZdC1mB .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvmkZdC1mB .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvmkZdC1mB .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvmkZdC1mB .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvmkZdC1mB .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvmkZdC1mB .mbr-section-text DIV {
  text-align: center;
}
.cid-uvmkZdV2x0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvmkZedLsX {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvmkZedLsX h2 {
  text-align: left;
}
.cid-uvmkZedLsX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvmkZedLsX p {
  color: #767676;
  text-align: left;
}
.cid-uvmkZedLsX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvmkZedLsX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvmkZedLsX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvmkZedLsX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvmkZedLsX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvmkZedLsX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvmkZedLsX .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvmkZedLsX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvmkZedLsX .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvmkZedLsX .mbr-text {
  color: #232323;
}
.cid-uvmkZewqJR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvmkZewqJR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvmkZewqJR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvmkZewqJR .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvmkZewqJR .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvmkZewqJR .container {
    padding: 0 26px;
  }
}
.cid-uvmkZewqJR .row {
  justify-content: center;
}
.cid-uvmkZewqJR .item {
  margin-bottom: 32px;
}
.cid-uvmkZewqJR .item a {
  display: block;
}
.cid-uvmkZewqJR .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvmkZewqJR .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvmkZewqJR .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvmkZewqJR .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-uvmkZewqJR .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvmkZewqJR .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvmkZewqJR .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-uvmkZewqJR .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvmkZewqJR .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvmkZewqJR .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvmkZewqJR .item-title {
  color: #ffffff;
}
.cid-uvmkZewqJR .mbr-date {
  color: #cacaca;
}
.cid-uvmkZewqJR .mbr-desc {
  color: #cacaca;
}
.cid-uvmkZeSaak {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvmkZeSaak .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvmkZeSaak .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-uvmkZeSaak .container {
    padding: 0 16px;
  }
}
.cid-uvmkZeSaak .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvmkZeSaak .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvmkZeSaak .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvmkZeSaak .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvmkZeSaak .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvmkZeSaak .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvmkZeSaak .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvmkZeSaak .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvmkZeSaak .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvmkZeSaak .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-uvmkZeSaak .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvmkZeSaak .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvmkZeSaak .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvmkZeSaak .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvmkZeSaak .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvmkZeSaak .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvmkZeSaak .dragArea.row .form-group .form-control:hover,
.cid-uvmkZeSaak .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvmkZeSaak .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvmkZeSaak .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvmkZeSaak .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvmkZeSaak .mbr-title {
  color: #ffffff;
}
.cid-uvmkZeSaak .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvmkZeSaak .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvmkZeSaak .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvmkZeSaak .list {
  color: #08323C;
}
.cid-uvmkZeSaak label {
  color: #08323C;
}
.cid-uvmkZeSaak H3 {
  color: #000000;
}
.cid-uvmkZeSaak P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvCMtU3Tg0 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvCMtU3Tg0 H1 {
  text-align: center;
}
.cid-uDmJ143YN2 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmJ143YN2 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmJ143YN2 .video-block {
    width: 100% !important;
  }
}
.cid-uvCMtV2uCk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvCMtVUcGg {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvCMtVUcGg .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvCMtVUcGg .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvCMtVUcGg .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvCMtVUcGg .box {
  left: 20%;
}
.cid-uvCMtVUcGg .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvCMtVUcGg .mbr-section-text,
.cid-uvCMtVUcGg .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvCMtVUcGg .text-box {
    display: none;
  }
  .cid-uvCMtVUcGg .mbr-section-title,
  .cid-uvCMtVUcGg .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvCMtVUcGg .box {
    display: none;
  }
  .cid-uvCMtVUcGg .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvCMtVUcGg .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvCMtVUcGg .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvCMtVUcGg .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvCMtVUcGg .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvCMtVUcGg .mbr-section-text DIV {
  text-align: center;
}
.cid-uvCMtWLI1m {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvCMtWLI1m H1 {
  text-align: center;
}
.cid-uvCMtXChqr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvCMtYpVdv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvCMtYpVdv h2 {
  text-align: left;
}
.cid-uvCMtYpVdv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvCMtYpVdv p {
  color: #767676;
  text-align: left;
}
.cid-uvCMtYpVdv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvCMtYpVdv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvCMtYpVdv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvCMtYpVdv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvCMtYpVdv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvCMtYpVdv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvCMtYpVdv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvCMtYpVdv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvCMtYpVdv .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvCMtYpVdv H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvCMtYpVdv P {
  color: #ffffff;
  text-align: left;
}
.cid-uvCMtYpVdv H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvCMtZluG6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvCMtZluG6 H1 {
  color: #000000;
}
.cid-uxkb2B8sWM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkb2B8sWM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkb2B8sWM .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkb2B8sWM .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkb2B8sWM .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkb2B8sWM .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkb2B8sWM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkb2B8sWM .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkb2B8sWM .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkb2B8sWM .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkb2B8sWM .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkb2B8sWM .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-uxkb2B8sWM .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkb2B8sWM .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkb2B8sWM .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkb2B8sWM .mbr-text,
.cid-uxkb2B8sWM .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkb3dSFjt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkb3dSFjt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkb3dSFjt .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkb3dSFjt .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkb3dSFjt .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkb3dSFjt .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkb3dSFjt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkb3dSFjt .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkb3dSFjt .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkb3dSFjt .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkb3dSFjt .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkb3dSFjt .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-uxkb3dSFjt .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkb3dSFjt .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkb3dSFjt .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkb3dSFjt .mbr-text,
.cid-uxkb3dSFjt .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvCMu2hhjU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvCMu2hhjU H1 {
  color: #000000;
}
.cid-uzGujZbUGO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGujZbUGO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGujZbUGO .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGujZbUGO .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGujZbUGO .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGujZbUGO .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGujZbUGO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGujZbUGO .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGujZbUGO .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGujZbUGO .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGujZbUGO .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGujZbUGO .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-uzGujZbUGO .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGujZbUGO .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGujZbUGO .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGujZbUGO .mbr-text,
.cid-uzGujZbUGO .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGukzIRdk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGukzIRdk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGukzIRdk .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGukzIRdk .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGukzIRdk .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGukzIRdk .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGukzIRdk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGukzIRdk .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGukzIRdk .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGukzIRdk .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGukzIRdk .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGukzIRdk .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-uzGukzIRdk .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGukzIRdk .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGukzIRdk .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGukzIRdk .mbr-text,
.cid-uzGukzIRdk .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvCMu5lNpz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvCMu5lNpz H1 {
  color: #000000;
}
.cid-uxkb79gkO4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxkb79gkO4 h2 {
  text-align: left;
}
.cid-uxkb79gkO4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxkb79gkO4 p {
  color: #767676;
  text-align: left;
}
.cid-uxkb79gkO4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxkb79gkO4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxkb79gkO4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxkb79gkO4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxkb79gkO4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxkb79gkO4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxkb79gkO4 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxkb79gkO4 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxkb79gkO4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxkb79gkO4 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxkb79gkO4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxkb612Nnb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxkb612Nnb H1 {
  color: #000000;
}
.cid-uvCMu7e8Cn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvCMu7e8Cn .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvCMu7e8Cn .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvCMu7e8Cn .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvCMu7e8Cn .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvCMu7e8Cn .box {
  right: 20%;
}
.cid-uvCMu7e8Cn .text-box {
  right: 0;
}
.cid-uvCMu7e8Cn .mbr-section-title,
.cid-uvCMu7e8Cn .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvCMu7e8Cn .text-box {
    display: none;
  }
  .cid-uvCMu7e8Cn .mbr-section-title,
  .cid-uvCMu7e8Cn .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvCMu7e8Cn .box {
    display: none;
  }
  .cid-uvCMu7e8Cn .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvCMu7e8Cn .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvCMu7e8Cn .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvCMu7e8Cn .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvCMu7e8Cn .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvCMu7e8Cn .mbr-section-text DIV {
  text-align: center;
}
.cid-uvCMu86d4t {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvCMu8Yb4Q {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvCMu8Yb4Q h2 {
  text-align: left;
}
.cid-uvCMu8Yb4Q h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvCMu8Yb4Q p {
  color: #767676;
  text-align: left;
}
.cid-uvCMu8Yb4Q .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvCMu8Yb4Q .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvCMu8Yb4Q .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvCMu8Yb4Q .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvCMu8Yb4Q .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvCMu8Yb4Q .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvCMu8Yb4Q .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvCMu8Yb4Q .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvCMu8Yb4Q .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvCMu8Yb4Q .mbr-text {
  color: #232323;
}
.cid-uvCMu9Tzpy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvCMu9Tzpy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvCMu9Tzpy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvCMu9Tzpy .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvCMu9Tzpy .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvCMu9Tzpy .container {
    padding: 0 26px;
  }
}
.cid-uvCMu9Tzpy .row {
  justify-content: center;
}
.cid-uvCMu9Tzpy .item {
  margin-bottom: 32px;
}
.cid-uvCMu9Tzpy .item a {
  display: block;
}
.cid-uvCMu9Tzpy .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvCMu9Tzpy .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvCMu9Tzpy .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvCMu9Tzpy .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-uvCMu9Tzpy .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvCMu9Tzpy .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvCMu9Tzpy .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-uvCMu9Tzpy .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvCMu9Tzpy .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvCMu9Tzpy .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvCMu9Tzpy .item-title {
  color: #ffffff;
}
.cid-uvCMu9Tzpy .mbr-date {
  color: #cacaca;
}
.cid-uvCMu9Tzpy .mbr-desc {
  color: #cacaca;
}
.cid-uvCMuaRcNW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvCMuaRcNW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvCMuaRcNW .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-uvCMuaRcNW .container {
    padding: 0 16px;
  }
}
.cid-uvCMuaRcNW .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvCMuaRcNW .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvCMuaRcNW .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvCMuaRcNW .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvCMuaRcNW .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvCMuaRcNW .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvCMuaRcNW .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvCMuaRcNW .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvCMuaRcNW .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvCMuaRcNW .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-uvCMuaRcNW .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvCMuaRcNW .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvCMuaRcNW .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvCMuaRcNW .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvCMuaRcNW .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvCMuaRcNW .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvCMuaRcNW .dragArea.row .form-group .form-control:hover,
.cid-uvCMuaRcNW .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvCMuaRcNW .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvCMuaRcNW .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvCMuaRcNW .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvCMuaRcNW .mbr-title {
  color: #ffffff;
}
.cid-uvCMuaRcNW .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvCMuaRcNW .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvCMuaRcNW .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvCMuaRcNW .list {
  color: #08323C;
}
.cid-uvCMuaRcNW label {
  color: #08323C;
}
.cid-uvCMuaRcNW H3 {
  color: #000000;
}
.cid-uvCMuaRcNW P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvCRMFWEqB {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvCRMFWEqB H1 {
  text-align: center;
}
.cid-uDmJ7G0pdT {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmJ7G0pdT .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmJ7G0pdT .video-block {
    width: 100% !important;
  }
}
.cid-uvCRMGcEU4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvCRMGm0kl {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvCRMGm0kl .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvCRMGm0kl .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvCRMGm0kl .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvCRMGm0kl .box {
  left: 20%;
}
.cid-uvCRMGm0kl .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvCRMGm0kl .mbr-section-text,
.cid-uvCRMGm0kl .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvCRMGm0kl .text-box {
    display: none;
  }
  .cid-uvCRMGm0kl .mbr-section-title,
  .cid-uvCRMGm0kl .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvCRMGm0kl .box {
    display: none;
  }
  .cid-uvCRMGm0kl .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvCRMGm0kl .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvCRMGm0kl .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvCRMGm0kl .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvCRMGm0kl .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvCRMGm0kl .mbr-section-text DIV {
  text-align: center;
}
.cid-uvCRMGyULo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvCRMGyULo H1 {
  text-align: center;
}
.cid-uvCRMGGU0T {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvCRMGQCu3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvCRMGQCu3 h2 {
  text-align: left;
}
.cid-uvCRMGQCu3 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvCRMGQCu3 p {
  color: #767676;
  text-align: left;
}
.cid-uvCRMGQCu3 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvCRMGQCu3 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvCRMGQCu3 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvCRMGQCu3 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvCRMGQCu3 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvCRMGQCu3 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvCRMGQCu3 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvCRMGQCu3 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvCRMGQCu3 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvCRMGQCu3 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvCRMGQCu3 P {
  color: #ffffff;
  text-align: left;
}
.cid-uvCRMGQCu3 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvCRMH4UQ9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvCRMH4UQ9 H1 {
  color: #000000;
}
.cid-uxkbByb8M9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkbByb8M9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkbByb8M9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkbByb8M9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkbByb8M9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkbByb8M9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkbByb8M9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkbByb8M9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkbByb8M9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkbByb8M9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkbByb8M9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkbByb8M9 .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-uxkbByb8M9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkbByb8M9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkbByb8M9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkbByb8M9 .mbr-text,
.cid-uxkbByb8M9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkbCabTKZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkbCabTKZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkbCabTKZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkbCabTKZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkbCabTKZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkbCabTKZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkbCabTKZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkbCabTKZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkbCabTKZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkbCabTKZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkbCabTKZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkbCabTKZ .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-uxkbCabTKZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkbCabTKZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkbCabTKZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkbCabTKZ .mbr-text,
.cid-uxkbCabTKZ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvCRMHX2EY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvCRMHX2EY H1 {
  color: #000000;
}
.cid-uzGuGe4uMC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGuGe4uMC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGuGe4uMC .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGuGe4uMC .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGuGe4uMC .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGuGe4uMC .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGuGe4uMC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGuGe4uMC .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGuGe4uMC .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGuGe4uMC .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGuGe4uMC .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGuGe4uMC .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-uzGuGe4uMC .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGuGe4uMC .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGuGe4uMC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGuGe4uMC .mbr-text,
.cid-uzGuGe4uMC .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGuGSjlys {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGuGSjlys .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGuGSjlys .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGuGSjlys .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGuGSjlys .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGuGSjlys .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGuGSjlys .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGuGSjlys .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGuGSjlys .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGuGSjlys .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGuGSjlys .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGuGSjlys .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-uzGuGSjlys .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGuGSjlys .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGuGSjlys .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGuGSjlys .mbr-text,
.cid-uzGuGSjlys .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvCRMIQzto {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvCRMIQzto H1 {
  color: #000000;
}
.cid-uxkbzUyIQI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxkbzUyIQI h2 {
  text-align: left;
}
.cid-uxkbzUyIQI h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxkbzUyIQI p {
  color: #767676;
  text-align: left;
}
.cid-uxkbzUyIQI .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxkbzUyIQI .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxkbzUyIQI .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxkbzUyIQI .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxkbzUyIQI .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxkbzUyIQI .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxkbzUyIQI .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxkbzUyIQI .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxkbzUyIQI .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxkbzUyIQI .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxkbzUyIQI .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvCRMJhY9s {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvCRMJhY9s .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvCRMJhY9s .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvCRMJhY9s .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvCRMJhY9s .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvCRMJhY9s .box {
  right: 20%;
}
.cid-uvCRMJhY9s .text-box {
  right: 0;
}
.cid-uvCRMJhY9s .mbr-section-title,
.cid-uvCRMJhY9s .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvCRMJhY9s .text-box {
    display: none;
  }
  .cid-uvCRMJhY9s .mbr-section-title,
  .cid-uvCRMJhY9s .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvCRMJhY9s .box {
    display: none;
  }
  .cid-uvCRMJhY9s .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvCRMJhY9s .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvCRMJhY9s .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvCRMJhY9s .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvCRMJhY9s .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvCRMJhY9s .mbr-section-text DIV {
  text-align: center;
}
.cid-uvCRMJvfij {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvCRMJG8Lp {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvCRMJG8Lp h2 {
  text-align: left;
}
.cid-uvCRMJG8Lp h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvCRMJG8Lp p {
  color: #767676;
  text-align: left;
}
.cid-uvCRMJG8Lp .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvCRMJG8Lp .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvCRMJG8Lp .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvCRMJG8Lp .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvCRMJG8Lp .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvCRMJG8Lp .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvCRMJG8Lp .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvCRMJG8Lp .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvCRMJG8Lp .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvCRMJG8Lp .mbr-text {
  color: #232323;
}
.cid-uvCRMJUwdc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvCRMJUwdc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvCRMJUwdc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvCRMJUwdc .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvCRMJUwdc .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvCRMJUwdc .container {
    padding: 0 26px;
  }
}
.cid-uvCRMJUwdc .row {
  justify-content: center;
}
.cid-uvCRMJUwdc .item {
  margin-bottom: 32px;
}
.cid-uvCRMJUwdc .item a {
  display: block;
}
.cid-uvCRMJUwdc .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvCRMJUwdc .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvCRMJUwdc .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvCRMJUwdc .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-uvCRMJUwdc .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvCRMJUwdc .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvCRMJUwdc .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-uvCRMJUwdc .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvCRMJUwdc .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvCRMJUwdc .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvCRMJUwdc .item-title {
  color: #ffffff;
}
.cid-uvCRMJUwdc .mbr-date {
  color: #cacaca;
}
.cid-uvCRMJUwdc .mbr-desc {
  color: #cacaca;
}
.cid-uvCRMK9tOf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvCRMK9tOf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvCRMK9tOf .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-uvCRMK9tOf .container {
    padding: 0 16px;
  }
}
.cid-uvCRMK9tOf .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvCRMK9tOf .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvCRMK9tOf .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvCRMK9tOf .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvCRMK9tOf .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvCRMK9tOf .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvCRMK9tOf .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvCRMK9tOf .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvCRMK9tOf .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvCRMK9tOf .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-uvCRMK9tOf .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvCRMK9tOf .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvCRMK9tOf .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvCRMK9tOf .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvCRMK9tOf .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvCRMK9tOf .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvCRMK9tOf .dragArea.row .form-group .form-control:hover,
.cid-uvCRMK9tOf .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvCRMK9tOf .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvCRMK9tOf .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvCRMK9tOf .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvCRMK9tOf .mbr-title {
  color: #ffffff;
}
.cid-uvCRMK9tOf .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvCRMK9tOf .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvCRMK9tOf .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvCRMK9tOf .list {
  color: #08323C;
}
.cid-uvCRMK9tOf label {
  color: #08323C;
}
.cid-uvCRMK9tOf H3 {
  color: #000000;
}
.cid-uvCRMK9tOf P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvCTcM91qV {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvCTcM91qV H1 {
  text-align: center;
}
.cid-uDmJnr6Deh {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmJnr6Deh .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmJnr6Deh .video-block {
    width: 100% !important;
  }
}
.cid-uvCTcMmdrM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvCTcMwhzG {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvCTcMwhzG .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvCTcMwhzG .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvCTcMwhzG .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvCTcMwhzG .box {
  left: 20%;
}
.cid-uvCTcMwhzG .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvCTcMwhzG .mbr-section-text,
.cid-uvCTcMwhzG .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvCTcMwhzG .text-box {
    display: none;
  }
  .cid-uvCTcMwhzG .mbr-section-title,
  .cid-uvCTcMwhzG .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvCTcMwhzG .box {
    display: none;
  }
  .cid-uvCTcMwhzG .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvCTcMwhzG .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvCTcMwhzG .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvCTcMwhzG .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvCTcMwhzG .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvCTcMwhzG .mbr-section-text DIV {
  text-align: center;
}
.cid-uvCTcMGOrt {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvCTcMGOrt H1 {
  text-align: center;
}
.cid-uvCTcMQDux {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvCTcN0SBz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvCTcN0SBz h2 {
  text-align: left;
}
.cid-uvCTcN0SBz h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvCTcN0SBz p {
  color: #767676;
  text-align: left;
}
.cid-uvCTcN0SBz .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvCTcN0SBz .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvCTcN0SBz .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvCTcN0SBz .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvCTcN0SBz .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvCTcN0SBz .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvCTcN0SBz .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvCTcN0SBz .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvCTcN0SBz .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvCTcN0SBz H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvCTcN0SBz P {
  color: #ffffff;
  text-align: left;
}
.cid-uvCTcN0SBz H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvCTcNfACO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvCTcNfACO H1 {
  color: #000000;
}
.cid-uxkbKPsgTl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkbKPsgTl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkbKPsgTl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkbKPsgTl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkbKPsgTl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkbKPsgTl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkbKPsgTl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkbKPsgTl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkbKPsgTl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkbKPsgTl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkbKPsgTl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkbKPsgTl .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-uxkbKPsgTl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkbKPsgTl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkbKPsgTl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkbKPsgTl .mbr-text,
.cid-uxkbKPsgTl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkbLYOm9A {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkbLYOm9A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkbLYOm9A .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkbLYOm9A .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkbLYOm9A .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkbLYOm9A .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkbLYOm9A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkbLYOm9A .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkbLYOm9A .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkbLYOm9A .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkbLYOm9A .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkbLYOm9A .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-uxkbLYOm9A .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkbLYOm9A .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkbLYOm9A .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkbLYOm9A .mbr-text,
.cid-uxkbLYOm9A .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvCTcO9AjQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvCTcO9AjQ H1 {
  color: #000000;
}
.cid-uzGuUWjOWr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGuUWjOWr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGuUWjOWr .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGuUWjOWr .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGuUWjOWr .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGuUWjOWr .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGuUWjOWr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGuUWjOWr .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGuUWjOWr .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGuUWjOWr .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGuUWjOWr .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGuUWjOWr .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-uzGuUWjOWr .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGuUWjOWr .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGuUWjOWr .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGuUWjOWr .mbr-text,
.cid-uzGuUWjOWr .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGuVDRO4d {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGuVDRO4d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGuVDRO4d .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGuVDRO4d .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGuVDRO4d .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGuVDRO4d .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGuVDRO4d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGuVDRO4d .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGuVDRO4d .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGuVDRO4d .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGuVDRO4d .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGuVDRO4d .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-uzGuVDRO4d .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGuVDRO4d .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGuVDRO4d .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGuVDRO4d .mbr-text,
.cid-uzGuVDRO4d .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvCTcP6kUc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvCTcP6kUc H1 {
  color: #000000;
}
.cid-uxkbOdhpgD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxkbOdhpgD h2 {
  text-align: left;
}
.cid-uxkbOdhpgD h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxkbOdhpgD p {
  color: #767676;
  text-align: left;
}
.cid-uxkbOdhpgD .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxkbOdhpgD .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxkbOdhpgD .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxkbOdhpgD .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxkbOdhpgD .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxkbOdhpgD .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxkbOdhpgD .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxkbOdhpgD .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxkbOdhpgD .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxkbOdhpgD .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxkbOdhpgD .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxkbONgror {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxkbONgror H1 {
  color: #000000;
}
.cid-uvCTcPz7c1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvCTcPz7c1 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvCTcPz7c1 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvCTcPz7c1 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvCTcPz7c1 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvCTcPz7c1 .box {
  right: 20%;
}
.cid-uvCTcPz7c1 .text-box {
  right: 0;
}
.cid-uvCTcPz7c1 .mbr-section-title,
.cid-uvCTcPz7c1 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvCTcPz7c1 .text-box {
    display: none;
  }
  .cid-uvCTcPz7c1 .mbr-section-title,
  .cid-uvCTcPz7c1 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvCTcPz7c1 .box {
    display: none;
  }
  .cid-uvCTcPz7c1 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvCTcPz7c1 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvCTcPz7c1 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvCTcPz7c1 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvCTcPz7c1 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvCTcPz7c1 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvCTcPNbpl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvCTcPY3uP {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvCTcPY3uP h2 {
  text-align: left;
}
.cid-uvCTcPY3uP h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvCTcPY3uP p {
  color: #767676;
  text-align: left;
}
.cid-uvCTcPY3uP .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvCTcPY3uP .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvCTcPY3uP .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvCTcPY3uP .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvCTcPY3uP .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvCTcPY3uP .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvCTcPY3uP .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvCTcPY3uP .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvCTcPY3uP .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvCTcPY3uP .mbr-text {
  color: #232323;
}
.cid-uvCTcQdetu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvCTcQdetu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvCTcQdetu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvCTcQdetu .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvCTcQdetu .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvCTcQdetu .container {
    padding: 0 26px;
  }
}
.cid-uvCTcQdetu .row {
  justify-content: center;
}
.cid-uvCTcQdetu .item {
  margin-bottom: 32px;
}
.cid-uvCTcQdetu .item a {
  display: block;
}
.cid-uvCTcQdetu .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvCTcQdetu .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvCTcQdetu .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvCTcQdetu .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-uvCTcQdetu .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvCTcQdetu .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvCTcQdetu .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-uvCTcQdetu .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvCTcQdetu .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvCTcQdetu .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvCTcQdetu .item-title {
  color: #ffffff;
}
.cid-uvCTcQdetu .mbr-date {
  color: #cacaca;
}
.cid-uvCTcQdetu .mbr-desc {
  color: #cacaca;
}
.cid-uvCTcQrwOb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvCTcQrwOb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvCTcQrwOb .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-uvCTcQrwOb .container {
    padding: 0 16px;
  }
}
.cid-uvCTcQrwOb .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvCTcQrwOb .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvCTcQrwOb .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvCTcQrwOb .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvCTcQrwOb .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvCTcQrwOb .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvCTcQrwOb .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvCTcQrwOb .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvCTcQrwOb .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvCTcQrwOb .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-uvCTcQrwOb .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvCTcQrwOb .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvCTcQrwOb .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvCTcQrwOb .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvCTcQrwOb .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvCTcQrwOb .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvCTcQrwOb .dragArea.row .form-group .form-control:hover,
.cid-uvCTcQrwOb .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvCTcQrwOb .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvCTcQrwOb .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvCTcQrwOb .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvCTcQrwOb .mbr-title {
  color: #ffffff;
}
.cid-uvCTcQrwOb .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvCTcQrwOb .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvCTcQrwOb .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvCTcQrwOb .list {
  color: #08323C;
}
.cid-uvCTcQrwOb label {
  color: #08323C;
}
.cid-uvCTcQrwOb H3 {
  color: #000000;
}
.cid-uvCTcQrwOb P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvCUoIDD5M {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvCUoIDD5M H1 {
  text-align: center;
}
.cid-uDmJqKzE5x {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmJqKzE5x .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmJqKzE5x .video-block {
    width: 100% !important;
  }
}
.cid-uvCUoIVGqg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvCUoJ73jP {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvCUoJ73jP .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvCUoJ73jP .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvCUoJ73jP .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvCUoJ73jP .box {
  left: 20%;
}
.cid-uvCUoJ73jP .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvCUoJ73jP .mbr-section-text,
.cid-uvCUoJ73jP .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvCUoJ73jP .text-box {
    display: none;
  }
  .cid-uvCUoJ73jP .mbr-section-title,
  .cid-uvCUoJ73jP .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvCUoJ73jP .box {
    display: none;
  }
  .cid-uvCUoJ73jP .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvCUoJ73jP .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvCUoJ73jP .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvCUoJ73jP .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvCUoJ73jP .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvCUoJ73jP .mbr-section-text DIV {
  text-align: center;
}
.cid-uvCUoJlUT2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvCUoJlUT2 H1 {
  text-align: center;
}
.cid-uvCUoJuSUJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvCUoJCikL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvCUoJCikL h2 {
  text-align: left;
}
.cid-uvCUoJCikL h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvCUoJCikL p {
  color: #767676;
  text-align: left;
}
.cid-uvCUoJCikL .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvCUoJCikL .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvCUoJCikL .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvCUoJCikL .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvCUoJCikL .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvCUoJCikL .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvCUoJCikL .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvCUoJCikL .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvCUoJCikL .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvCUoJCikL H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvCUoJCikL P {
  color: #ffffff;
  text-align: left;
}
.cid-uvCUoJCikL H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvCUoJQZFA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvCUoJQZFA H1 {
  color: #000000;
}
.cid-uxkbZW3iVM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkbZW3iVM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkbZW3iVM .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkbZW3iVM .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkbZW3iVM .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkbZW3iVM .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkbZW3iVM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkbZW3iVM .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkbZW3iVM .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkbZW3iVM .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkbZW3iVM .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkbZW3iVM .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-uxkbZW3iVM .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkbZW3iVM .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkbZW3iVM .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkbZW3iVM .mbr-text,
.cid-uxkbZW3iVM .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkc0Ffp3K {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkc0Ffp3K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkc0Ffp3K .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkc0Ffp3K .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkc0Ffp3K .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkc0Ffp3K .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkc0Ffp3K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkc0Ffp3K .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkc0Ffp3K .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkc0Ffp3K .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkc0Ffp3K .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkc0Ffp3K .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-uxkc0Ffp3K .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkc0Ffp3K .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkc0Ffp3K .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkc0Ffp3K .mbr-text,
.cid-uxkc0Ffp3K .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvCUoKOgA5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvCUoKOgA5 H1 {
  color: #000000;
}
.cid-uzGveVtKHz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGveVtKHz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGveVtKHz .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGveVtKHz .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGveVtKHz .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGveVtKHz .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGveVtKHz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGveVtKHz .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGveVtKHz .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGveVtKHz .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGveVtKHz .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGveVtKHz .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-uzGveVtKHz .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGveVtKHz .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGveVtKHz .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGveVtKHz .mbr-text,
.cid-uzGveVtKHz .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGvfJ72gt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGvfJ72gt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGvfJ72gt .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGvfJ72gt .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGvfJ72gt .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGvfJ72gt .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGvfJ72gt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGvfJ72gt .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGvfJ72gt .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGvfJ72gt .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGvfJ72gt .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGvfJ72gt .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-uzGvfJ72gt .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGvfJ72gt .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGvfJ72gt .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGvfJ72gt .mbr-text,
.cid-uzGvfJ72gt .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvCUoLNrsP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvCUoLNrsP H1 {
  color: #000000;
}
.cid-uxkbWGh03u {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxkbWGh03u h2 {
  text-align: left;
}
.cid-uxkbWGh03u h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxkbWGh03u p {
  color: #767676;
  text-align: left;
}
.cid-uxkbWGh03u .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxkbWGh03u .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxkbWGh03u .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxkbWGh03u .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxkbWGh03u .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxkbWGh03u .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxkbWGh03u .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxkbWGh03u .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxkbWGh03u .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxkbWGh03u .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxkbWGh03u .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxkbXHeA2c {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxkbXHeA2c H1 {
  color: #000000;
}
.cid-uvCUoMfwuN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvCUoMfwuN .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvCUoMfwuN .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvCUoMfwuN .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvCUoMfwuN .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvCUoMfwuN .box {
  right: 20%;
}
.cid-uvCUoMfwuN .text-box {
  right: 0;
}
.cid-uvCUoMfwuN .mbr-section-title,
.cid-uvCUoMfwuN .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvCUoMfwuN .text-box {
    display: none;
  }
  .cid-uvCUoMfwuN .mbr-section-title,
  .cid-uvCUoMfwuN .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvCUoMfwuN .box {
    display: none;
  }
  .cid-uvCUoMfwuN .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvCUoMfwuN .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvCUoMfwuN .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvCUoMfwuN .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvCUoMfwuN .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvCUoMfwuN .mbr-section-text DIV {
  text-align: center;
}
.cid-uvCUoMs8pu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvCUoMFYfl {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvCUoMFYfl h2 {
  text-align: left;
}
.cid-uvCUoMFYfl h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvCUoMFYfl p {
  color: #767676;
  text-align: left;
}
.cid-uvCUoMFYfl .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvCUoMFYfl .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvCUoMFYfl .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvCUoMFYfl .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvCUoMFYfl .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvCUoMFYfl .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvCUoMFYfl .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvCUoMFYfl .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvCUoMFYfl .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvCUoMFYfl .mbr-text {
  color: #232323;
}
.cid-uvCUoMTRw7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvCUoMTRw7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvCUoMTRw7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvCUoMTRw7 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvCUoMTRw7 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvCUoMTRw7 .container {
    padding: 0 26px;
  }
}
.cid-uvCUoMTRw7 .row {
  justify-content: center;
}
.cid-uvCUoMTRw7 .item {
  margin-bottom: 32px;
}
.cid-uvCUoMTRw7 .item a {
  display: block;
}
.cid-uvCUoMTRw7 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvCUoMTRw7 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvCUoMTRw7 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvCUoMTRw7 .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-uvCUoMTRw7 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvCUoMTRw7 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvCUoMTRw7 .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-uvCUoMTRw7 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvCUoMTRw7 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvCUoMTRw7 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvCUoMTRw7 .item-title {
  color: #ffffff;
}
.cid-uvCUoMTRw7 .mbr-date {
  color: #cacaca;
}
.cid-uvCUoMTRw7 .mbr-desc {
  color: #cacaca;
}
.cid-uvCUoNaD8z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvCUoNaD8z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvCUoNaD8z .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-uvCUoNaD8z .container {
    padding: 0 16px;
  }
}
.cid-uvCUoNaD8z .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvCUoNaD8z .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvCUoNaD8z .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvCUoNaD8z .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvCUoNaD8z .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvCUoNaD8z .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvCUoNaD8z .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvCUoNaD8z .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvCUoNaD8z .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvCUoNaD8z .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-uvCUoNaD8z .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvCUoNaD8z .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvCUoNaD8z .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvCUoNaD8z .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvCUoNaD8z .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvCUoNaD8z .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvCUoNaD8z .dragArea.row .form-group .form-control:hover,
.cid-uvCUoNaD8z .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvCUoNaD8z .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvCUoNaD8z .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvCUoNaD8z .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvCUoNaD8z .mbr-title {
  color: #ffffff;
}
.cid-uvCUoNaD8z .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvCUoNaD8z .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvCUoNaD8z .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvCUoNaD8z .list {
  color: #08323C;
}
.cid-uvCUoNaD8z label {
  color: #08323C;
}
.cid-uvCUoNaD8z H3 {
  color: #000000;
}
.cid-uvCUoNaD8z P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvCXENrp5H {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvCXENrp5H H1 {
  text-align: center;
}
.cid-uDmJtfBTMF {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmJtfBTMF .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmJtfBTMF .video-block {
    width: 100% !important;
  }
}
.cid-uvCXENGqEg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvCXENQFKe {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvCXENQFKe .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvCXENQFKe .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvCXENQFKe .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvCXENQFKe .box {
  left: 20%;
}
.cid-uvCXENQFKe .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvCXENQFKe .mbr-section-text,
.cid-uvCXENQFKe .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvCXENQFKe .text-box {
    display: none;
  }
  .cid-uvCXENQFKe .mbr-section-title,
  .cid-uvCXENQFKe .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvCXENQFKe .box {
    display: none;
  }
  .cid-uvCXENQFKe .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvCXENQFKe .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvCXENQFKe .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvCXENQFKe .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvCXENQFKe .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvCXENQFKe .mbr-section-text DIV {
  text-align: center;
}
.cid-uvCXEO1LHJ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvCXEO1LHJ H1 {
  text-align: center;
}
.cid-uvCXEOc44Y {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvCXEOpmIz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvCXEOpmIz h2 {
  text-align: left;
}
.cid-uvCXEOpmIz h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvCXEOpmIz p {
  color: #767676;
  text-align: left;
}
.cid-uvCXEOpmIz .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvCXEOpmIz .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvCXEOpmIz .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvCXEOpmIz .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvCXEOpmIz .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvCXEOpmIz .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvCXEOpmIz .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvCXEOpmIz .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvCXEOpmIz .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvCXEOpmIz H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvCXEOpmIz P {
  color: #ffffff;
  text-align: left;
}
.cid-uvCXEOpmIz H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvCXEOEMbX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvCXEOEMbX H1 {
  color: #000000;
}
.cid-uxkc8gENRh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkc8gENRh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkc8gENRh .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkc8gENRh .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkc8gENRh .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkc8gENRh .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkc8gENRh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkc8gENRh .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkc8gENRh .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkc8gENRh .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkc8gENRh .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkc8gENRh .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-uxkc8gENRh .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkc8gENRh .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkc8gENRh .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkc8gENRh .mbr-text,
.cid-uxkc8gENRh .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkc8X2rYP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkc8X2rYP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkc8X2rYP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkc8X2rYP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkc8X2rYP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkc8X2rYP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkc8X2rYP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkc8X2rYP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkc8X2rYP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkc8X2rYP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkc8X2rYP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkc8X2rYP .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-uxkc8X2rYP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkc8X2rYP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkc8X2rYP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkc8X2rYP .mbr-text,
.cid-uxkc8X2rYP .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvCXEPxnSd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvCXEPxnSd H1 {
  color: #000000;
}
.cid-uzGvwnkvN3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGvwnkvN3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGvwnkvN3 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGvwnkvN3 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGvwnkvN3 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGvwnkvN3 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGvwnkvN3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGvwnkvN3 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGvwnkvN3 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGvwnkvN3 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGvwnkvN3 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGvwnkvN3 .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-uzGvwnkvN3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGvwnkvN3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGvwnkvN3 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGvwnkvN3 .mbr-text,
.cid-uzGvwnkvN3 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGvx7E5j2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGvx7E5j2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGvx7E5j2 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGvx7E5j2 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGvx7E5j2 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGvx7E5j2 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGvx7E5j2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGvx7E5j2 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGvx7E5j2 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGvx7E5j2 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGvx7E5j2 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGvx7E5j2 .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-uzGvx7E5j2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGvx7E5j2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGvx7E5j2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGvx7E5j2 .mbr-text,
.cid-uzGvx7E5j2 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvCXEQvnRB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvCXEQvnRB H1 {
  color: #000000;
}
.cid-uxkcbYqoUz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxkcbYqoUz h2 {
  text-align: left;
}
.cid-uxkcbYqoUz h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxkcbYqoUz p {
  color: #767676;
  text-align: left;
}
.cid-uxkcbYqoUz .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxkcbYqoUz .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxkcbYqoUz .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxkcbYqoUz .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxkcbYqoUz .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxkcbYqoUz .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxkcbYqoUz .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxkcbYqoUz .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxkcbYqoUz .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxkcbYqoUz .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxkcbYqoUz .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxkccXgS9N {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxkccXgS9N H1 {
  color: #000000;
}
.cid-uvCXEQXcsd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvCXEQXcsd .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvCXEQXcsd .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvCXEQXcsd .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvCXEQXcsd .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvCXEQXcsd .box {
  right: 20%;
}
.cid-uvCXEQXcsd .text-box {
  right: 0;
}
.cid-uvCXEQXcsd .mbr-section-title,
.cid-uvCXEQXcsd .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvCXEQXcsd .text-box {
    display: none;
  }
  .cid-uvCXEQXcsd .mbr-section-title,
  .cid-uvCXEQXcsd .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvCXEQXcsd .box {
    display: none;
  }
  .cid-uvCXEQXcsd .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvCXEQXcsd .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvCXEQXcsd .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvCXEQXcsd .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvCXEQXcsd .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvCXEQXcsd .mbr-section-text DIV {
  text-align: center;
}
.cid-uvCXERbSxQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvCXERqnH4 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvCXERqnH4 h2 {
  text-align: left;
}
.cid-uvCXERqnH4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvCXERqnH4 p {
  color: #767676;
  text-align: left;
}
.cid-uvCXERqnH4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvCXERqnH4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvCXERqnH4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvCXERqnH4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvCXERqnH4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvCXERqnH4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvCXERqnH4 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvCXERqnH4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvCXERqnH4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvCXERqnH4 .mbr-text {
  color: #232323;
}
.cid-uvCXERHQWu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvCXERHQWu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvCXERHQWu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvCXERHQWu .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvCXERHQWu .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvCXERHQWu .container {
    padding: 0 26px;
  }
}
.cid-uvCXERHQWu .row {
  justify-content: center;
}
.cid-uvCXERHQWu .item {
  margin-bottom: 32px;
}
.cid-uvCXERHQWu .item a {
  display: block;
}
.cid-uvCXERHQWu .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvCXERHQWu .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvCXERHQWu .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvCXERHQWu .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-uvCXERHQWu .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvCXERHQWu .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvCXERHQWu .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-uvCXERHQWu .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvCXERHQWu .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvCXERHQWu .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvCXERHQWu .item-title {
  color: #ffffff;
}
.cid-uvCXERHQWu .mbr-date {
  color: #cacaca;
}
.cid-uvCXERHQWu .mbr-desc {
  color: #cacaca;
}
.cid-uvCXERWJcX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvCXERWJcX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvCXERWJcX .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-uvCXERWJcX .container {
    padding: 0 16px;
  }
}
.cid-uvCXERWJcX .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvCXERWJcX .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvCXERWJcX .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvCXERWJcX .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvCXERWJcX .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvCXERWJcX .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvCXERWJcX .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvCXERWJcX .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvCXERWJcX .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvCXERWJcX .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-uvCXERWJcX .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvCXERWJcX .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvCXERWJcX .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvCXERWJcX .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvCXERWJcX .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvCXERWJcX .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvCXERWJcX .dragArea.row .form-group .form-control:hover,
.cid-uvCXERWJcX .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvCXERWJcX .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvCXERWJcX .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvCXERWJcX .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvCXERWJcX .mbr-title {
  color: #ffffff;
}
.cid-uvCXERWJcX .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvCXERWJcX .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvCXERWJcX .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvCXERWJcX .list {
  color: #08323C;
}
.cid-uvCXERWJcX label {
  color: #08323C;
}
.cid-uvCXERWJcX H3 {
  color: #000000;
}
.cid-uvCXERWJcX P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvD05w99Ok {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvD05w99Ok H1 {
  text-align: center;
}
.cid-uDmJvynu4K {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmJvynu4K .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmJvynu4K .video-block {
    width: 100% !important;
  }
}
.cid-uvD05wnrtW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvD05wyZF9 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvD05wyZF9 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvD05wyZF9 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvD05wyZF9 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvD05wyZF9 .box {
  left: 20%;
}
.cid-uvD05wyZF9 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvD05wyZF9 .mbr-section-text,
.cid-uvD05wyZF9 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvD05wyZF9 .text-box {
    display: none;
  }
  .cid-uvD05wyZF9 .mbr-section-title,
  .cid-uvD05wyZF9 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvD05wyZF9 .box {
    display: none;
  }
  .cid-uvD05wyZF9 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvD05wyZF9 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvD05wyZF9 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvD05wyZF9 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvD05wyZF9 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvD05wyZF9 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvD05wJrLL {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvD05wJrLL H1 {
  text-align: center;
}
.cid-uvD05wVzWd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvD05x8OhH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvD05x8OhH h2 {
  text-align: left;
}
.cid-uvD05x8OhH h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvD05x8OhH p {
  color: #767676;
  text-align: left;
}
.cid-uvD05x8OhH .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvD05x8OhH .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvD05x8OhH .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvD05x8OhH .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvD05x8OhH .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvD05x8OhH .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvD05x8OhH .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvD05x8OhH .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvD05x8OhH .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvD05x8OhH H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvD05x8OhH P {
  color: #ffffff;
  text-align: left;
}
.cid-uvD05x8OhH H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvD05xnOPo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvD05xnOPo H1 {
  color: #000000;
}
.cid-uxkdrSqrSW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkdrSqrSW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkdrSqrSW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkdrSqrSW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkdrSqrSW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkdrSqrSW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkdrSqrSW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkdrSqrSW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkdrSqrSW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkdrSqrSW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkdrSqrSW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkdrSqrSW .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-uxkdrSqrSW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkdrSqrSW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkdrSqrSW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkdrSqrSW .mbr-text,
.cid-uxkdrSqrSW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkdsv3ifI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkdsv3ifI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkdsv3ifI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkdsv3ifI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkdsv3ifI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkdsv3ifI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkdsv3ifI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkdsv3ifI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkdsv3ifI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkdsv3ifI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkdsv3ifI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkdsv3ifI .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-uxkdsv3ifI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkdsv3ifI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkdsv3ifI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkdsv3ifI .mbr-text,
.cid-uxkdsv3ifI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvD05yln0e {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvD05yln0e H1 {
  color: #000000;
}
.cid-uzGvLklWKT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGvLklWKT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGvLklWKT .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGvLklWKT .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGvLklWKT .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGvLklWKT .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGvLklWKT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGvLklWKT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGvLklWKT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGvLklWKT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGvLklWKT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGvLklWKT .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-uzGvLklWKT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGvLklWKT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGvLklWKT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGvLklWKT .mbr-text,
.cid-uzGvLklWKT .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGvLXcNEh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGvLXcNEh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGvLXcNEh .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGvLXcNEh .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGvLXcNEh .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGvLXcNEh .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGvLXcNEh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGvLXcNEh .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGvLXcNEh .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGvLXcNEh .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGvLXcNEh .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGvLXcNEh .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-uzGvLXcNEh .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGvLXcNEh .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGvLXcNEh .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGvLXcNEh .mbr-text,
.cid-uzGvLXcNEh .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvD05zreGN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvD05zreGN H1 {
  color: #000000;
}
.cid-uxkdqOTEI1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxkdqOTEI1 h2 {
  text-align: left;
}
.cid-uxkdqOTEI1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxkdqOTEI1 p {
  color: #767676;
  text-align: left;
}
.cid-uxkdqOTEI1 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxkdqOTEI1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxkdqOTEI1 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxkdqOTEI1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxkdqOTEI1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxkdqOTEI1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxkdqOTEI1 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxkdqOTEI1 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxkdqOTEI1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxkdqOTEI1 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxkdqOTEI1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvD05A21f7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvD05A21f7 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvD05A21f7 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvD05A21f7 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvD05A21f7 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvD05A21f7 .box {
  right: 20%;
}
.cid-uvD05A21f7 .text-box {
  right: 0;
}
.cid-uvD05A21f7 .mbr-section-title,
.cid-uvD05A21f7 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvD05A21f7 .text-box {
    display: none;
  }
  .cid-uvD05A21f7 .mbr-section-title,
  .cid-uvD05A21f7 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvD05A21f7 .box {
    display: none;
  }
  .cid-uvD05A21f7 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvD05A21f7 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvD05A21f7 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvD05A21f7 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvD05A21f7 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvD05A21f7 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvD05AmWRm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvD05AEGD4 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvD05AEGD4 h2 {
  text-align: left;
}
.cid-uvD05AEGD4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvD05AEGD4 p {
  color: #767676;
  text-align: left;
}
.cid-uvD05AEGD4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvD05AEGD4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvD05AEGD4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvD05AEGD4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvD05AEGD4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvD05AEGD4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvD05AEGD4 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvD05AEGD4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvD05AEGD4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvD05AEGD4 .mbr-text {
  color: #232323;
}
.cid-uvD05B7zKg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvD05B7zKg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvD05B7zKg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvD05B7zKg .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvD05B7zKg .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvD05B7zKg .container {
    padding: 0 26px;
  }
}
.cid-uvD05B7zKg .row {
  justify-content: center;
}
.cid-uvD05B7zKg .item {
  margin-bottom: 32px;
}
.cid-uvD05B7zKg .item a {
  display: block;
}
.cid-uvD05B7zKg .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvD05B7zKg .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvD05B7zKg .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvD05B7zKg .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-uvD05B7zKg .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvD05B7zKg .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvD05B7zKg .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-uvD05B7zKg .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvD05B7zKg .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvD05B7zKg .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvD05B7zKg .item-title {
  color: #ffffff;
}
.cid-uvD05B7zKg .mbr-date {
  color: #cacaca;
}
.cid-uvD05B7zKg .mbr-desc {
  color: #cacaca;
}
.cid-uvD05Btsdp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvD05Btsdp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvD05Btsdp .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-uvD05Btsdp .container {
    padding: 0 16px;
  }
}
.cid-uvD05Btsdp .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvD05Btsdp .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvD05Btsdp .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvD05Btsdp .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvD05Btsdp .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvD05Btsdp .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvD05Btsdp .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvD05Btsdp .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvD05Btsdp .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvD05Btsdp .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-uvD05Btsdp .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvD05Btsdp .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvD05Btsdp .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvD05Btsdp .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvD05Btsdp .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvD05Btsdp .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvD05Btsdp .dragArea.row .form-group .form-control:hover,
.cid-uvD05Btsdp .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvD05Btsdp .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvD05Btsdp .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvD05Btsdp .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvD05Btsdp .mbr-title {
  color: #ffffff;
}
.cid-uvD05Btsdp .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvD05Btsdp .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvD05Btsdp .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvD05Btsdp .list {
  color: #08323C;
}
.cid-uvD05Btsdp label {
  color: #08323C;
}
.cid-uvD05Btsdp H3 {
  color: #000000;
}
.cid-uvD05Btsdp P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvD2SdSCCY {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvD2SdSCCY H1 {
  text-align: center;
}
.cid-uDmJyaVKC7 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmJyaVKC7 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmJyaVKC7 .video-block {
    width: 100% !important;
  }
}
.cid-uvD2SeeZtL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvD2Seuk5O {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvD2Seuk5O .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvD2Seuk5O .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvD2Seuk5O .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvD2Seuk5O .box {
  left: 20%;
}
.cid-uvD2Seuk5O .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvD2Seuk5O .mbr-section-text,
.cid-uvD2Seuk5O .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvD2Seuk5O .text-box {
    display: none;
  }
  .cid-uvD2Seuk5O .mbr-section-title,
  .cid-uvD2Seuk5O .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvD2Seuk5O .box {
    display: none;
  }
  .cid-uvD2Seuk5O .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvD2Seuk5O .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvD2Seuk5O .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvD2Seuk5O .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvD2Seuk5O .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvD2Seuk5O .mbr-section-text DIV {
  text-align: center;
}
.cid-uvD2SeFl1J {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvD2SeFl1J H1 {
  text-align: center;
}
.cid-uvD2SeOkQM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvD2SeYs4W {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvD2SeYs4W h2 {
  text-align: left;
}
.cid-uvD2SeYs4W h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvD2SeYs4W p {
  color: #767676;
  text-align: left;
}
.cid-uvD2SeYs4W .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvD2SeYs4W .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvD2SeYs4W .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvD2SeYs4W .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvD2SeYs4W .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvD2SeYs4W .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvD2SeYs4W .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvD2SeYs4W .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvD2SeYs4W .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvD2SeYs4W H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvD2SeYs4W P {
  color: #ffffff;
  text-align: left;
}
.cid-uvD2SeYs4W H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvD2Sfchie {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvD2Sfchie H1 {
  color: #000000;
}
.cid-uxkdynoWYN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkdynoWYN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkdynoWYN .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkdynoWYN .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkdynoWYN .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkdynoWYN .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkdynoWYN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkdynoWYN .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkdynoWYN .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkdynoWYN .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkdynoWYN .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkdynoWYN .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-uxkdynoWYN .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkdynoWYN .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkdynoWYN .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkdynoWYN .mbr-text,
.cid-uxkdynoWYN .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkdz0eqnD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkdz0eqnD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkdz0eqnD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkdz0eqnD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkdz0eqnD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkdz0eqnD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkdz0eqnD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkdz0eqnD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkdz0eqnD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkdz0eqnD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkdz0eqnD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkdz0eqnD .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-uxkdz0eqnD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkdz0eqnD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkdz0eqnD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkdz0eqnD .mbr-text,
.cid-uxkdz0eqnD .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvD2Sg8b6i {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvD2Sg8b6i H1 {
  color: #000000;
}
.cid-uzGw64cB9C {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGw64cB9C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGw64cB9C .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGw64cB9C .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGw64cB9C .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGw64cB9C .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGw64cB9C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGw64cB9C .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGw64cB9C .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGw64cB9C .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGw64cB9C .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGw64cB9C .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-uzGw64cB9C .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGw64cB9C .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGw64cB9C .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGw64cB9C .mbr-text,
.cid-uzGw64cB9C .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGw6FrUBG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGw6FrUBG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGw6FrUBG .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGw6FrUBG .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGw6FrUBG .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGw6FrUBG .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGw6FrUBG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGw6FrUBG .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGw6FrUBG .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGw6FrUBG .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGw6FrUBG .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGw6FrUBG .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-uzGw6FrUBG .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGw6FrUBG .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGw6FrUBG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGw6FrUBG .mbr-text,
.cid-uzGw6FrUBG .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvD2ShcNfn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvD2ShcNfn H1 {
  color: #000000;
}
.cid-uxkdBCe59W {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxkdBCe59W h2 {
  text-align: left;
}
.cid-uxkdBCe59W h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxkdBCe59W p {
  color: #767676;
  text-align: left;
}
.cid-uxkdBCe59W .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxkdBCe59W .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxkdBCe59W .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxkdBCe59W .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxkdBCe59W .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxkdBCe59W .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxkdBCe59W .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxkdBCe59W .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxkdBCe59W .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxkdBCe59W .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxkdBCe59W .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvD2ShGc4a {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvD2ShGc4a .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvD2ShGc4a .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvD2ShGc4a .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvD2ShGc4a .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvD2ShGc4a .box {
  right: 20%;
}
.cid-uvD2ShGc4a .text-box {
  right: 0;
}
.cid-uvD2ShGc4a .mbr-section-title,
.cid-uvD2ShGc4a .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvD2ShGc4a .text-box {
    display: none;
  }
  .cid-uvD2ShGc4a .mbr-section-title,
  .cid-uvD2ShGc4a .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvD2ShGc4a .box {
    display: none;
  }
  .cid-uvD2ShGc4a .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvD2ShGc4a .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvD2ShGc4a .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvD2ShGc4a .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvD2ShGc4a .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvD2ShGc4a .mbr-section-text DIV {
  text-align: center;
}
.cid-uvD2ShT3du {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvD2Si6RgD {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvD2Si6RgD h2 {
  text-align: left;
}
.cid-uvD2Si6RgD h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvD2Si6RgD p {
  color: #767676;
  text-align: left;
}
.cid-uvD2Si6RgD .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvD2Si6RgD .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvD2Si6RgD .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvD2Si6RgD .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvD2Si6RgD .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvD2Si6RgD .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvD2Si6RgD .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvD2Si6RgD .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvD2Si6RgD .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvD2Si6RgD .mbr-text {
  color: #232323;
}
.cid-uvD2SilwIY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvD2SilwIY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvD2SilwIY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvD2SilwIY .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvD2SilwIY .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvD2SilwIY .container {
    padding: 0 26px;
  }
}
.cid-uvD2SilwIY .row {
  justify-content: center;
}
.cid-uvD2SilwIY .item {
  margin-bottom: 32px;
}
.cid-uvD2SilwIY .item a {
  display: block;
}
.cid-uvD2SilwIY .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvD2SilwIY .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvD2SilwIY .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvD2SilwIY .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-uvD2SilwIY .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvD2SilwIY .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvD2SilwIY .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-uvD2SilwIY .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvD2SilwIY .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvD2SilwIY .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvD2SilwIY .item-title {
  color: #ffffff;
}
.cid-uvD2SilwIY .mbr-date {
  color: #cacaca;
}
.cid-uvD2SilwIY .mbr-desc {
  color: #cacaca;
}
.cid-uvD2SiD9Gs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvD2SiD9Gs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvD2SiD9Gs .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-uvD2SiD9Gs .container {
    padding: 0 16px;
  }
}
.cid-uvD2SiD9Gs .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvD2SiD9Gs .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvD2SiD9Gs .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvD2SiD9Gs .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvD2SiD9Gs .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvD2SiD9Gs .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvD2SiD9Gs .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvD2SiD9Gs .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvD2SiD9Gs .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvD2SiD9Gs .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-uvD2SiD9Gs .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvD2SiD9Gs .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvD2SiD9Gs .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvD2SiD9Gs .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvD2SiD9Gs .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvD2SiD9Gs .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvD2SiD9Gs .dragArea.row .form-group .form-control:hover,
.cid-uvD2SiD9Gs .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvD2SiD9Gs .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvD2SiD9Gs .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvD2SiD9Gs .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvD2SiD9Gs .mbr-title {
  color: #ffffff;
}
.cid-uvD2SiD9Gs .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvD2SiD9Gs .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvD2SiD9Gs .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvD2SiD9Gs .list {
  color: #08323C;
}
.cid-uvD2SiD9Gs label {
  color: #08323C;
}
.cid-uvD2SiD9Gs H3 {
  color: #000000;
}
.cid-uvD2SiD9Gs P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvD4VVkC9x {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvD4VVkC9x H1 {
  text-align: center;
}
.cid-uDmJByiBGi {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmJByiBGi .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmJByiBGi .video-block {
    width: 100% !important;
  }
}
.cid-uvD4VVz7iS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvD4VVJJVa {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvD4VVJJVa .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvD4VVJJVa .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvD4VVJJVa .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvD4VVJJVa .box {
  left: 20%;
}
.cid-uvD4VVJJVa .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvD4VVJJVa .mbr-section-text,
.cid-uvD4VVJJVa .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvD4VVJJVa .text-box {
    display: none;
  }
  .cid-uvD4VVJJVa .mbr-section-title,
  .cid-uvD4VVJJVa .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvD4VVJJVa .box {
    display: none;
  }
  .cid-uvD4VVJJVa .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvD4VVJJVa .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvD4VVJJVa .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvD4VVJJVa .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvD4VVJJVa .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvD4VVJJVa .mbr-section-text DIV {
  text-align: center;
}
.cid-uvD4VVSfKj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvD4VVSfKj H1 {
  text-align: center;
}
.cid-uvD4VW3NPE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvD4VWdr1R {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvD4VWdr1R h2 {
  text-align: left;
}
.cid-uvD4VWdr1R h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvD4VWdr1R p {
  color: #767676;
  text-align: left;
}
.cid-uvD4VWdr1R .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvD4VWdr1R .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvD4VWdr1R .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvD4VWdr1R .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvD4VWdr1R .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvD4VWdr1R .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvD4VWdr1R .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvD4VWdr1R .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvD4VWdr1R .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvD4VWdr1R H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvD4VWdr1R P {
  color: #ffffff;
  text-align: left;
}
.cid-uvD4VWdr1R H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvD4VWri9m {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvD4VWri9m H1 {
  color: #000000;
}
.cid-uxkdJxogxz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkdJxogxz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkdJxogxz .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkdJxogxz .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkdJxogxz .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkdJxogxz .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkdJxogxz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkdJxogxz .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkdJxogxz .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkdJxogxz .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkdJxogxz .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkdJxogxz .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-uxkdJxogxz .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkdJxogxz .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkdJxogxz .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkdJxogxz .mbr-text,
.cid-uxkdJxogxz .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkdIW2SCP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkdIW2SCP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkdIW2SCP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkdIW2SCP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkdIW2SCP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkdIW2SCP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkdIW2SCP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkdIW2SCP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkdIW2SCP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkdIW2SCP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkdIW2SCP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkdIW2SCP .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-uxkdIW2SCP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkdIW2SCP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkdIW2SCP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkdIW2SCP .mbr-text,
.cid-uxkdIW2SCP .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvD4VXkOVL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvD4VXkOVL H1 {
  color: #000000;
}
.cid-uzGwmL6dum {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGwmL6dum .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGwmL6dum .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGwmL6dum .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGwmL6dum .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGwmL6dum .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGwmL6dum .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGwmL6dum .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGwmL6dum .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGwmL6dum .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGwmL6dum .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGwmL6dum .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-uzGwmL6dum .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGwmL6dum .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGwmL6dum .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGwmL6dum .mbr-text,
.cid-uzGwmL6dum .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGwnml7LO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGwnml7LO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGwnml7LO .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGwnml7LO .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGwnml7LO .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGwnml7LO .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGwnml7LO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGwnml7LO .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGwnml7LO .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGwnml7LO .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGwnml7LO .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGwnml7LO .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-uzGwnml7LO .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGwnml7LO .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGwnml7LO .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGwnml7LO .mbr-text,
.cid-uzGwnml7LO .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvD4VYgtXq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvD4VYgtXq H1 {
  color: #000000;
}
.cid-uxkdHM0Anp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uxkdHM0Anp h2 {
  text-align: left;
}
.cid-uxkdHM0Anp h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uxkdHM0Anp p {
  color: #767676;
  text-align: left;
}
.cid-uxkdHM0Anp .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uxkdHM0Anp .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uxkdHM0Anp .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uxkdHM0Anp .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uxkdHM0Anp .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uxkdHM0Anp .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uxkdHM0Anp .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uxkdHM0Anp .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uxkdHM0Anp .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uxkdHM0Anp .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uxkdHM0Anp .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOdOtu3GC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOdOtu3GC H1 {
  color: #000000;
}
.cid-uvD4VYLSy8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvD4VYLSy8 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvD4VYLSy8 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvD4VYLSy8 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvD4VYLSy8 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvD4VYLSy8 .box {
  right: 20%;
}
.cid-uvD4VYLSy8 .text-box {
  right: 0;
}
.cid-uvD4VYLSy8 .mbr-section-title,
.cid-uvD4VYLSy8 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvD4VYLSy8 .text-box {
    display: none;
  }
  .cid-uvD4VYLSy8 .mbr-section-title,
  .cid-uvD4VYLSy8 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvD4VYLSy8 .box {
    display: none;
  }
  .cid-uvD4VYLSy8 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvD4VYLSy8 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvD4VYLSy8 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvD4VYLSy8 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvD4VYLSy8 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvD4VYLSy8 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvD4VYYU2x {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvD4VZ9r7C {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvD4VZ9r7C h2 {
  text-align: left;
}
.cid-uvD4VZ9r7C h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvD4VZ9r7C p {
  color: #767676;
  text-align: left;
}
.cid-uvD4VZ9r7C .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvD4VZ9r7C .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvD4VZ9r7C .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvD4VZ9r7C .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvD4VZ9r7C .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvD4VZ9r7C .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvD4VZ9r7C .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvD4VZ9r7C .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvD4VZ9r7C .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvD4VZ9r7C .mbr-text {
  color: #232323;
}
.cid-uvD4VZpUya {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvD4VZpUya .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvD4VZpUya .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvD4VZpUya .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvD4VZpUya .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvD4VZpUya .container {
    padding: 0 26px;
  }
}
.cid-uvD4VZpUya .row {
  justify-content: center;
}
.cid-uvD4VZpUya .item {
  margin-bottom: 32px;
}
.cid-uvD4VZpUya .item a {
  display: block;
}
.cid-uvD4VZpUya .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvD4VZpUya .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvD4VZpUya .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvD4VZpUya .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-uvD4VZpUya .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvD4VZpUya .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvD4VZpUya .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-uvD4VZpUya .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvD4VZpUya .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvD4VZpUya .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvD4VZpUya .item-title {
  color: #ffffff;
}
.cid-uvD4VZpUya .mbr-date {
  color: #cacaca;
}
.cid-uvD4VZpUya .mbr-desc {
  color: #cacaca;
}
.cid-uvD4VZJcyT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvD4VZJcyT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvD4VZJcyT .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-uvD4VZJcyT .container {
    padding: 0 16px;
  }
}
.cid-uvD4VZJcyT .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvD4VZJcyT .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvD4VZJcyT .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvD4VZJcyT .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvD4VZJcyT .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvD4VZJcyT .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvD4VZJcyT .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvD4VZJcyT .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvD4VZJcyT .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvD4VZJcyT .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-uvD4VZJcyT .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvD4VZJcyT .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvD4VZJcyT .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvD4VZJcyT .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvD4VZJcyT .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvD4VZJcyT .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvD4VZJcyT .dragArea.row .form-group .form-control:hover,
.cid-uvD4VZJcyT .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvD4VZJcyT .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvD4VZJcyT .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvD4VZJcyT .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvD4VZJcyT .mbr-title {
  color: #ffffff;
}
.cid-uvD4VZJcyT .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvD4VZJcyT .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvD4VZJcyT .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvD4VZJcyT .list {
  color: #08323C;
}
.cid-uvD4VZJcyT label {
  color: #08323C;
}
.cid-uvD4VZJcyT H3 {
  color: #000000;
}
.cid-uvD4VZJcyT P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvO91JJ90k {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvO91JJ90k H1 {
  text-align: center;
}
.cid-uDmLJcnmk4 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmLJcnmk4 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmLJcnmk4 .video-block {
    width: 100% !important;
  }
}
.cid-uvO91L4C9K {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvO91MUs5L {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvO91MUs5L .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvO91MUs5L .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvO91MUs5L .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvO91MUs5L .box {
  left: 20%;
}
.cid-uvO91MUs5L .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvO91MUs5L .mbr-section-text,
.cid-uvO91MUs5L .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvO91MUs5L .text-box {
    display: none;
  }
  .cid-uvO91MUs5L .mbr-section-title,
  .cid-uvO91MUs5L .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvO91MUs5L .box {
    display: none;
  }
  .cid-uvO91MUs5L .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvO91MUs5L .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvO91MUs5L .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvO91MUs5L .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvO91MUs5L .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvO91MUs5L .mbr-section-text DIV {
  text-align: center;
}
.cid-uvO91OGufM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvO91OGufM H1 {
  text-align: center;
}
.cid-uvO91PDwoA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvO91QGzNM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvO91QGzNM h2 {
  text-align: left;
}
.cid-uvO91QGzNM h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvO91QGzNM p {
  color: #767676;
  text-align: left;
}
.cid-uvO91QGzNM .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvO91QGzNM .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvO91QGzNM .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvO91QGzNM .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvO91QGzNM .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvO91QGzNM .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvO91QGzNM .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvO91QGzNM .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvO91QGzNM .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvO91QGzNM H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvO91QGzNM P {
  color: #ffffff;
  text-align: left;
}
.cid-uvO91QGzNM H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvO91XjF5D {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvO91XjF5D H1 {
  color: #000000;
}
.cid-uxkiXJ3yTn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkiXJ3yTn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkiXJ3yTn .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkiXJ3yTn .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkiXJ3yTn .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkiXJ3yTn .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkiXJ3yTn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkiXJ3yTn .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkiXJ3yTn .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkiXJ3yTn .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkiXJ3yTn .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkiXJ3yTn .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-uxkiXJ3yTn .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkiXJ3yTn .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkiXJ3yTn .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkiXJ3yTn .mbr-text,
.cid-uxkiXJ3yTn .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkiYx2A0y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkiYx2A0y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkiYx2A0y .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkiYx2A0y .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkiYx2A0y .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkiYx2A0y .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkiYx2A0y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkiYx2A0y .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkiYx2A0y .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkiYx2A0y .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkiYx2A0y .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkiYx2A0y .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-uxkiYx2A0y .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkiYx2A0y .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkiYx2A0y .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkiYx2A0y .mbr-text,
.cid-uxkiYx2A0y .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvO9215g4A {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvO9215g4A H1 {
  color: #000000;
}
.cid-uvO922eQrX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvO922eQrX h2 {
  text-align: left;
}
.cid-uvO922eQrX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvO922eQrX p {
  color: #767676;
  text-align: left;
}
.cid-uvO922eQrX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvO922eQrX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvO922eQrX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvO922eQrX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvO922eQrX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvO922eQrX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvO922eQrX .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvO922eQrX .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvO922eQrX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvO922eQrX .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvO922eQrX .card-img span {
    font-size: 40px !important;
  }
}
.cid-uxkiZJgbSD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uxkiZJgbSD H1 {
  color: #000000;
}
.cid-uvO923qP4w {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvO923qP4w .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvO923qP4w .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvO923qP4w .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvO923qP4w .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvO923qP4w .box {
  right: 20%;
}
.cid-uvO923qP4w .text-box {
  right: 0;
}
.cid-uvO923qP4w .mbr-section-title,
.cid-uvO923qP4w .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvO923qP4w .text-box {
    display: none;
  }
  .cid-uvO923qP4w .mbr-section-title,
  .cid-uvO923qP4w .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvO923qP4w .box {
    display: none;
  }
  .cid-uvO923qP4w .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvO923qP4w .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvO923qP4w .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvO923qP4w .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvO923qP4w .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvO923qP4w .mbr-section-text DIV {
  text-align: center;
}
.cid-uvO924Akze {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvO925F99C {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvO925F99C h2 {
  text-align: left;
}
.cid-uvO925F99C h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvO925F99C p {
  color: #767676;
  text-align: left;
}
.cid-uvO925F99C .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvO925F99C .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvO925F99C .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvO925F99C .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvO925F99C .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvO925F99C .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvO925F99C .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvO925F99C .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvO925F99C .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvO925F99C .mbr-text {
  color: #232323;
}
.cid-uvO926PnH3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvO926PnH3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvO926PnH3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvO926PnH3 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvO926PnH3 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvO926PnH3 .container {
    padding: 0 26px;
  }
}
.cid-uvO926PnH3 .row {
  justify-content: center;
}
.cid-uvO926PnH3 .item {
  margin-bottom: 32px;
}
.cid-uvO926PnH3 .item a {
  display: block;
}
.cid-uvO926PnH3 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvO926PnH3 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvO926PnH3 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvO926PnH3 .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-uvO926PnH3 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvO926PnH3 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvO926PnH3 .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-uvO926PnH3 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvO926PnH3 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvO926PnH3 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvO926PnH3 .item-title {
  color: #ffffff;
}
.cid-uvO926PnH3 .mbr-date {
  color: #cacaca;
}
.cid-uvO926PnH3 .mbr-desc {
  color: #cacaca;
}
.cid-uvO9282ohH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvO9282ohH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvO9282ohH .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-uvO9282ohH .container {
    padding: 0 16px;
  }
}
.cid-uvO9282ohH .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvO9282ohH .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvO9282ohH .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvO9282ohH .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvO9282ohH .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvO9282ohH .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvO9282ohH .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvO9282ohH .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvO9282ohH .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvO9282ohH .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-uvO9282ohH .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvO9282ohH .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvO9282ohH .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvO9282ohH .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvO9282ohH .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvO9282ohH .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvO9282ohH .dragArea.row .form-group .form-control:hover,
.cid-uvO9282ohH .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvO9282ohH .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvO9282ohH .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvO9282ohH .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvO9282ohH .mbr-title {
  color: #ffffff;
}
.cid-uvO9282ohH .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvO9282ohH .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvO9282ohH .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvO9282ohH .list {
  color: #08323C;
}
.cid-uvO9282ohH label {
  color: #08323C;
}
.cid-uvO9282ohH H3 {
  color: #000000;
}
.cid-uvO9282ohH P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvOfnGmK7U {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOfnGmK7U H1 {
  text-align: center;
}
.cid-uDmJDMkSSF {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmJDMkSSF .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmJDMkSSF .video-block {
    width: 100% !important;
  }
}
.cid-uvOfnHrpjK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOfnIu8jq {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvOfnIu8jq .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOfnIu8jq .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOfnIu8jq .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOfnIu8jq .box {
  left: 20%;
}
.cid-uvOfnIu8jq .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvOfnIu8jq .mbr-section-text,
.cid-uvOfnIu8jq .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvOfnIu8jq .text-box {
    display: none;
  }
  .cid-uvOfnIu8jq .mbr-section-title,
  .cid-uvOfnIu8jq .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOfnIu8jq .box {
    display: none;
  }
  .cid-uvOfnIu8jq .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOfnIu8jq .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOfnIu8jq .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOfnIu8jq .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOfnIu8jq .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOfnIu8jq .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOfnJv7Io {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOfnJv7Io H1 {
  text-align: center;
}
.cid-uvOfnKuUqK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOfnLsj4c {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOfnLsj4c h2 {
  text-align: left;
}
.cid-uvOfnLsj4c h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOfnLsj4c p {
  color: #767676;
  text-align: left;
}
.cid-uvOfnLsj4c .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOfnLsj4c .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOfnLsj4c .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOfnLsj4c .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOfnLsj4c .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOfnLsj4c .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOfnLsj4c .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOfnLsj4c .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOfnLsj4c .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOfnLsj4c H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvOfnLsj4c P {
  color: #ffffff;
  text-align: left;
}
.cid-uvOfnLsj4c H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvOfnMxUdj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOfnMxUdj H1 {
  color: #000000;
}
.cid-uxkdWJhLKt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkdWJhLKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkdWJhLKt .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkdWJhLKt .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkdWJhLKt .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkdWJhLKt .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkdWJhLKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkdWJhLKt .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkdWJhLKt .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkdWJhLKt .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkdWJhLKt .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkdWJhLKt .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-uxkdWJhLKt .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkdWJhLKt .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkdWJhLKt .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkdWJhLKt .mbr-text,
.cid-uxkdWJhLKt .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkdXsMYwk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkdXsMYwk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkdXsMYwk .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkdXsMYwk .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkdXsMYwk .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkdXsMYwk .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkdXsMYwk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkdXsMYwk .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkdXsMYwk .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkdXsMYwk .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkdXsMYwk .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkdXsMYwk .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-uxkdXsMYwk .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkdXsMYwk .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkdXsMYwk .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkdXsMYwk .mbr-text,
.cid-uxkdXsMYwk .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOfnPYiVL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOfnPYiVL H1 {
  color: #000000;
}
.cid-uzGwDEydjS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGwDEydjS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGwDEydjS .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGwDEydjS .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGwDEydjS .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGwDEydjS .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGwDEydjS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGwDEydjS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGwDEydjS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGwDEydjS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGwDEydjS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGwDEydjS .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-uzGwDEydjS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGwDEydjS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGwDEydjS .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGwDEydjS .mbr-text,
.cid-uzGwDEydjS .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGwEgpMyR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGwEgpMyR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGwEgpMyR .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGwEgpMyR .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGwEgpMyR .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGwEgpMyR .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGwEgpMyR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGwEgpMyR .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGwEgpMyR .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGwEgpMyR .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGwEgpMyR .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGwEgpMyR .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-uzGwEgpMyR .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGwEgpMyR .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGwEgpMyR .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGwEgpMyR .mbr-text,
.cid-uzGwEgpMyR .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOfnTseeY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOfnTseeY H1 {
  color: #000000;
}
.cid-uvOfnUuEmH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvOfnUuEmH h2 {
  text-align: left;
}
.cid-uvOfnUuEmH h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOfnUuEmH p {
  color: #767676;
  text-align: left;
}
.cid-uvOfnUuEmH .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOfnUuEmH .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOfnUuEmH .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOfnUuEmH .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOfnUuEmH .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOfnUuEmH .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOfnUuEmH .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvOfnUuEmH .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvOfnUuEmH .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvOfnUuEmH .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvOfnUuEmH .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOfnVAIZa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOfnVAIZa H1 {
  color: #000000;
}
.cid-uvOfnWIF1C {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvOfnWIF1C .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOfnWIF1C .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOfnWIF1C .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOfnWIF1C .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvOfnWIF1C .box {
  right: 20%;
}
.cid-uvOfnWIF1C .text-box {
  right: 0;
}
.cid-uvOfnWIF1C .mbr-section-title,
.cid-uvOfnWIF1C .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvOfnWIF1C .text-box {
    display: none;
  }
  .cid-uvOfnWIF1C .mbr-section-title,
  .cid-uvOfnWIF1C .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOfnWIF1C .box {
    display: none;
  }
  .cid-uvOfnWIF1C .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOfnWIF1C .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOfnWIF1C .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOfnWIF1C .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOfnWIF1C .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOfnWIF1C .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOfnXO6pm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOfnYSJiJ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvOfnYSJiJ h2 {
  text-align: left;
}
.cid-uvOfnYSJiJ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOfnYSJiJ p {
  color: #767676;
  text-align: left;
}
.cid-uvOfnYSJiJ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOfnYSJiJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOfnYSJiJ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOfnYSJiJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOfnYSJiJ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOfnYSJiJ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOfnYSJiJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOfnYSJiJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOfnYSJiJ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOfnYSJiJ .mbr-text {
  color: #232323;
}
.cid-uvOfo00dJl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvOfo00dJl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOfo00dJl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOfo00dJl .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvOfo00dJl .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvOfo00dJl .container {
    padding: 0 26px;
  }
}
.cid-uvOfo00dJl .row {
  justify-content: center;
}
.cid-uvOfo00dJl .item {
  margin-bottom: 32px;
}
.cid-uvOfo00dJl .item a {
  display: block;
}
.cid-uvOfo00dJl .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvOfo00dJl .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvOfo00dJl .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvOfo00dJl .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-uvOfo00dJl .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvOfo00dJl .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvOfo00dJl .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-uvOfo00dJl .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvOfo00dJl .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvOfo00dJl .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvOfo00dJl .item-title {
  color: #ffffff;
}
.cid-uvOfo00dJl .mbr-date {
  color: #cacaca;
}
.cid-uvOfo00dJl .mbr-desc {
  color: #cacaca;
}
.cid-uvOfo1aGyt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvOfo1aGyt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOfo1aGyt .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-uvOfo1aGyt .container {
    padding: 0 16px;
  }
}
.cid-uvOfo1aGyt .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvOfo1aGyt .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOfo1aGyt .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvOfo1aGyt .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOfo1aGyt .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvOfo1aGyt .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvOfo1aGyt .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvOfo1aGyt .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvOfo1aGyt .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvOfo1aGyt .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-uvOfo1aGyt .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvOfo1aGyt .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvOfo1aGyt .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvOfo1aGyt .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvOfo1aGyt .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvOfo1aGyt .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvOfo1aGyt .dragArea.row .form-group .form-control:hover,
.cid-uvOfo1aGyt .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvOfo1aGyt .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvOfo1aGyt .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvOfo1aGyt .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvOfo1aGyt .mbr-title {
  color: #ffffff;
}
.cid-uvOfo1aGyt .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvOfo1aGyt .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvOfo1aGyt .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvOfo1aGyt .list {
  color: #08323C;
}
.cid-uvOfo1aGyt label {
  color: #08323C;
}
.cid-uvOfo1aGyt H3 {
  color: #000000;
}
.cid-uvOfo1aGyt P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvOhczxRaD {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOhczxRaD H1 {
  text-align: center;
}
.cid-uDmJSeIJrK {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmJSeIJrK .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmJSeIJrK .video-block {
    width: 100% !important;
  }
}
.cid-uvOhcAIWAz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOhcBI7hY {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvOhcBI7hY .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOhcBI7hY .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOhcBI7hY .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOhcBI7hY .box {
  left: 20%;
}
.cid-uvOhcBI7hY .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvOhcBI7hY .mbr-section-text,
.cid-uvOhcBI7hY .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvOhcBI7hY .text-box {
    display: none;
  }
  .cid-uvOhcBI7hY .mbr-section-title,
  .cid-uvOhcBI7hY .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOhcBI7hY .box {
    display: none;
  }
  .cid-uvOhcBI7hY .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOhcBI7hY .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOhcBI7hY .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOhcBI7hY .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOhcBI7hY .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOhcBI7hY .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOhcCOkxc {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOhcCOkxc H1 {
  text-align: center;
}
.cid-uvOhcDTmEr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOhcEZCJh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOhcEZCJh h2 {
  text-align: left;
}
.cid-uvOhcEZCJh h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOhcEZCJh p {
  color: #767676;
  text-align: left;
}
.cid-uvOhcEZCJh .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOhcEZCJh .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOhcEZCJh .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOhcEZCJh .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOhcEZCJh .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOhcEZCJh .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOhcEZCJh .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOhcEZCJh .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOhcEZCJh .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOhcEZCJh H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvOhcEZCJh P {
  color: #ffffff;
  text-align: left;
}
.cid-uvOhcEZCJh H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvOhcG9tFy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOhcG9tFy H1 {
  color: #000000;
}
.cid-uxke6n1Us0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxke6n1Us0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxke6n1Us0 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxke6n1Us0 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxke6n1Us0 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxke6n1Us0 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxke6n1Us0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxke6n1Us0 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxke6n1Us0 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxke6n1Us0 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxke6n1Us0 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxke6n1Us0 .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-uxke6n1Us0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxke6n1Us0 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxke6n1Us0 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxke6n1Us0 .mbr-text,
.cid-uxke6n1Us0 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxke72of7q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxke72of7q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxke72of7q .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxke72of7q .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxke72of7q .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxke72of7q .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxke72of7q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxke72of7q .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxke72of7q .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxke72of7q .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxke72of7q .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxke72of7q .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-uxke72of7q .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxke72of7q .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxke72of7q .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxke72of7q .mbr-text,
.cid-uxke72of7q .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOhcJHIRR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOhcJHIRR H1 {
  color: #000000;
}
.cid-uzGwWRSHXS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGwWRSHXS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGwWRSHXS .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGwWRSHXS .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGwWRSHXS .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGwWRSHXS .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGwWRSHXS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGwWRSHXS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGwWRSHXS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGwWRSHXS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGwWRSHXS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGwWRSHXS .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-uzGwWRSHXS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGwWRSHXS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGwWRSHXS .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGwWRSHXS .mbr-text,
.cid-uzGwWRSHXS .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGwXrz93r {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGwXrz93r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGwXrz93r .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGwXrz93r .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGwXrz93r .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGwXrz93r .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGwXrz93r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGwXrz93r .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGwXrz93r .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGwXrz93r .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGwXrz93r .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGwXrz93r .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-uzGwXrz93r .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGwXrz93r .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGwXrz93r .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGwXrz93r .mbr-text,
.cid-uzGwXrz93r .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOhcNnTng {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOhcNnTng H1 {
  color: #000000;
}
.cid-uvOhcOr0xP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvOhcOr0xP h2 {
  text-align: left;
}
.cid-uvOhcOr0xP h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOhcOr0xP p {
  color: #767676;
  text-align: left;
}
.cid-uvOhcOr0xP .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOhcOr0xP .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOhcOr0xP .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOhcOr0xP .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOhcOr0xP .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOhcOr0xP .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOhcOr0xP .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvOhcOr0xP .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvOhcOr0xP .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvOhcOr0xP .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvOhcOr0xP .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOhcPw7wf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOhcPw7wf H1 {
  color: #000000;
}
.cid-uvOhcQDzsk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvOhcQDzsk .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOhcQDzsk .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOhcQDzsk .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOhcQDzsk .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvOhcQDzsk .box {
  right: 20%;
}
.cid-uvOhcQDzsk .text-box {
  right: 0;
}
.cid-uvOhcQDzsk .mbr-section-title,
.cid-uvOhcQDzsk .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvOhcQDzsk .text-box {
    display: none;
  }
  .cid-uvOhcQDzsk .mbr-section-title,
  .cid-uvOhcQDzsk .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOhcQDzsk .box {
    display: none;
  }
  .cid-uvOhcQDzsk .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOhcQDzsk .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOhcQDzsk .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOhcQDzsk .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOhcQDzsk .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOhcQDzsk .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOhcRLevh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOhcSUINa {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvOhcSUINa h2 {
  text-align: left;
}
.cid-uvOhcSUINa h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOhcSUINa p {
  color: #767676;
  text-align: left;
}
.cid-uvOhcSUINa .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOhcSUINa .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOhcSUINa .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOhcSUINa .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOhcSUINa .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOhcSUINa .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOhcSUINa .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOhcSUINa .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOhcSUINa .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOhcSUINa .mbr-text {
  color: #232323;
}
.cid-uvOhcU5qnM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvOhcU5qnM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOhcU5qnM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOhcU5qnM .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvOhcU5qnM .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvOhcU5qnM .container {
    padding: 0 26px;
  }
}
.cid-uvOhcU5qnM .row {
  justify-content: center;
}
.cid-uvOhcU5qnM .item {
  margin-bottom: 32px;
}
.cid-uvOhcU5qnM .item a {
  display: block;
}
.cid-uvOhcU5qnM .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvOhcU5qnM .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvOhcU5qnM .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvOhcU5qnM .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-uvOhcU5qnM .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvOhcU5qnM .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvOhcU5qnM .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-uvOhcU5qnM .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvOhcU5qnM .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvOhcU5qnM .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvOhcU5qnM .item-title {
  color: #ffffff;
}
.cid-uvOhcU5qnM .mbr-date {
  color: #cacaca;
}
.cid-uvOhcU5qnM .mbr-desc {
  color: #cacaca;
}
.cid-uvOhcVd4Tm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvOhcVd4Tm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOhcVd4Tm .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-uvOhcVd4Tm .container {
    padding: 0 16px;
  }
}
.cid-uvOhcVd4Tm .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvOhcVd4Tm .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOhcVd4Tm .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvOhcVd4Tm .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOhcVd4Tm .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvOhcVd4Tm .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvOhcVd4Tm .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvOhcVd4Tm .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvOhcVd4Tm .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvOhcVd4Tm .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-uvOhcVd4Tm .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvOhcVd4Tm .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvOhcVd4Tm .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvOhcVd4Tm .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvOhcVd4Tm .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvOhcVd4Tm .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvOhcVd4Tm .dragArea.row .form-group .form-control:hover,
.cid-uvOhcVd4Tm .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvOhcVd4Tm .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvOhcVd4Tm .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvOhcVd4Tm .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvOhcVd4Tm .mbr-title {
  color: #ffffff;
}
.cid-uvOhcVd4Tm .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvOhcVd4Tm .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvOhcVd4Tm .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvOhcVd4Tm .list {
  color: #08323C;
}
.cid-uvOhcVd4Tm label {
  color: #08323C;
}
.cid-uvOhcVd4Tm H3 {
  color: #000000;
}
.cid-uvOhcVd4Tm P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvOiJwIrFq {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOiJwIrFq H1 {
  text-align: center;
}
.cid-uDmK5aoeDX {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmK5aoeDX .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmK5aoeDX .video-block {
    width: 100% !important;
  }
}
.cid-uvOiJxR0jd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOiJyTI0T {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvOiJyTI0T .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOiJyTI0T .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOiJyTI0T .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOiJyTI0T .box {
  left: 20%;
}
.cid-uvOiJyTI0T .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvOiJyTI0T .mbr-section-text,
.cid-uvOiJyTI0T .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvOiJyTI0T .text-box {
    display: none;
  }
  .cid-uvOiJyTI0T .mbr-section-title,
  .cid-uvOiJyTI0T .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOiJyTI0T .box {
    display: none;
  }
  .cid-uvOiJyTI0T .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOiJyTI0T .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOiJyTI0T .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOiJyTI0T .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOiJyTI0T .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOiJyTI0T .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOiJzVnW2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOiJzVnW2 H1 {
  text-align: center;
}
.cid-uvOiJAXaZz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOiJBYi22 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOiJBYi22 h2 {
  text-align: left;
}
.cid-uvOiJBYi22 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOiJBYi22 p {
  color: #767676;
  text-align: left;
}
.cid-uvOiJBYi22 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOiJBYi22 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOiJBYi22 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOiJBYi22 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOiJBYi22 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOiJBYi22 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOiJBYi22 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOiJBYi22 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOiJBYi22 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOiJBYi22 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvOiJBYi22 P {
  color: #ffffff;
  text-align: left;
}
.cid-uvOiJBYi22 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvOiJD6WXv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOiJD6WXv H1 {
  color: #000000;
}
.cid-uxkeeMs4j2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkeeMs4j2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkeeMs4j2 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkeeMs4j2 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkeeMs4j2 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkeeMs4j2 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkeeMs4j2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkeeMs4j2 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkeeMs4j2 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkeeMs4j2 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkeeMs4j2 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkeeMs4j2 .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-uxkeeMs4j2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkeeMs4j2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkeeMs4j2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkeeMs4j2 .mbr-text,
.cid-uxkeeMs4j2 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkefsh0sB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkefsh0sB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkefsh0sB .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkefsh0sB .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkefsh0sB .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkefsh0sB .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkefsh0sB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkefsh0sB .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkefsh0sB .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkefsh0sB .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkefsh0sB .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkefsh0sB .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-uxkefsh0sB .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkefsh0sB .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkefsh0sB .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkefsh0sB .mbr-text,
.cid-uxkefsh0sB .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGxhQIWdo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGxhQIWdo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGxhQIWdo .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGxhQIWdo .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGxhQIWdo .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGxhQIWdo .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGxhQIWdo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGxhQIWdo .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGxhQIWdo .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGxhQIWdo .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGxhQIWdo .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGxhQIWdo .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-uzGxhQIWdo .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGxhQIWdo .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGxhQIWdo .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGxhQIWdo .mbr-text,
.cid-uzGxhQIWdo .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGxiut0lW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGxiut0lW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGxiut0lW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGxiut0lW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGxiut0lW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGxiut0lW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGxiut0lW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGxiut0lW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGxiut0lW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGxiut0lW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGxiut0lW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGxiut0lW .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-uzGxiut0lW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGxiut0lW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGxiut0lW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGxiut0lW .mbr-text,
.cid-uzGxiut0lW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOiJGFUyD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOiJGFUyD H1 {
  color: #000000;
}
.cid-uvOiJKlrVY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOiJKlrVY H1 {
  color: #000000;
}
.cid-uvOiJLqN9Q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvOiJLqN9Q h2 {
  text-align: left;
}
.cid-uvOiJLqN9Q h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOiJLqN9Q p {
  color: #767676;
  text-align: left;
}
.cid-uvOiJLqN9Q .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOiJLqN9Q .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOiJLqN9Q .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOiJLqN9Q .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOiJLqN9Q .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOiJLqN9Q .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOiJLqN9Q .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvOiJLqN9Q .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvOiJLqN9Q .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvOiJLqN9Q .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvOiJLqN9Q .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOiJMxHAW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOiJMxHAW H1 {
  color: #000000;
}
.cid-uvOiJNC1cg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvOiJNC1cg .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOiJNC1cg .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOiJNC1cg .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOiJNC1cg .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvOiJNC1cg .box {
  right: 20%;
}
.cid-uvOiJNC1cg .text-box {
  right: 0;
}
.cid-uvOiJNC1cg .mbr-section-title,
.cid-uvOiJNC1cg .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvOiJNC1cg .text-box {
    display: none;
  }
  .cid-uvOiJNC1cg .mbr-section-title,
  .cid-uvOiJNC1cg .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOiJNC1cg .box {
    display: none;
  }
  .cid-uvOiJNC1cg .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOiJNC1cg .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOiJNC1cg .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOiJNC1cg .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOiJNC1cg .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOiJNC1cg .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOiJOKoJP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOiJPRYF7 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvOiJPRYF7 h2 {
  text-align: left;
}
.cid-uvOiJPRYF7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOiJPRYF7 p {
  color: #767676;
  text-align: left;
}
.cid-uvOiJPRYF7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOiJPRYF7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOiJPRYF7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOiJPRYF7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOiJPRYF7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOiJPRYF7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOiJPRYF7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOiJPRYF7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOiJPRYF7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOiJPRYF7 .mbr-text {
  color: #232323;
}
.cid-uvOiJR01dn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvOiJR01dn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOiJR01dn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOiJR01dn .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvOiJR01dn .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvOiJR01dn .container {
    padding: 0 26px;
  }
}
.cid-uvOiJR01dn .row {
  justify-content: center;
}
.cid-uvOiJR01dn .item {
  margin-bottom: 32px;
}
.cid-uvOiJR01dn .item a {
  display: block;
}
.cid-uvOiJR01dn .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvOiJR01dn .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvOiJR01dn .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvOiJR01dn .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-uvOiJR01dn .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvOiJR01dn .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvOiJR01dn .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-uvOiJR01dn .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvOiJR01dn .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvOiJR01dn .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvOiJR01dn .item-title {
  color: #ffffff;
}
.cid-uvOiJR01dn .mbr-date {
  color: #cacaca;
}
.cid-uvOiJR01dn .mbr-desc {
  color: #cacaca;
}
.cid-uvOiJScLb6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvOiJScLb6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOiJScLb6 .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-uvOiJScLb6 .container {
    padding: 0 16px;
  }
}
.cid-uvOiJScLb6 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvOiJScLb6 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOiJScLb6 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvOiJScLb6 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOiJScLb6 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvOiJScLb6 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvOiJScLb6 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvOiJScLb6 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvOiJScLb6 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvOiJScLb6 .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-uvOiJScLb6 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvOiJScLb6 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvOiJScLb6 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvOiJScLb6 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvOiJScLb6 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvOiJScLb6 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvOiJScLb6 .dragArea.row .form-group .form-control:hover,
.cid-uvOiJScLb6 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvOiJScLb6 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvOiJScLb6 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvOiJScLb6 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvOiJScLb6 .mbr-title {
  color: #ffffff;
}
.cid-uvOiJScLb6 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvOiJScLb6 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvOiJScLb6 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvOiJScLb6 .list {
  color: #08323C;
}
.cid-uvOiJScLb6 label {
  color: #08323C;
}
.cid-uvOiJScLb6 H3 {
  color: #000000;
}
.cid-uvOiJScLb6 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvOlSzc4Ka {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOlSzc4Ka H1 {
  text-align: center;
}
.cid-uDmKbweHwJ {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmKbweHwJ .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmKbweHwJ .video-block {
    width: 100% !important;
  }
}
.cid-uvOlSAkkG2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOlSBmJsB {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvOlSBmJsB .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOlSBmJsB .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOlSBmJsB .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOlSBmJsB .box {
  left: 20%;
}
.cid-uvOlSBmJsB .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvOlSBmJsB .mbr-section-text,
.cid-uvOlSBmJsB .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvOlSBmJsB .text-box {
    display: none;
  }
  .cid-uvOlSBmJsB .mbr-section-title,
  .cid-uvOlSBmJsB .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOlSBmJsB .box {
    display: none;
  }
  .cid-uvOlSBmJsB .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOlSBmJsB .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOlSBmJsB .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOlSBmJsB .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOlSBmJsB .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOlSBmJsB .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOlSCtIiX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOlSCtIiX H1 {
  text-align: center;
}
.cid-uvOlSDwMFO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOlSEtCTb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOlSEtCTb h2 {
  text-align: left;
}
.cid-uvOlSEtCTb h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOlSEtCTb p {
  color: #767676;
  text-align: left;
}
.cid-uvOlSEtCTb .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOlSEtCTb .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOlSEtCTb .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOlSEtCTb .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOlSEtCTb .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOlSEtCTb .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOlSEtCTb .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOlSEtCTb .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOlSEtCTb .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOlSEtCTb H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvOlSEtCTb P {
  color: #ffffff;
  text-align: left;
}
.cid-uvOlSEtCTb H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvOlSFBYlf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOlSFBYlf H1 {
  color: #000000;
}
.cid-uxkemVlTLq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkemVlTLq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkemVlTLq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkemVlTLq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkemVlTLq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkemVlTLq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkemVlTLq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkemVlTLq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkemVlTLq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkemVlTLq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkemVlTLq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkemVlTLq .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-uxkemVlTLq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkemVlTLq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkemVlTLq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkemVlTLq .mbr-text,
.cid-uxkemVlTLq .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkenGoE5M {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkenGoE5M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkenGoE5M .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkenGoE5M .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkenGoE5M .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkenGoE5M .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkenGoE5M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkenGoE5M .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkenGoE5M .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkenGoE5M .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkenGoE5M .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkenGoE5M .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-uxkenGoE5M .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkenGoE5M .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkenGoE5M .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkenGoE5M .mbr-text,
.cid-uxkenGoE5M .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOlSJ7m3b {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOlSJ7m3b H1 {
  color: #000000;
}
.cid-uzGxAoCTin {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGxAoCTin .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGxAoCTin .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGxAoCTin .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGxAoCTin .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGxAoCTin .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGxAoCTin .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGxAoCTin .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGxAoCTin .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGxAoCTin .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGxAoCTin .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGxAoCTin .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-uzGxAoCTin .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGxAoCTin .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGxAoCTin .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGxAoCTin .mbr-text,
.cid-uzGxAoCTin .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGxAZ3Hyf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGxAZ3Hyf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGxAZ3Hyf .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGxAZ3Hyf .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGxAZ3Hyf .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGxAZ3Hyf .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGxAZ3Hyf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGxAZ3Hyf .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGxAZ3Hyf .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGxAZ3Hyf .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGxAZ3Hyf .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGxAZ3Hyf .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-uzGxAZ3Hyf .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGxAZ3Hyf .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGxAZ3Hyf .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGxAZ3Hyf .mbr-text,
.cid-uzGxAZ3Hyf .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOlSMCZ1x {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOlSMCZ1x H1 {
  color: #000000;
}
.cid-uvOlSNLiNG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvOlSNLiNG h2 {
  text-align: left;
}
.cid-uvOlSNLiNG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOlSNLiNG p {
  color: #767676;
  text-align: left;
}
.cid-uvOlSNLiNG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOlSNLiNG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOlSNLiNG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOlSNLiNG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOlSNLiNG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOlSNLiNG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOlSNLiNG .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvOlSNLiNG .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvOlSNLiNG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvOlSNLiNG .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvOlSNLiNG .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOlSOTMcF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOlSOTMcF H1 {
  color: #000000;
}
.cid-uvOlSPXVjO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvOlSPXVjO .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOlSPXVjO .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOlSPXVjO .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOlSPXVjO .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvOlSPXVjO .box {
  right: 20%;
}
.cid-uvOlSPXVjO .text-box {
  right: 0;
}
.cid-uvOlSPXVjO .mbr-section-title,
.cid-uvOlSPXVjO .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvOlSPXVjO .text-box {
    display: none;
  }
  .cid-uvOlSPXVjO .mbr-section-title,
  .cid-uvOlSPXVjO .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOlSPXVjO .box {
    display: none;
  }
  .cid-uvOlSPXVjO .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOlSPXVjO .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOlSPXVjO .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOlSPXVjO .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOlSPXVjO .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOlSPXVjO .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOlSR3Cyo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOlSS7AC0 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvOlSS7AC0 h2 {
  text-align: left;
}
.cid-uvOlSS7AC0 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOlSS7AC0 p {
  color: #767676;
  text-align: left;
}
.cid-uvOlSS7AC0 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOlSS7AC0 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOlSS7AC0 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOlSS7AC0 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOlSS7AC0 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOlSS7AC0 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOlSS7AC0 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOlSS7AC0 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOlSS7AC0 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOlSS7AC0 .mbr-text {
  color: #232323;
}
.cid-uvOlSTecwj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvOlSTecwj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOlSTecwj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOlSTecwj .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvOlSTecwj .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvOlSTecwj .container {
    padding: 0 26px;
  }
}
.cid-uvOlSTecwj .row {
  justify-content: center;
}
.cid-uvOlSTecwj .item {
  margin-bottom: 32px;
}
.cid-uvOlSTecwj .item a {
  display: block;
}
.cid-uvOlSTecwj .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvOlSTecwj .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvOlSTecwj .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvOlSTecwj .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-uvOlSTecwj .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvOlSTecwj .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvOlSTecwj .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-uvOlSTecwj .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvOlSTecwj .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvOlSTecwj .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvOlSTecwj .item-title {
  color: #ffffff;
}
.cid-uvOlSTecwj .mbr-date {
  color: #cacaca;
}
.cid-uvOlSTecwj .mbr-desc {
  color: #cacaca;
}
.cid-uvOlSUoBx5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvOlSUoBx5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOlSUoBx5 .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-uvOlSUoBx5 .container {
    padding: 0 16px;
  }
}
.cid-uvOlSUoBx5 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvOlSUoBx5 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOlSUoBx5 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvOlSUoBx5 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOlSUoBx5 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvOlSUoBx5 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvOlSUoBx5 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvOlSUoBx5 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvOlSUoBx5 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvOlSUoBx5 .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-uvOlSUoBx5 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvOlSUoBx5 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvOlSUoBx5 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvOlSUoBx5 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvOlSUoBx5 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvOlSUoBx5 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvOlSUoBx5 .dragArea.row .form-group .form-control:hover,
.cid-uvOlSUoBx5 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvOlSUoBx5 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvOlSUoBx5 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvOlSUoBx5 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvOlSUoBx5 .mbr-title {
  color: #ffffff;
}
.cid-uvOlSUoBx5 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvOlSUoBx5 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvOlSUoBx5 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvOlSUoBx5 .list {
  color: #08323C;
}
.cid-uvOlSUoBx5 label {
  color: #08323C;
}
.cid-uvOlSUoBx5 H3 {
  color: #000000;
}
.cid-uvOlSUoBx5 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvOnU0EVAJ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOnU0EVAJ H1 {
  text-align: center;
}
.cid-uDmKhk3xr9 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmKhk3xr9 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmKhk3xr9 .video-block {
    width: 100% !important;
  }
}
.cid-uvOnU1MnAG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOnU2KtTU {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvOnU2KtTU .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOnU2KtTU .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOnU2KtTU .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOnU2KtTU .box {
  left: 20%;
}
.cid-uvOnU2KtTU .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvOnU2KtTU .mbr-section-text,
.cid-uvOnU2KtTU .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvOnU2KtTU .text-box {
    display: none;
  }
  .cid-uvOnU2KtTU .mbr-section-title,
  .cid-uvOnU2KtTU .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOnU2KtTU .box {
    display: none;
  }
  .cid-uvOnU2KtTU .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOnU2KtTU .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOnU2KtTU .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOnU2KtTU .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOnU2KtTU .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOnU2KtTU .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOnU3M8if {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOnU3M8if H1 {
  text-align: center;
}
.cid-uvOnU4M3xD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOnU5MKdX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOnU5MKdX h2 {
  text-align: left;
}
.cid-uvOnU5MKdX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOnU5MKdX p {
  color: #767676;
  text-align: left;
}
.cid-uvOnU5MKdX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOnU5MKdX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOnU5MKdX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOnU5MKdX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOnU5MKdX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOnU5MKdX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOnU5MKdX .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOnU5MKdX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOnU5MKdX .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOnU5MKdX H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvOnU5MKdX P {
  color: #ffffff;
  text-align: left;
}
.cid-uvOnU5MKdX H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvOnU6T4tn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOnU6T4tn H1 {
  color: #000000;
}
.cid-uxkeuxHSRK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkeuxHSRK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkeuxHSRK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkeuxHSRK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkeuxHSRK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkeuxHSRK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkeuxHSRK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkeuxHSRK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkeuxHSRK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkeuxHSRK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkeuxHSRK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkeuxHSRK .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-uxkeuxHSRK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkeuxHSRK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkeuxHSRK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkeuxHSRK .mbr-text,
.cid-uxkeuxHSRK .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkevfhVez {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkevfhVez .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkevfhVez .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkevfhVez .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkevfhVez .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkevfhVez .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkevfhVez .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkevfhVez .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkevfhVez .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkevfhVez .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkevfhVez .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkevfhVez .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-uxkevfhVez .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkevfhVez .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkevfhVez .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkevfhVez .mbr-text,
.cid-uxkevfhVez .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOnUas4Gx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOnUas4Gx H1 {
  color: #000000;
}
.cid-uzGxOceNqi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGxOceNqi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGxOceNqi .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGxOceNqi .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGxOceNqi .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGxOceNqi .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGxOceNqi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGxOceNqi .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGxOceNqi .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGxOceNqi .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGxOceNqi .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGxOceNqi .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-uzGxOceNqi .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGxOceNqi .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGxOceNqi .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGxOceNqi .mbr-text,
.cid-uzGxOceNqi .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGxOM7MA3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGxOM7MA3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGxOM7MA3 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGxOM7MA3 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGxOM7MA3 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGxOM7MA3 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGxOM7MA3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGxOM7MA3 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGxOM7MA3 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGxOM7MA3 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGxOM7MA3 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGxOM7MA3 .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-uzGxOM7MA3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGxOM7MA3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGxOM7MA3 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGxOM7MA3 .mbr-text,
.cid-uzGxOM7MA3 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOnUebWdY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOnUebWdY H1 {
  color: #000000;
}
.cid-uvOnUffaAV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvOnUffaAV h2 {
  text-align: left;
}
.cid-uvOnUffaAV h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOnUffaAV p {
  color: #767676;
  text-align: left;
}
.cid-uvOnUffaAV .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOnUffaAV .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOnUffaAV .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOnUffaAV .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOnUffaAV .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOnUffaAV .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOnUffaAV .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvOnUffaAV .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvOnUffaAV .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvOnUffaAV .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvOnUffaAV .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOnUgn8KV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOnUgn8KV H1 {
  color: #000000;
}
.cid-uvOnUhq9Np {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvOnUhq9Np .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOnUhq9Np .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOnUhq9Np .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOnUhq9Np .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvOnUhq9Np .box {
  right: 20%;
}
.cid-uvOnUhq9Np .text-box {
  right: 0;
}
.cid-uvOnUhq9Np .mbr-section-title,
.cid-uvOnUhq9Np .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvOnUhq9Np .text-box {
    display: none;
  }
  .cid-uvOnUhq9Np .mbr-section-title,
  .cid-uvOnUhq9Np .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOnUhq9Np .box {
    display: none;
  }
  .cid-uvOnUhq9Np .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOnUhq9Np .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOnUhq9Np .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOnUhq9Np .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOnUhq9Np .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOnUhq9Np .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOnUiwmMi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOnUjCjbq {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvOnUjCjbq h2 {
  text-align: left;
}
.cid-uvOnUjCjbq h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOnUjCjbq p {
  color: #767676;
  text-align: left;
}
.cid-uvOnUjCjbq .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOnUjCjbq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOnUjCjbq .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOnUjCjbq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOnUjCjbq .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOnUjCjbq .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOnUjCjbq .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOnUjCjbq .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOnUjCjbq .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOnUjCjbq .mbr-text {
  color: #232323;
}
.cid-uvOnUkJ3nF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvOnUkJ3nF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOnUkJ3nF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOnUkJ3nF .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvOnUkJ3nF .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvOnUkJ3nF .container {
    padding: 0 26px;
  }
}
.cid-uvOnUkJ3nF .row {
  justify-content: center;
}
.cid-uvOnUkJ3nF .item {
  margin-bottom: 32px;
}
.cid-uvOnUkJ3nF .item a {
  display: block;
}
.cid-uvOnUkJ3nF .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvOnUkJ3nF .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvOnUkJ3nF .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvOnUkJ3nF .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-uvOnUkJ3nF .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvOnUkJ3nF .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvOnUkJ3nF .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-uvOnUkJ3nF .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvOnUkJ3nF .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvOnUkJ3nF .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvOnUkJ3nF .item-title {
  color: #ffffff;
}
.cid-uvOnUkJ3nF .mbr-date {
  color: #cacaca;
}
.cid-uvOnUkJ3nF .mbr-desc {
  color: #cacaca;
}
.cid-uvOnUlVDW8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvOnUlVDW8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOnUlVDW8 .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-uvOnUlVDW8 .container {
    padding: 0 16px;
  }
}
.cid-uvOnUlVDW8 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvOnUlVDW8 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOnUlVDW8 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvOnUlVDW8 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOnUlVDW8 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvOnUlVDW8 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvOnUlVDW8 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvOnUlVDW8 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvOnUlVDW8 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvOnUlVDW8 .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-uvOnUlVDW8 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvOnUlVDW8 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvOnUlVDW8 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvOnUlVDW8 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvOnUlVDW8 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvOnUlVDW8 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvOnUlVDW8 .dragArea.row .form-group .form-control:hover,
.cid-uvOnUlVDW8 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvOnUlVDW8 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvOnUlVDW8 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvOnUlVDW8 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvOnUlVDW8 .mbr-title {
  color: #ffffff;
}
.cid-uvOnUlVDW8 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvOnUlVDW8 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvOnUlVDW8 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvOnUlVDW8 .list {
  color: #08323C;
}
.cid-uvOnUlVDW8 label {
  color: #08323C;
}
.cid-uvOnUlVDW8 H3 {
  color: #000000;
}
.cid-uvOnUlVDW8 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvOplYkWSs {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOplYkWSs H1 {
  text-align: center;
}
.cid-uDmKkHBd1S {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmKkHBd1S .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmKkHBd1S .video-block {
    width: 100% !important;
  }
}
.cid-uvOplZrnTE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOpm0qJqc {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvOpm0qJqc .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOpm0qJqc .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOpm0qJqc .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOpm0qJqc .box {
  left: 20%;
}
.cid-uvOpm0qJqc .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvOpm0qJqc .mbr-section-text,
.cid-uvOpm0qJqc .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvOpm0qJqc .text-box {
    display: none;
  }
  .cid-uvOpm0qJqc .mbr-section-title,
  .cid-uvOpm0qJqc .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOpm0qJqc .box {
    display: none;
  }
  .cid-uvOpm0qJqc .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOpm0qJqc .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOpm0qJqc .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOpm0qJqc .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOpm0qJqc .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOpm0qJqc .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOpm1rcrB {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOpm1rcrB H1 {
  text-align: center;
}
.cid-uvOpm2sAUf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOpm3sa1Z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOpm3sa1Z h2 {
  text-align: left;
}
.cid-uvOpm3sa1Z h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOpm3sa1Z p {
  color: #767676;
  text-align: left;
}
.cid-uvOpm3sa1Z .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOpm3sa1Z .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOpm3sa1Z .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOpm3sa1Z .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOpm3sa1Z .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOpm3sa1Z .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOpm3sa1Z .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOpm3sa1Z .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOpm3sa1Z .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOpm3sa1Z H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvOpm3sa1Z P {
  color: #ffffff;
  text-align: left;
}
.cid-uvOpm3sa1Z H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvOpm4voFb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOpm4voFb H1 {
  color: #000000;
}
.cid-uxkeCtnBvd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkeCtnBvd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkeCtnBvd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkeCtnBvd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkeCtnBvd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkeCtnBvd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkeCtnBvd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkeCtnBvd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkeCtnBvd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkeCtnBvd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkeCtnBvd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkeCtnBvd .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-uxkeCtnBvd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkeCtnBvd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkeCtnBvd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkeCtnBvd .mbr-text,
.cid-uxkeCtnBvd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkeDiLMgB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkeDiLMgB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkeDiLMgB .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkeDiLMgB .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkeDiLMgB .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkeDiLMgB .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkeDiLMgB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkeDiLMgB .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkeDiLMgB .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkeDiLMgB .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkeDiLMgB .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkeDiLMgB .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-uxkeDiLMgB .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkeDiLMgB .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkeDiLMgB .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkeDiLMgB .mbr-text,
.cid-uxkeDiLMgB .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOpm7ZjK3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOpm7ZjK3 H1 {
  color: #000000;
}
.cid-uzGy6Is87X {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGy6Is87X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGy6Is87X .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGy6Is87X .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGy6Is87X .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGy6Is87X .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGy6Is87X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGy6Is87X .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGy6Is87X .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGy6Is87X .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGy6Is87X .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGy6Is87X .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-uzGy6Is87X .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGy6Is87X .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGy6Is87X .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGy6Is87X .mbr-text,
.cid-uzGy6Is87X .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGy7i8DkK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGy7i8DkK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGy7i8DkK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGy7i8DkK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGy7i8DkK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGy7i8DkK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGy7i8DkK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGy7i8DkK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGy7i8DkK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGy7i8DkK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGy7i8DkK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGy7i8DkK .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-uzGy7i8DkK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGy7i8DkK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGy7i8DkK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGy7i8DkK .mbr-text,
.cid-uzGy7i8DkK .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOpmbvk6M {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOpmbvk6M H1 {
  color: #000000;
}
.cid-uvOpmcza9m {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvOpmcza9m h2 {
  text-align: left;
}
.cid-uvOpmcza9m h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOpmcza9m p {
  color: #767676;
  text-align: left;
}
.cid-uvOpmcza9m .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOpmcza9m .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOpmcza9m .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOpmcza9m .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOpmcza9m .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOpmcza9m .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOpmcza9m .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvOpmcza9m .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvOpmcza9m .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvOpmcza9m .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvOpmcza9m .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOpmdHnBK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOpmdHnBK H1 {
  color: #000000;
}
.cid-uvOpmeMjdG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvOpmeMjdG .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOpmeMjdG .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOpmeMjdG .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOpmeMjdG .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvOpmeMjdG .box {
  right: 20%;
}
.cid-uvOpmeMjdG .text-box {
  right: 0;
}
.cid-uvOpmeMjdG .mbr-section-title,
.cid-uvOpmeMjdG .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvOpmeMjdG .text-box {
    display: none;
  }
  .cid-uvOpmeMjdG .mbr-section-title,
  .cid-uvOpmeMjdG .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOpmeMjdG .box {
    display: none;
  }
  .cid-uvOpmeMjdG .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOpmeMjdG .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOpmeMjdG .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOpmeMjdG .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOpmeMjdG .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOpmeMjdG .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOpmfSv3x {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOpmgYw6L {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvOpmgYw6L h2 {
  text-align: left;
}
.cid-uvOpmgYw6L h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOpmgYw6L p {
  color: #767676;
  text-align: left;
}
.cid-uvOpmgYw6L .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOpmgYw6L .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOpmgYw6L .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOpmgYw6L .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOpmgYw6L .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOpmgYw6L .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOpmgYw6L .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOpmgYw6L .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOpmgYw6L .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOpmgYw6L .mbr-text {
  color: #232323;
}
.cid-uvOpmi7nHF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvOpmi7nHF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOpmi7nHF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOpmi7nHF .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvOpmi7nHF .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvOpmi7nHF .container {
    padding: 0 26px;
  }
}
.cid-uvOpmi7nHF .row {
  justify-content: center;
}
.cid-uvOpmi7nHF .item {
  margin-bottom: 32px;
}
.cid-uvOpmi7nHF .item a {
  display: block;
}
.cid-uvOpmi7nHF .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvOpmi7nHF .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvOpmi7nHF .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvOpmi7nHF .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-uvOpmi7nHF .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvOpmi7nHF .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvOpmi7nHF .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-uvOpmi7nHF .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvOpmi7nHF .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvOpmi7nHF .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvOpmi7nHF .item-title {
  color: #ffffff;
}
.cid-uvOpmi7nHF .mbr-date {
  color: #cacaca;
}
.cid-uvOpmi7nHF .mbr-desc {
  color: #cacaca;
}
.cid-uvOpmjflkw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvOpmjflkw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOpmjflkw .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-uvOpmjflkw .container {
    padding: 0 16px;
  }
}
.cid-uvOpmjflkw .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvOpmjflkw .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOpmjflkw .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvOpmjflkw .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOpmjflkw .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvOpmjflkw .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvOpmjflkw .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvOpmjflkw .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvOpmjflkw .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvOpmjflkw .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-uvOpmjflkw .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvOpmjflkw .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvOpmjflkw .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvOpmjflkw .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvOpmjflkw .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvOpmjflkw .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvOpmjflkw .dragArea.row .form-group .form-control:hover,
.cid-uvOpmjflkw .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvOpmjflkw .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvOpmjflkw .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvOpmjflkw .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvOpmjflkw .mbr-title {
  color: #ffffff;
}
.cid-uvOpmjflkw .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvOpmjflkw .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvOpmjflkw .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvOpmjflkw .list {
  color: #08323C;
}
.cid-uvOpmjflkw label {
  color: #08323C;
}
.cid-uvOpmjflkw H3 {
  color: #000000;
}
.cid-uvOpmjflkw P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvOrkS0C7o {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOrkS0C7o H1 {
  text-align: center;
}
.cid-uDmKv6YEnp {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmKv6YEnp .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmKv6YEnp .video-block {
    width: 100% !important;
  }
}
.cid-uvOrkT9B7o {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOrkUbQK8 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvOrkUbQK8 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOrkUbQK8 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOrkUbQK8 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOrkUbQK8 .box {
  left: 20%;
}
.cid-uvOrkUbQK8 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvOrkUbQK8 .mbr-section-text,
.cid-uvOrkUbQK8 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvOrkUbQK8 .text-box {
    display: none;
  }
  .cid-uvOrkUbQK8 .mbr-section-title,
  .cid-uvOrkUbQK8 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOrkUbQK8 .box {
    display: none;
  }
  .cid-uvOrkUbQK8 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOrkUbQK8 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOrkUbQK8 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOrkUbQK8 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOrkUbQK8 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOrkUbQK8 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOrkVewUy {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOrkVewUy H1 {
  text-align: center;
}
.cid-uvOrkWhjNc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOrkXjbG2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOrkXjbG2 h2 {
  text-align: left;
}
.cid-uvOrkXjbG2 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOrkXjbG2 p {
  color: #767676;
  text-align: left;
}
.cid-uvOrkXjbG2 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOrkXjbG2 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOrkXjbG2 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOrkXjbG2 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOrkXjbG2 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOrkXjbG2 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOrkXjbG2 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOrkXjbG2 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOrkXjbG2 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOrkXjbG2 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvOrkXjbG2 P {
  color: #ffffff;
  text-align: left;
}
.cid-uvOrkXjbG2 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvOrkYrPLt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOrkYrPLt H1 {
  color: #000000;
}
.cid-uxkeL4bJXz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkeL4bJXz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkeL4bJXz .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkeL4bJXz .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkeL4bJXz .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkeL4bJXz .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkeL4bJXz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkeL4bJXz .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkeL4bJXz .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkeL4bJXz .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkeL4bJXz .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkeL4bJXz .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-uxkeL4bJXz .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkeL4bJXz .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkeL4bJXz .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkeL4bJXz .mbr-text,
.cid-uxkeL4bJXz .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkeLL1ypc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkeLL1ypc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkeLL1ypc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkeLL1ypc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkeLL1ypc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkeLL1ypc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkeLL1ypc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkeLL1ypc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkeLL1ypc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkeLL1ypc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkeLL1ypc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkeLL1ypc .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-uxkeLL1ypc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkeLL1ypc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkeLL1ypc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkeLL1ypc .mbr-text,
.cid-uxkeLL1ypc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOrl1XLve {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOrl1XLve H1 {
  color: #000000;
}
.cid-uzGyPuBsUJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGyPuBsUJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGyPuBsUJ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGyPuBsUJ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGyPuBsUJ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGyPuBsUJ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGyPuBsUJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGyPuBsUJ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGyPuBsUJ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGyPuBsUJ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGyPuBsUJ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGyPuBsUJ .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-uzGyPuBsUJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGyPuBsUJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGyPuBsUJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGyPuBsUJ .mbr-text,
.cid-uzGyPuBsUJ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGyQ6SCnZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGyQ6SCnZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGyQ6SCnZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGyQ6SCnZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGyQ6SCnZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGyQ6SCnZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGyQ6SCnZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGyQ6SCnZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGyQ6SCnZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGyQ6SCnZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGyQ6SCnZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGyQ6SCnZ .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-uzGyQ6SCnZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGyQ6SCnZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGyQ6SCnZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGyQ6SCnZ .mbr-text,
.cid-uzGyQ6SCnZ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOrl5E43N {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOrl5E43N H1 {
  color: #000000;
}
.cid-uvOrl6LRkN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvOrl6LRkN h2 {
  text-align: left;
}
.cid-uvOrl6LRkN h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOrl6LRkN p {
  color: #767676;
  text-align: left;
}
.cid-uvOrl6LRkN .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOrl6LRkN .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOrl6LRkN .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOrl6LRkN .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOrl6LRkN .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOrl6LRkN .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOrl6LRkN .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvOrl6LRkN .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvOrl6LRkN .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvOrl6LRkN .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvOrl6LRkN .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOrl7Wtm7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOrl7Wtm7 H1 {
  color: #000000;
}
.cid-uvOrl9300X {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvOrl9300X .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOrl9300X .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOrl9300X .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOrl9300X .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvOrl9300X .box {
  right: 20%;
}
.cid-uvOrl9300X .text-box {
  right: 0;
}
.cid-uvOrl9300X .mbr-section-title,
.cid-uvOrl9300X .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvOrl9300X .text-box {
    display: none;
  }
  .cid-uvOrl9300X .mbr-section-title,
  .cid-uvOrl9300X .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOrl9300X .box {
    display: none;
  }
  .cid-uvOrl9300X .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOrl9300X .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOrl9300X .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOrl9300X .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOrl9300X .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOrl9300X .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOrladA3A {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOrlbgJHc {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvOrlbgJHc h2 {
  text-align: left;
}
.cid-uvOrlbgJHc h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOrlbgJHc p {
  color: #767676;
  text-align: left;
}
.cid-uvOrlbgJHc .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOrlbgJHc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOrlbgJHc .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOrlbgJHc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOrlbgJHc .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOrlbgJHc .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOrlbgJHc .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOrlbgJHc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOrlbgJHc .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOrlbgJHc .mbr-text {
  color: #232323;
}
.cid-uvOrlcr9z9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvOrlcr9z9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOrlcr9z9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOrlcr9z9 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvOrlcr9z9 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvOrlcr9z9 .container {
    padding: 0 26px;
  }
}
.cid-uvOrlcr9z9 .row {
  justify-content: center;
}
.cid-uvOrlcr9z9 .item {
  margin-bottom: 32px;
}
.cid-uvOrlcr9z9 .item a {
  display: block;
}
.cid-uvOrlcr9z9 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvOrlcr9z9 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvOrlcr9z9 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvOrlcr9z9 .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-uvOrlcr9z9 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvOrlcr9z9 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvOrlcr9z9 .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-uvOrlcr9z9 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvOrlcr9z9 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvOrlcr9z9 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvOrlcr9z9 .item-title {
  color: #ffffff;
}
.cid-uvOrlcr9z9 .mbr-date {
  color: #cacaca;
}
.cid-uvOrlcr9z9 .mbr-desc {
  color: #cacaca;
}
.cid-uvOrldCr4y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvOrldCr4y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOrldCr4y .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-uvOrldCr4y .container {
    padding: 0 16px;
  }
}
.cid-uvOrldCr4y .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvOrldCr4y .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOrldCr4y .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvOrldCr4y .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOrldCr4y .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvOrldCr4y .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvOrldCr4y .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvOrldCr4y .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvOrldCr4y .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvOrldCr4y .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-uvOrldCr4y .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvOrldCr4y .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvOrldCr4y .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvOrldCr4y .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvOrldCr4y .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvOrldCr4y .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvOrldCr4y .dragArea.row .form-group .form-control:hover,
.cid-uvOrldCr4y .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvOrldCr4y .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvOrldCr4y .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvOrldCr4y .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvOrldCr4y .mbr-title {
  color: #ffffff;
}
.cid-uvOrldCr4y .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvOrldCr4y .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvOrldCr4y .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvOrldCr4y .list {
  color: #08323C;
}
.cid-uvOrldCr4y label {
  color: #08323C;
}
.cid-uvOrldCr4y H3 {
  color: #000000;
}
.cid-uvOrldCr4y P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvOsXhFUXp {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOsXhFUXp H1 {
  text-align: center;
}
.cid-uDmKyyVnxy {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmKyyVnxy .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmKyyVnxy .video-block {
    width: 100% !important;
  }
}
.cid-uvOsXiQxdk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOsXjURfp {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvOsXjURfp .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOsXjURfp .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOsXjURfp .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOsXjURfp .box {
  left: 20%;
}
.cid-uvOsXjURfp .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvOsXjURfp .mbr-section-text,
.cid-uvOsXjURfp .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvOsXjURfp .text-box {
    display: none;
  }
  .cid-uvOsXjURfp .mbr-section-title,
  .cid-uvOsXjURfp .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOsXjURfp .box {
    display: none;
  }
  .cid-uvOsXjURfp .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOsXjURfp .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOsXjURfp .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOsXjURfp .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOsXjURfp .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOsXjURfp .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOsXkZ5CO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOsXkZ5CO H1 {
  text-align: center;
}
.cid-uvOsXm3IdP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOsXn6NZO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOsXn6NZO h2 {
  text-align: left;
}
.cid-uvOsXn6NZO h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOsXn6NZO p {
  color: #767676;
  text-align: left;
}
.cid-uvOsXn6NZO .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOsXn6NZO .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOsXn6NZO .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOsXn6NZO .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOsXn6NZO .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOsXn6NZO .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOsXn6NZO .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOsXn6NZO .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOsXn6NZO .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOsXn6NZO H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvOsXn6NZO P {
  color: #ffffff;
  text-align: left;
}
.cid-uvOsXn6NZO H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvOsXocUfe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOsXocUfe H1 {
  color: #000000;
}
.cid-uxkeS2wMMm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkeS2wMMm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkeS2wMMm .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkeS2wMMm .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkeS2wMMm .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkeS2wMMm .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkeS2wMMm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkeS2wMMm .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkeS2wMMm .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkeS2wMMm .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkeS2wMMm .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkeS2wMMm .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-uxkeS2wMMm .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkeS2wMMm .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkeS2wMMm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkeS2wMMm .mbr-text,
.cid-uxkeS2wMMm .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkeSNjuOk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkeSNjuOk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkeSNjuOk .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkeSNjuOk .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkeSNjuOk .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkeSNjuOk .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkeSNjuOk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkeSNjuOk .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkeSNjuOk .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkeSNjuOk .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkeSNjuOk .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkeSNjuOk .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-uxkeSNjuOk .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkeSNjuOk .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkeSNjuOk .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkeSNjuOk .mbr-text,
.cid-uxkeSNjuOk .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOsXrTZia {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOsXrTZia H1 {
  color: #000000;
}
.cid-uzGzcnVOjv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGzcnVOjv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGzcnVOjv .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGzcnVOjv .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGzcnVOjv .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGzcnVOjv .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGzcnVOjv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGzcnVOjv .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGzcnVOjv .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGzcnVOjv .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGzcnVOjv .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGzcnVOjv .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-uzGzcnVOjv .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGzcnVOjv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGzcnVOjv .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGzcnVOjv .mbr-text,
.cid-uzGzcnVOjv .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGzd0XZ2r {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGzd0XZ2r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGzd0XZ2r .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGzd0XZ2r .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGzd0XZ2r .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGzd0XZ2r .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGzd0XZ2r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGzd0XZ2r .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGzd0XZ2r .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGzd0XZ2r .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGzd0XZ2r .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGzd0XZ2r .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-uzGzd0XZ2r .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGzd0XZ2r .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGzd0XZ2r .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGzd0XZ2r .mbr-text,
.cid-uzGzd0XZ2r .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOsXvGpHH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOsXvGpHH H1 {
  color: #000000;
}
.cid-uvOsXwQfJq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvOsXwQfJq h2 {
  text-align: left;
}
.cid-uvOsXwQfJq h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOsXwQfJq p {
  color: #767676;
  text-align: left;
}
.cid-uvOsXwQfJq .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOsXwQfJq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOsXwQfJq .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOsXwQfJq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOsXwQfJq .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOsXwQfJq .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOsXwQfJq .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvOsXwQfJq .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvOsXwQfJq .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvOsXwQfJq .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvOsXwQfJq .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOsXy20wy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOsXy20wy H1 {
  color: #000000;
}
.cid-uvOsXzaDu9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvOsXzaDu9 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOsXzaDu9 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOsXzaDu9 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOsXzaDu9 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvOsXzaDu9 .box {
  right: 20%;
}
.cid-uvOsXzaDu9 .text-box {
  right: 0;
}
.cid-uvOsXzaDu9 .mbr-section-title,
.cid-uvOsXzaDu9 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvOsXzaDu9 .text-box {
    display: none;
  }
  .cid-uvOsXzaDu9 .mbr-section-title,
  .cid-uvOsXzaDu9 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOsXzaDu9 .box {
    display: none;
  }
  .cid-uvOsXzaDu9 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOsXzaDu9 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOsXzaDu9 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOsXzaDu9 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOsXzaDu9 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOsXzaDu9 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOsXAkXZ8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOsXBt2C8 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvOsXBt2C8 h2 {
  text-align: left;
}
.cid-uvOsXBt2C8 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOsXBt2C8 p {
  color: #767676;
  text-align: left;
}
.cid-uvOsXBt2C8 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOsXBt2C8 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOsXBt2C8 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOsXBt2C8 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOsXBt2C8 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOsXBt2C8 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOsXBt2C8 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOsXBt2C8 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOsXBt2C8 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOsXBt2C8 .mbr-text {
  color: #232323;
}
.cid-uvOsXCFNoC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvOsXCFNoC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOsXCFNoC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOsXCFNoC .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvOsXCFNoC .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvOsXCFNoC .container {
    padding: 0 26px;
  }
}
.cid-uvOsXCFNoC .row {
  justify-content: center;
}
.cid-uvOsXCFNoC .item {
  margin-bottom: 32px;
}
.cid-uvOsXCFNoC .item a {
  display: block;
}
.cid-uvOsXCFNoC .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvOsXCFNoC .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvOsXCFNoC .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvOsXCFNoC .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-uvOsXCFNoC .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvOsXCFNoC .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvOsXCFNoC .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-uvOsXCFNoC .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvOsXCFNoC .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvOsXCFNoC .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvOsXCFNoC .item-title {
  color: #ffffff;
}
.cid-uvOsXCFNoC .mbr-date {
  color: #cacaca;
}
.cid-uvOsXCFNoC .mbr-desc {
  color: #cacaca;
}
.cid-uvOsXDTEeK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvOsXDTEeK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOsXDTEeK .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-uvOsXDTEeK .container {
    padding: 0 16px;
  }
}
.cid-uvOsXDTEeK .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvOsXDTEeK .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOsXDTEeK .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvOsXDTEeK .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOsXDTEeK .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvOsXDTEeK .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvOsXDTEeK .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvOsXDTEeK .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvOsXDTEeK .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvOsXDTEeK .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-uvOsXDTEeK .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvOsXDTEeK .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvOsXDTEeK .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvOsXDTEeK .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvOsXDTEeK .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvOsXDTEeK .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvOsXDTEeK .dragArea.row .form-group .form-control:hover,
.cid-uvOsXDTEeK .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvOsXDTEeK .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvOsXDTEeK .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvOsXDTEeK .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvOsXDTEeK .mbr-title {
  color: #ffffff;
}
.cid-uvOsXDTEeK .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvOsXDTEeK .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvOsXDTEeK .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvOsXDTEeK .list {
  color: #08323C;
}
.cid-uvOsXDTEeK label {
  color: #08323C;
}
.cid-uvOsXDTEeK H3 {
  color: #000000;
}
.cid-uvOsXDTEeK P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvOuIuEouZ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOuIuEouZ H1 {
  text-align: center;
}
.cid-uDmKBkR99N {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmKBkR99N .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmKBkR99N .video-block {
    width: 100% !important;
  }
}
.cid-uvOuIvPMRI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOuIwU6oa {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvOuIwU6oa .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOuIwU6oa .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOuIwU6oa .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOuIwU6oa .box {
  left: 20%;
}
.cid-uvOuIwU6oa .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvOuIwU6oa .mbr-section-text,
.cid-uvOuIwU6oa .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvOuIwU6oa .text-box {
    display: none;
  }
  .cid-uvOuIwU6oa .mbr-section-title,
  .cid-uvOuIwU6oa .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOuIwU6oa .box {
    display: none;
  }
  .cid-uvOuIwU6oa .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOuIwU6oa .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOuIwU6oa .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOuIwU6oa .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOuIwU6oa .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOuIwU6oa .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOuIy0aMw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOuIy0aMw H1 {
  text-align: center;
}
.cid-uvOuIz5EJA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOuIA95WL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOuIA95WL h2 {
  text-align: left;
}
.cid-uvOuIA95WL h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOuIA95WL p {
  color: #767676;
  text-align: left;
}
.cid-uvOuIA95WL .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOuIA95WL .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOuIA95WL .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOuIA95WL .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOuIA95WL .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOuIA95WL .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOuIA95WL .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOuIA95WL .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOuIA95WL .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOuIA95WL H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvOuIA95WL P {
  color: #ffffff;
  text-align: left;
}
.cid-uvOuIA95WL H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvOuIBjUMB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOuIBjUMB H1 {
  color: #000000;
}
.cid-uxkf1Kqgfz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkf1Kqgfz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkf1Kqgfz .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkf1Kqgfz .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkf1Kqgfz .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkf1Kqgfz .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkf1Kqgfz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkf1Kqgfz .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkf1Kqgfz .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkf1Kqgfz .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkf1Kqgfz .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkf1Kqgfz .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-uxkf1Kqgfz .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkf1Kqgfz .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkf1Kqgfz .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkf1Kqgfz .mbr-text,
.cid-uxkf1Kqgfz .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkf2qOFL7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkf2qOFL7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkf2qOFL7 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkf2qOFL7 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkf2qOFL7 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkf2qOFL7 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkf2qOFL7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkf2qOFL7 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkf2qOFL7 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkf2qOFL7 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkf2qOFL7 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkf2qOFL7 .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-uxkf2qOFL7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkf2qOFL7 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkf2qOFL7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkf2qOFL7 .mbr-text,
.cid-uxkf2qOFL7 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOuIF0z4U {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOuIF0z4U H1 {
  color: #000000;
}
.cid-uzGzZjMVX7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGzZjMVX7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGzZjMVX7 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGzZjMVX7 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGzZjMVX7 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGzZjMVX7 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGzZjMVX7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGzZjMVX7 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGzZjMVX7 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGzZjMVX7 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGzZjMVX7 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGzZjMVX7 .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-uzGzZjMVX7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGzZjMVX7 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGzZjMVX7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGzZjMVX7 .mbr-text,
.cid-uzGzZjMVX7 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGzZTyCAd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGzZTyCAd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGzZTyCAd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGzZTyCAd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGzZTyCAd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGzZTyCAd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGzZTyCAd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGzZTyCAd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGzZTyCAd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGzZTyCAd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGzZTyCAd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGzZTyCAd .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-uzGzZTyCAd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGzZTyCAd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGzZTyCAd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGzZTyCAd .mbr-text,
.cid-uzGzZTyCAd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOuIIPAMB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOuIIPAMB H1 {
  color: #000000;
}
.cid-uvOuIJZh1g {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvOuIJZh1g h2 {
  text-align: left;
}
.cid-uvOuIJZh1g h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOuIJZh1g p {
  color: #767676;
  text-align: left;
}
.cid-uvOuIJZh1g .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOuIJZh1g .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOuIJZh1g .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOuIJZh1g .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOuIJZh1g .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOuIJZh1g .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOuIJZh1g .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvOuIJZh1g .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvOuIJZh1g .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvOuIJZh1g .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvOuIJZh1g .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOuILbXas {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOuILbXas H1 {
  color: #000000;
}
.cid-uvOuIMmf7I {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvOuIMmf7I .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOuIMmf7I .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOuIMmf7I .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOuIMmf7I .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvOuIMmf7I .box {
  right: 20%;
}
.cid-uvOuIMmf7I .text-box {
  right: 0;
}
.cid-uvOuIMmf7I .mbr-section-title,
.cid-uvOuIMmf7I .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvOuIMmf7I .text-box {
    display: none;
  }
  .cid-uvOuIMmf7I .mbr-section-title,
  .cid-uvOuIMmf7I .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOuIMmf7I .box {
    display: none;
  }
  .cid-uvOuIMmf7I .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOuIMmf7I .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOuIMmf7I .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOuIMmf7I .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOuIMmf7I .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOuIMmf7I .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOuINyodK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOuIOI63l {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvOuIOI63l h2 {
  text-align: left;
}
.cid-uvOuIOI63l h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOuIOI63l p {
  color: #767676;
  text-align: left;
}
.cid-uvOuIOI63l .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOuIOI63l .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOuIOI63l .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOuIOI63l .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOuIOI63l .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOuIOI63l .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOuIOI63l .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOuIOI63l .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOuIOI63l .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOuIOI63l .mbr-text {
  color: #232323;
}
.cid-uvOuIPVZrE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvOuIPVZrE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOuIPVZrE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOuIPVZrE .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvOuIPVZrE .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvOuIPVZrE .container {
    padding: 0 26px;
  }
}
.cid-uvOuIPVZrE .row {
  justify-content: center;
}
.cid-uvOuIPVZrE .item {
  margin-bottom: 32px;
}
.cid-uvOuIPVZrE .item a {
  display: block;
}
.cid-uvOuIPVZrE .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvOuIPVZrE .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvOuIPVZrE .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvOuIPVZrE .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-uvOuIPVZrE .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvOuIPVZrE .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvOuIPVZrE .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-uvOuIPVZrE .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvOuIPVZrE .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvOuIPVZrE .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvOuIPVZrE .item-title {
  color: #ffffff;
}
.cid-uvOuIPVZrE .mbr-date {
  color: #cacaca;
}
.cid-uvOuIPVZrE .mbr-desc {
  color: #cacaca;
}
.cid-uvOuIRa8T1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvOuIRa8T1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOuIRa8T1 .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-uvOuIRa8T1 .container {
    padding: 0 16px;
  }
}
.cid-uvOuIRa8T1 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvOuIRa8T1 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOuIRa8T1 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvOuIRa8T1 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOuIRa8T1 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvOuIRa8T1 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvOuIRa8T1 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvOuIRa8T1 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvOuIRa8T1 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvOuIRa8T1 .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-uvOuIRa8T1 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvOuIRa8T1 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvOuIRa8T1 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvOuIRa8T1 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvOuIRa8T1 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvOuIRa8T1 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvOuIRa8T1 .dragArea.row .form-group .form-control:hover,
.cid-uvOuIRa8T1 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvOuIRa8T1 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvOuIRa8T1 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvOuIRa8T1 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvOuIRa8T1 .mbr-title {
  color: #ffffff;
}
.cid-uvOuIRa8T1 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvOuIRa8T1 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvOuIRa8T1 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvOuIRa8T1 .list {
  color: #08323C;
}
.cid-uvOuIRa8T1 label {
  color: #08323C;
}
.cid-uvOuIRa8T1 H3 {
  color: #000000;
}
.cid-uvOuIRa8T1 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvOwzcLL89 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOwzcLL89 H1 {
  text-align: center;
}
.cid-uDmKDMFqYj {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmKDMFqYj .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmKDMFqYj .video-block {
    width: 100% !important;
  }
}
.cid-uvOwze0n4f {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOwzf5BpO {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvOwzf5BpO .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOwzf5BpO .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOwzf5BpO .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOwzf5BpO .box {
  left: 20%;
}
.cid-uvOwzf5BpO .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvOwzf5BpO .mbr-section-text,
.cid-uvOwzf5BpO .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvOwzf5BpO .text-box {
    display: none;
  }
  .cid-uvOwzf5BpO .mbr-section-title,
  .cid-uvOwzf5BpO .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOwzf5BpO .box {
    display: none;
  }
  .cid-uvOwzf5BpO .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOwzf5BpO .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOwzf5BpO .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOwzf5BpO .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOwzf5BpO .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOwzf5BpO .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOwzgdAPf {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOwzgdAPf H1 {
  text-align: center;
}
.cid-uvOwzhkVZh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOwzitr7f {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOwzitr7f h2 {
  text-align: left;
}
.cid-uvOwzitr7f h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOwzitr7f p {
  color: #767676;
  text-align: left;
}
.cid-uvOwzitr7f .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOwzitr7f .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOwzitr7f .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOwzitr7f .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOwzitr7f .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOwzitr7f .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOwzitr7f .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOwzitr7f .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOwzitr7f .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOwzitr7f H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvOwzitr7f P {
  color: #ffffff;
  text-align: left;
}
.cid-uvOwzitr7f H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvOwzjNciK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOwzjNciK H1 {
  color: #000000;
}
.cid-uxkf79ipLu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkf79ipLu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkf79ipLu .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkf79ipLu .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkf79ipLu .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkf79ipLu .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkf79ipLu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkf79ipLu .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkf79ipLu .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkf79ipLu .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkf79ipLu .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkf79ipLu .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-uxkf79ipLu .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkf79ipLu .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkf79ipLu .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkf79ipLu .mbr-text,
.cid-uxkf79ipLu .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkf7RlHmz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkf7RlHmz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkf7RlHmz .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkf7RlHmz .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkf7RlHmz .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkf7RlHmz .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkf7RlHmz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkf7RlHmz .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkf7RlHmz .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkf7RlHmz .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkf7RlHmz .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkf7RlHmz .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-uxkf7RlHmz .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkf7RlHmz .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkf7RlHmz .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkf7RlHmz .mbr-text,
.cid-uxkf7RlHmz .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOwznFGOG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOwznFGOG H1 {
  color: #000000;
}
.cid-uzGAgHaM6K {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGAgHaM6K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGAgHaM6K .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGAgHaM6K .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGAgHaM6K .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGAgHaM6K .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGAgHaM6K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGAgHaM6K .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGAgHaM6K .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGAgHaM6K .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGAgHaM6K .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGAgHaM6K .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-uzGAgHaM6K .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGAgHaM6K .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGAgHaM6K .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGAgHaM6K .mbr-text,
.cid-uzGAgHaM6K .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGAhhcPPv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGAhhcPPv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGAhhcPPv .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGAhhcPPv .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGAhhcPPv .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGAhhcPPv .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGAhhcPPv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGAhhcPPv .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGAhhcPPv .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGAhhcPPv .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGAhhcPPv .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGAhhcPPv .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-uzGAhhcPPv .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGAhhcPPv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGAhhcPPv .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGAhhcPPv .mbr-text,
.cid-uzGAhhcPPv .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOwzruO5D {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOwzruO5D H1 {
  color: #000000;
}
.cid-uvOwzsEr9f {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvOwzsEr9f h2 {
  text-align: left;
}
.cid-uvOwzsEr9f h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOwzsEr9f p {
  color: #767676;
  text-align: left;
}
.cid-uvOwzsEr9f .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOwzsEr9f .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOwzsEr9f .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOwzsEr9f .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOwzsEr9f .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOwzsEr9f .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOwzsEr9f .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvOwzsEr9f .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvOwzsEr9f .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvOwzsEr9f .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvOwzsEr9f .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOwztS2kl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOwztS2kl H1 {
  color: #000000;
}
.cid-uvOwzv3V5C {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvOwzv3V5C .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOwzv3V5C .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOwzv3V5C .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOwzv3V5C .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvOwzv3V5C .box {
  right: 20%;
}
.cid-uvOwzv3V5C .text-box {
  right: 0;
}
.cid-uvOwzv3V5C .mbr-section-title,
.cid-uvOwzv3V5C .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvOwzv3V5C .text-box {
    display: none;
  }
  .cid-uvOwzv3V5C .mbr-section-title,
  .cid-uvOwzv3V5C .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOwzv3V5C .box {
    display: none;
  }
  .cid-uvOwzv3V5C .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOwzv3V5C .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOwzv3V5C .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOwzv3V5C .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOwzv3V5C .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOwzv3V5C .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOwzwhfVL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOwzxs8rW {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvOwzxs8rW h2 {
  text-align: left;
}
.cid-uvOwzxs8rW h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOwzxs8rW p {
  color: #767676;
  text-align: left;
}
.cid-uvOwzxs8rW .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOwzxs8rW .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOwzxs8rW .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOwzxs8rW .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOwzxs8rW .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOwzxs8rW .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOwzxs8rW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOwzxs8rW .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOwzxs8rW .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOwzxs8rW .mbr-text {
  color: #232323;
}
.cid-uvOwzyKKc6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvOwzyKKc6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOwzyKKc6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOwzyKKc6 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvOwzyKKc6 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvOwzyKKc6 .container {
    padding: 0 26px;
  }
}
.cid-uvOwzyKKc6 .row {
  justify-content: center;
}
.cid-uvOwzyKKc6 .item {
  margin-bottom: 32px;
}
.cid-uvOwzyKKc6 .item a {
  display: block;
}
.cid-uvOwzyKKc6 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvOwzyKKc6 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvOwzyKKc6 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvOwzyKKc6 .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-uvOwzyKKc6 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvOwzyKKc6 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvOwzyKKc6 .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-uvOwzyKKc6 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvOwzyKKc6 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvOwzyKKc6 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvOwzyKKc6 .item-title {
  color: #ffffff;
}
.cid-uvOwzyKKc6 .mbr-date {
  color: #cacaca;
}
.cid-uvOwzyKKc6 .mbr-desc {
  color: #cacaca;
}
.cid-uvOwzA0h8h {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvOwzA0h8h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOwzA0h8h .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-uvOwzA0h8h .container {
    padding: 0 16px;
  }
}
.cid-uvOwzA0h8h .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvOwzA0h8h .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOwzA0h8h .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvOwzA0h8h .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOwzA0h8h .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvOwzA0h8h .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvOwzA0h8h .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvOwzA0h8h .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvOwzA0h8h .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvOwzA0h8h .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-uvOwzA0h8h .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvOwzA0h8h .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvOwzA0h8h .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvOwzA0h8h .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvOwzA0h8h .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvOwzA0h8h .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvOwzA0h8h .dragArea.row .form-group .form-control:hover,
.cid-uvOwzA0h8h .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvOwzA0h8h .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvOwzA0h8h .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvOwzA0h8h .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvOwzA0h8h .mbr-title {
  color: #ffffff;
}
.cid-uvOwzA0h8h .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvOwzA0h8h .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvOwzA0h8h .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvOwzA0h8h .list {
  color: #08323C;
}
.cid-uvOwzA0h8h label {
  color: #08323C;
}
.cid-uvOwzA0h8h H3 {
  color: #000000;
}
.cid-uvOwzA0h8h P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvOyYYhxbb {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOyYYhxbb H1 {
  text-align: center;
}
.cid-uDmKH2i3d3 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmKH2i3d3 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmKH2i3d3 .video-block {
    width: 100% !important;
  }
}
.cid-uvOyYYvA9P {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOyYYFAUD {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvOyYYFAUD .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOyYYFAUD .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOyYYFAUD .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOyYYFAUD .box {
  left: 20%;
}
.cid-uvOyYYFAUD .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvOyYYFAUD .mbr-section-text,
.cid-uvOyYYFAUD .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvOyYYFAUD .text-box {
    display: none;
  }
  .cid-uvOyYYFAUD .mbr-section-title,
  .cid-uvOyYYFAUD .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOyYYFAUD .box {
    display: none;
  }
  .cid-uvOyYYFAUD .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOyYYFAUD .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOyYYFAUD .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOyYYFAUD .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOyYYFAUD .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOyYYFAUD .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOyYYRsyw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOyYYRsyw H1 {
  text-align: center;
}
.cid-uvOyYYZXqg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOyYZ9ghX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOyYZ9ghX h2 {
  text-align: left;
}
.cid-uvOyYZ9ghX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOyYZ9ghX p {
  color: #767676;
  text-align: left;
}
.cid-uvOyYZ9ghX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOyYZ9ghX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOyYZ9ghX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOyYZ9ghX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOyYZ9ghX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOyYZ9ghX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOyYZ9ghX .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOyYZ9ghX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOyYZ9ghX .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOyYZ9ghX H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvOyYZ9ghX P {
  color: #ffffff;
  text-align: left;
}
.cid-uvOyYZ9ghX H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvOyYZoHxs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOyYZoHxs H1 {
  color: #000000;
}
.cid-uxkfgrNyG7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkfgrNyG7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkfgrNyG7 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkfgrNyG7 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkfgrNyG7 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkfgrNyG7 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkfgrNyG7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkfgrNyG7 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkfgrNyG7 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkfgrNyG7 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkfgrNyG7 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkfgrNyG7 .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-uxkfgrNyG7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkfgrNyG7 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkfgrNyG7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkfgrNyG7 .mbr-text,
.cid-uxkfgrNyG7 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkfh7ulp2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkfh7ulp2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkfh7ulp2 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkfh7ulp2 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkfh7ulp2 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkfh7ulp2 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkfh7ulp2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkfh7ulp2 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkfh7ulp2 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkfh7ulp2 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkfh7ulp2 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkfh7ulp2 .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-uxkfh7ulp2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkfh7ulp2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkfh7ulp2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkfh7ulp2 .mbr-text,
.cid-uxkfh7ulp2 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOyZ0iPFk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOyZ0iPFk H1 {
  color: #000000;
}
.cid-uzGAuZXvuG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGAuZXvuG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGAuZXvuG .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGAuZXvuG .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGAuZXvuG .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGAuZXvuG .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGAuZXvuG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGAuZXvuG .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGAuZXvuG .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGAuZXvuG .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGAuZXvuG .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGAuZXvuG .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-uzGAuZXvuG .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGAuZXvuG .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGAuZXvuG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGAuZXvuG .mbr-text,
.cid-uzGAuZXvuG .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGAvAIfVl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGAvAIfVl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGAvAIfVl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGAvAIfVl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGAvAIfVl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGAvAIfVl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGAvAIfVl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGAvAIfVl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGAvAIfVl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGAvAIfVl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGAvAIfVl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGAvAIfVl .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-uzGAvAIfVl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGAvAIfVl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGAvAIfVl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGAvAIfVl .mbr-text,
.cid-uzGAvAIfVl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOyZ1rPWj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOyZ1rPWj H1 {
  color: #000000;
}
.cid-uvOyZ1DQLj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvOyZ1DQLj h2 {
  text-align: left;
}
.cid-uvOyZ1DQLj h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOyZ1DQLj p {
  color: #767676;
  text-align: left;
}
.cid-uvOyZ1DQLj .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOyZ1DQLj .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOyZ1DQLj .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOyZ1DQLj .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOyZ1DQLj .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOyZ1DQLj .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOyZ1DQLj .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvOyZ1DQLj .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvOyZ1DQLj .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvOyZ1DQLj .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvOyZ1DQLj .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOyZ1TWuc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOyZ1TWuc H1 {
  color: #000000;
}
.cid-uvOyZ25UiL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvOyZ25UiL .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOyZ25UiL .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOyZ25UiL .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOyZ25UiL .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvOyZ25UiL .box {
  right: 20%;
}
.cid-uvOyZ25UiL .text-box {
  right: 0;
}
.cid-uvOyZ25UiL .mbr-section-title,
.cid-uvOyZ25UiL .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvOyZ25UiL .text-box {
    display: none;
  }
  .cid-uvOyZ25UiL .mbr-section-title,
  .cid-uvOyZ25UiL .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOyZ25UiL .box {
    display: none;
  }
  .cid-uvOyZ25UiL .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOyZ25UiL .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOyZ25UiL .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOyZ25UiL .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOyZ25UiL .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOyZ25UiL .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOyZ2iHOA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOyZ2uEoR {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvOyZ2uEoR h2 {
  text-align: left;
}
.cid-uvOyZ2uEoR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOyZ2uEoR p {
  color: #767676;
  text-align: left;
}
.cid-uvOyZ2uEoR .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOyZ2uEoR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOyZ2uEoR .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOyZ2uEoR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOyZ2uEoR .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOyZ2uEoR .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOyZ2uEoR .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOyZ2uEoR .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOyZ2uEoR .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOyZ2uEoR .mbr-text {
  color: #232323;
}
.cid-uvOyZ2OAwE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvOyZ2OAwE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOyZ2OAwE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOyZ2OAwE .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvOyZ2OAwE .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvOyZ2OAwE .container {
    padding: 0 26px;
  }
}
.cid-uvOyZ2OAwE .row {
  justify-content: center;
}
.cid-uvOyZ2OAwE .item {
  margin-bottom: 32px;
}
.cid-uvOyZ2OAwE .item a {
  display: block;
}
.cid-uvOyZ2OAwE .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvOyZ2OAwE .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvOyZ2OAwE .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvOyZ2OAwE .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-uvOyZ2OAwE .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvOyZ2OAwE .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvOyZ2OAwE .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-uvOyZ2OAwE .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvOyZ2OAwE .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvOyZ2OAwE .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvOyZ2OAwE .item-title {
  color: #ffffff;
}
.cid-uvOyZ2OAwE .mbr-date {
  color: #cacaca;
}
.cid-uvOyZ2OAwE .mbr-desc {
  color: #cacaca;
}
.cid-uvOyZ34Hz4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvOyZ34Hz4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOyZ34Hz4 .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-uvOyZ34Hz4 .container {
    padding: 0 16px;
  }
}
.cid-uvOyZ34Hz4 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvOyZ34Hz4 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOyZ34Hz4 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvOyZ34Hz4 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOyZ34Hz4 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvOyZ34Hz4 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvOyZ34Hz4 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvOyZ34Hz4 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvOyZ34Hz4 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvOyZ34Hz4 .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-uvOyZ34Hz4 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvOyZ34Hz4 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvOyZ34Hz4 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvOyZ34Hz4 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvOyZ34Hz4 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvOyZ34Hz4 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvOyZ34Hz4 .dragArea.row .form-group .form-control:hover,
.cid-uvOyZ34Hz4 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvOyZ34Hz4 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvOyZ34Hz4 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvOyZ34Hz4 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvOyZ34Hz4 .mbr-title {
  color: #ffffff;
}
.cid-uvOyZ34Hz4 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvOyZ34Hz4 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvOyZ34Hz4 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvOyZ34Hz4 .list {
  color: #08323C;
}
.cid-uvOyZ34Hz4 label {
  color: #08323C;
}
.cid-uvOyZ34Hz4 H3 {
  color: #000000;
}
.cid-uvOyZ34Hz4 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvOzMm1p8n {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOzMm1p8n H1 {
  text-align: center;
}
.cid-uDmKJCUqst {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmKJCUqst .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmKJCUqst .video-block {
    width: 100% !important;
  }
}
.cid-uvOzMmhlVs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOzMmsmBB {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvOzMmsmBB .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOzMmsmBB .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOzMmsmBB .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOzMmsmBB .box {
  left: 20%;
}
.cid-uvOzMmsmBB .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvOzMmsmBB .mbr-section-text,
.cid-uvOzMmsmBB .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvOzMmsmBB .text-box {
    display: none;
  }
  .cid-uvOzMmsmBB .mbr-section-title,
  .cid-uvOzMmsmBB .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOzMmsmBB .box {
    display: none;
  }
  .cid-uvOzMmsmBB .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOzMmsmBB .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOzMmsmBB .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOzMmsmBB .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOzMmsmBB .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOzMmsmBB .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOzMmCmDh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOzMmCmDh H1 {
  text-align: center;
}
.cid-uvOzMmNXC4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOzMmXfW1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOzMmXfW1 h2 {
  text-align: left;
}
.cid-uvOzMmXfW1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOzMmXfW1 p {
  color: #767676;
  text-align: left;
}
.cid-uvOzMmXfW1 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOzMmXfW1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOzMmXfW1 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOzMmXfW1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOzMmXfW1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOzMmXfW1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOzMmXfW1 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOzMmXfW1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOzMmXfW1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOzMmXfW1 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvOzMmXfW1 P {
  color: #ffffff;
  text-align: left;
}
.cid-uvOzMmXfW1 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvOzMneh3q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOzMneh3q H1 {
  color: #000000;
}
.cid-uxkfoPqfyR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkfoPqfyR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkfoPqfyR .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkfoPqfyR .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkfoPqfyR .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkfoPqfyR .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkfoPqfyR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkfoPqfyR .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkfoPqfyR .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkfoPqfyR .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkfoPqfyR .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkfoPqfyR .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-uxkfoPqfyR .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkfoPqfyR .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkfoPqfyR .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkfoPqfyR .mbr-text,
.cid-uxkfoPqfyR .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkfpuNJQm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkfpuNJQm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkfpuNJQm .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkfpuNJQm .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkfpuNJQm .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkfpuNJQm .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkfpuNJQm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkfpuNJQm .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkfpuNJQm .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkfpuNJQm .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkfpuNJQm .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkfpuNJQm .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-uxkfpuNJQm .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkfpuNJQm .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkfpuNJQm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkfpuNJQm .mbr-text,
.cid-uxkfpuNJQm .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOzMocpXA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOzMocpXA H1 {
  color: #000000;
}
.cid-uzGARZgLFG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGARZgLFG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGARZgLFG .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGARZgLFG .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGARZgLFG .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGARZgLFG .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGARZgLFG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGARZgLFG .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGARZgLFG .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGARZgLFG .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGARZgLFG .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGARZgLFG .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-uzGARZgLFG .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGARZgLFG .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGARZgLFG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGARZgLFG .mbr-text,
.cid-uzGARZgLFG .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGASzw2mc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGASzw2mc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGASzw2mc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGASzw2mc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGASzw2mc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGASzw2mc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGASzw2mc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGASzw2mc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGASzw2mc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGASzw2mc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGASzw2mc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGASzw2mc .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-uzGASzw2mc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGASzw2mc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGASzw2mc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGASzw2mc .mbr-text,
.cid-uzGASzw2mc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOzMphV75 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOzMphV75 H1 {
  color: #000000;
}
.cid-uvOzMpxCnk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvOzMpxCnk h2 {
  text-align: left;
}
.cid-uvOzMpxCnk h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOzMpxCnk p {
  color: #767676;
  text-align: left;
}
.cid-uvOzMpxCnk .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOzMpxCnk .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOzMpxCnk .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOzMpxCnk .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOzMpxCnk .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOzMpxCnk .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOzMpxCnk .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvOzMpxCnk .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvOzMpxCnk .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvOzMpxCnk .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvOzMpxCnk .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOzMpMPk9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOzMpMPk9 H1 {
  color: #000000;
}
.cid-uvOzMpZh6X {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvOzMpZh6X .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOzMpZh6X .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOzMpZh6X .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOzMpZh6X .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvOzMpZh6X .box {
  right: 20%;
}
.cid-uvOzMpZh6X .text-box {
  right: 0;
}
.cid-uvOzMpZh6X .mbr-section-title,
.cid-uvOzMpZh6X .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvOzMpZh6X .text-box {
    display: none;
  }
  .cid-uvOzMpZh6X .mbr-section-title,
  .cid-uvOzMpZh6X .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOzMpZh6X .box {
    display: none;
  }
  .cid-uvOzMpZh6X .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOzMpZh6X .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOzMpZh6X .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOzMpZh6X .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOzMpZh6X .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOzMpZh6X .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOzMqeOoZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOzMqv5gc {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvOzMqv5gc h2 {
  text-align: left;
}
.cid-uvOzMqv5gc h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOzMqv5gc p {
  color: #767676;
  text-align: left;
}
.cid-uvOzMqv5gc .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOzMqv5gc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOzMqv5gc .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOzMqv5gc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOzMqv5gc .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOzMqv5gc .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOzMqv5gc .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOzMqv5gc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOzMqv5gc .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOzMqv5gc .mbr-text {
  color: #232323;
}
.cid-uvOzMqPQHU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvOzMqPQHU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOzMqPQHU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOzMqPQHU .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvOzMqPQHU .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvOzMqPQHU .container {
    padding: 0 26px;
  }
}
.cid-uvOzMqPQHU .row {
  justify-content: center;
}
.cid-uvOzMqPQHU .item {
  margin-bottom: 32px;
}
.cid-uvOzMqPQHU .item a {
  display: block;
}
.cid-uvOzMqPQHU .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvOzMqPQHU .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvOzMqPQHU .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvOzMqPQHU .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-uvOzMqPQHU .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvOzMqPQHU .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvOzMqPQHU .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-uvOzMqPQHU .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvOzMqPQHU .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvOzMqPQHU .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvOzMqPQHU .item-title {
  color: #ffffff;
}
.cid-uvOzMqPQHU .mbr-date {
  color: #cacaca;
}
.cid-uvOzMqPQHU .mbr-desc {
  color: #cacaca;
}
.cid-uvOzMrb55H {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvOzMrb55H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOzMrb55H .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-uvOzMrb55H .container {
    padding: 0 16px;
  }
}
.cid-uvOzMrb55H .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvOzMrb55H .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOzMrb55H .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvOzMrb55H .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOzMrb55H .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvOzMrb55H .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvOzMrb55H .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvOzMrb55H .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvOzMrb55H .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvOzMrb55H .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-uvOzMrb55H .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvOzMrb55H .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvOzMrb55H .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvOzMrb55H .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvOzMrb55H .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvOzMrb55H .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvOzMrb55H .dragArea.row .form-group .form-control:hover,
.cid-uvOzMrb55H .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvOzMrb55H .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvOzMrb55H .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvOzMrb55H .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvOzMrb55H .mbr-title {
  color: #ffffff;
}
.cid-uvOzMrb55H .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvOzMrb55H .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvOzMrb55H .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvOzMrb55H .list {
  color: #08323C;
}
.cid-uvOzMrb55H label {
  color: #08323C;
}
.cid-uvOzMrb55H H3 {
  color: #000000;
}
.cid-uvOzMrb55H P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvPkghcnnC {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPkghcnnC H1 {
  text-align: center;
}
.cid-uDmLdo1qG7 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmLdo1qG7 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmLdo1qG7 .video-block {
    width: 100% !important;
  }
}
.cid-uvPkghsFb9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPkghEbyY {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvPkghEbyY .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPkghEbyY .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPkghEbyY .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPkghEbyY .box {
  left: 20%;
}
.cid-uvPkghEbyY .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvPkghEbyY .mbr-section-text,
.cid-uvPkghEbyY .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvPkghEbyY .text-box {
    display: none;
  }
  .cid-uvPkghEbyY .mbr-section-title,
  .cid-uvPkghEbyY .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPkghEbyY .box {
    display: none;
  }
  .cid-uvPkghEbyY .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPkghEbyY .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPkghEbyY .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPkghEbyY .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPkghEbyY .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPkghEbyY .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPkghPnZW {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPkghPnZW H1 {
  text-align: center;
}
.cid-uvPkgi1ZT3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPkgicVaC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPkgicVaC h2 {
  text-align: left;
}
.cid-uvPkgicVaC h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPkgicVaC p {
  color: #767676;
  text-align: left;
}
.cid-uvPkgicVaC .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPkgicVaC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPkgicVaC .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPkgicVaC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPkgicVaC .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPkgicVaC .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPkgicVaC .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPkgicVaC .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPkgicVaC .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPkgicVaC H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvPkgicVaC P {
  color: #ffffff;
  text-align: left;
}
.cid-uvPkgicVaC H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvPkgirly1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPkgirly1 H1 {
  color: #000000;
}
.cid-uxkhTXSxNF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkhTXSxNF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkhTXSxNF .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkhTXSxNF .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkhTXSxNF .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkhTXSxNF .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkhTXSxNF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkhTXSxNF .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkhTXSxNF .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkhTXSxNF .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkhTXSxNF .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkhTXSxNF .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-uxkhTXSxNF .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkhTXSxNF .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkhTXSxNF .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkhTXSxNF .mbr-text,
.cid-uxkhTXSxNF .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkhUGtabh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkhUGtabh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkhUGtabh .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkhUGtabh .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkhUGtabh .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkhUGtabh .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkhUGtabh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkhUGtabh .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkhUGtabh .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkhUGtabh .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkhUGtabh .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkhUGtabh .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-uxkhUGtabh .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkhUGtabh .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkhUGtabh .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkhUGtabh .mbr-text,
.cid-uxkhUGtabh .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPkgjpsdI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPkgjpsdI H1 {
  color: #000000;
}
.cid-uxkhVlGnba {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkhVlGnba .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkhVlGnba .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkhVlGnba .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkhVlGnba .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkhVlGnba .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkhVlGnba .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkhVlGnba .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkhVlGnba .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkhVlGnba .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkhVlGnba .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkhVlGnba .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-uxkhVlGnba .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkhVlGnba .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkhVlGnba .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkhVlGnba .mbr-text,
.cid-uxkhVlGnba .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkhVZSGbD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkhVZSGbD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkhVZSGbD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkhVZSGbD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkhVZSGbD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkhVZSGbD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkhVZSGbD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkhVZSGbD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkhVZSGbD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkhVZSGbD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkhVZSGbD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkhVZSGbD .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-uxkhVZSGbD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkhVZSGbD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkhVZSGbD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkhVZSGbD .mbr-text,
.cid-uxkhVZSGbD .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPkgkv4vJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPkgkv4vJ H1 {
  color: #000000;
}
.cid-uvPkgkMMz7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvPkgkMMz7 h2 {
  text-align: left;
}
.cid-uvPkgkMMz7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPkgkMMz7 p {
  color: #767676;
  text-align: left;
}
.cid-uvPkgkMMz7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPkgkMMz7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPkgkMMz7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPkgkMMz7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPkgkMMz7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPkgkMMz7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPkgkMMz7 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvPkgkMMz7 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvPkgkMMz7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvPkgkMMz7 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvPkgkMMz7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPkgl5Hsi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPkgl5Hsi H1 {
  color: #000000;
}
.cid-uvPkglitBY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvPkglitBY .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPkglitBY .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPkglitBY .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPkglitBY .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvPkglitBY .box {
  right: 20%;
}
.cid-uvPkglitBY .text-box {
  right: 0;
}
.cid-uvPkglitBY .mbr-section-title,
.cid-uvPkglitBY .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvPkglitBY .text-box {
    display: none;
  }
  .cid-uvPkglitBY .mbr-section-title,
  .cid-uvPkglitBY .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPkglitBY .box {
    display: none;
  }
  .cid-uvPkglitBY .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPkglitBY .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPkglitBY .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPkglitBY .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPkglitBY .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPkglitBY .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPkglwgmX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPkglQ9vn {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvPkglQ9vn h2 {
  text-align: left;
}
.cid-uvPkglQ9vn h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPkglQ9vn p {
  color: #767676;
  text-align: left;
}
.cid-uvPkglQ9vn .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPkglQ9vn .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPkglQ9vn .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPkglQ9vn .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPkglQ9vn .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPkglQ9vn .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPkglQ9vn .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPkglQ9vn .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPkglQ9vn .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPkglQ9vn .mbr-text {
  color: #232323;
}
.cid-uvPkgmacUl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvPkgmacUl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPkgmacUl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvPkgmacUl .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvPkgmacUl .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvPkgmacUl .container {
    padding: 0 26px;
  }
}
.cid-uvPkgmacUl .row {
  justify-content: center;
}
.cid-uvPkgmacUl .item {
  margin-bottom: 32px;
}
.cid-uvPkgmacUl .item a {
  display: block;
}
.cid-uvPkgmacUl .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvPkgmacUl .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvPkgmacUl .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvPkgmacUl .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-uvPkgmacUl .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvPkgmacUl .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvPkgmacUl .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-uvPkgmacUl .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvPkgmacUl .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvPkgmacUl .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvPkgmacUl .item-title {
  color: #ffffff;
}
.cid-uvPkgmacUl .mbr-date {
  color: #cacaca;
}
.cid-uvPkgmacUl .mbr-desc {
  color: #cacaca;
}
.cid-uvPkgmpIfm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvPkgmpIfm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPkgmpIfm .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-uvPkgmpIfm .container {
    padding: 0 16px;
  }
}
.cid-uvPkgmpIfm .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvPkgmpIfm .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPkgmpIfm .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvPkgmpIfm .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPkgmpIfm .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvPkgmpIfm .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvPkgmpIfm .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvPkgmpIfm .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvPkgmpIfm .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvPkgmpIfm .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-uvPkgmpIfm .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvPkgmpIfm .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvPkgmpIfm .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvPkgmpIfm .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvPkgmpIfm .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvPkgmpIfm .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvPkgmpIfm .dragArea.row .form-group .form-control:hover,
.cid-uvPkgmpIfm .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvPkgmpIfm .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvPkgmpIfm .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvPkgmpIfm .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvPkgmpIfm .mbr-title {
  color: #ffffff;
}
.cid-uvPkgmpIfm .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvPkgmpIfm .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvPkgmpIfm .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvPkgmpIfm .list {
  color: #08323C;
}
.cid-uvPkgmpIfm label {
  color: #08323C;
}
.cid-uvPkgmpIfm H3 {
  color: #000000;
}
.cid-uvPkgmpIfm P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvPjiSPzsi {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPjiSPzsi H1 {
  text-align: center;
}
.cid-uDmLaRdUQT {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmLaRdUQT .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmLaRdUQT .video-block {
    width: 100% !important;
  }
}
.cid-uvPjiT5Kj6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPjiTfMPq {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvPjiTfMPq .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPjiTfMPq .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPjiTfMPq .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPjiTfMPq .box {
  left: 20%;
}
.cid-uvPjiTfMPq .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvPjiTfMPq .mbr-section-text,
.cid-uvPjiTfMPq .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvPjiTfMPq .text-box {
    display: none;
  }
  .cid-uvPjiTfMPq .mbr-section-title,
  .cid-uvPjiTfMPq .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPjiTfMPq .box {
    display: none;
  }
  .cid-uvPjiTfMPq .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPjiTfMPq .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPjiTfMPq .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPjiTfMPq .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPjiTfMPq .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPjiTfMPq .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPjiTr2uZ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPjiTr2uZ H1 {
  text-align: center;
}
.cid-uvPjiTC1nw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPjiTKkfH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPjiTKkfH h2 {
  text-align: left;
}
.cid-uvPjiTKkfH h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPjiTKkfH p {
  color: #767676;
  text-align: left;
}
.cid-uvPjiTKkfH .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPjiTKkfH .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPjiTKkfH .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPjiTKkfH .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPjiTKkfH .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPjiTKkfH .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPjiTKkfH .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPjiTKkfH .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPjiTKkfH .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPjiTKkfH H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvPjiTKkfH P {
  color: #ffffff;
  text-align: left;
}
.cid-uvPjiTKkfH H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvPjiTYQGY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPjiTYQGY H1 {
  color: #000000;
}
.cid-uxkhz3w8PO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkhz3w8PO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkhz3w8PO .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkhz3w8PO .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkhz3w8PO .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkhz3w8PO .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkhz3w8PO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkhz3w8PO .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkhz3w8PO .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkhz3w8PO .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkhz3w8PO .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkhz3w8PO .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-uxkhz3w8PO .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkhz3w8PO .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkhz3w8PO .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkhz3w8PO .mbr-text,
.cid-uxkhz3w8PO .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkhzMt4iQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkhzMt4iQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkhzMt4iQ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkhzMt4iQ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkhzMt4iQ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkhzMt4iQ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkhzMt4iQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkhzMt4iQ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkhzMt4iQ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkhzMt4iQ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkhzMt4iQ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkhzMt4iQ .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-uxkhzMt4iQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkhzMt4iQ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkhzMt4iQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkhzMt4iQ .mbr-text,
.cid-uxkhzMt4iQ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPjiUQVlv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPjiUQVlv H1 {
  color: #000000;
}
.cid-uxkhxmgQBN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkhxmgQBN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkhxmgQBN .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkhxmgQBN .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkhxmgQBN .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkhxmgQBN .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkhxmgQBN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkhxmgQBN .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkhxmgQBN .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkhxmgQBN .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkhxmgQBN .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkhxmgQBN .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-uxkhxmgQBN .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkhxmgQBN .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkhxmgQBN .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkhxmgQBN .mbr-text,
.cid-uxkhxmgQBN .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkhy6rrhY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkhy6rrhY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkhy6rrhY .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkhy6rrhY .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkhy6rrhY .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkhy6rrhY .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkhy6rrhY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkhy6rrhY .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkhy6rrhY .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkhy6rrhY .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkhy6rrhY .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkhy6rrhY .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-uxkhy6rrhY .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkhy6rrhY .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkhy6rrhY .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkhy6rrhY .mbr-text,
.cid-uxkhy6rrhY .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPjiVPgw8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPjiVPgw8 H1 {
  color: #000000;
}
.cid-uvPjiW2Vvi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvPjiW2Vvi h2 {
  text-align: left;
}
.cid-uvPjiW2Vvi h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPjiW2Vvi p {
  color: #767676;
  text-align: left;
}
.cid-uvPjiW2Vvi .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPjiW2Vvi .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPjiW2Vvi .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPjiW2Vvi .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPjiW2Vvi .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPjiW2Vvi .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPjiW2Vvi .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvPjiW2Vvi .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvPjiW2Vvi .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvPjiW2Vvi .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvPjiW2Vvi .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPjiWhvzv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPjiWhvzv H1 {
  color: #000000;
}
.cid-uvPjiWtHAg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvPjiWtHAg .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPjiWtHAg .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPjiWtHAg .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPjiWtHAg .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvPjiWtHAg .box {
  right: 20%;
}
.cid-uvPjiWtHAg .text-box {
  right: 0;
}
.cid-uvPjiWtHAg .mbr-section-title,
.cid-uvPjiWtHAg .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvPjiWtHAg .text-box {
    display: none;
  }
  .cid-uvPjiWtHAg .mbr-section-title,
  .cid-uvPjiWtHAg .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPjiWtHAg .box {
    display: none;
  }
  .cid-uvPjiWtHAg .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPjiWtHAg .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPjiWtHAg .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPjiWtHAg .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPjiWtHAg .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPjiWtHAg .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPjiWJQKP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPjiWVk8d {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvPjiWVk8d h2 {
  text-align: left;
}
.cid-uvPjiWVk8d h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPjiWVk8d p {
  color: #767676;
  text-align: left;
}
.cid-uvPjiWVk8d .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPjiWVk8d .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPjiWVk8d .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPjiWVk8d .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPjiWVk8d .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPjiWVk8d .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPjiWVk8d .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPjiWVk8d .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPjiWVk8d .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPjiWVk8d .mbr-text {
  color: #232323;
}
.cid-uvPjiXdUSN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvPjiXdUSN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPjiXdUSN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvPjiXdUSN .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvPjiXdUSN .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvPjiXdUSN .container {
    padding: 0 26px;
  }
}
.cid-uvPjiXdUSN .row {
  justify-content: center;
}
.cid-uvPjiXdUSN .item {
  margin-bottom: 32px;
}
.cid-uvPjiXdUSN .item a {
  display: block;
}
.cid-uvPjiXdUSN .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvPjiXdUSN .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvPjiXdUSN .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvPjiXdUSN .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-uvPjiXdUSN .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvPjiXdUSN .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvPjiXdUSN .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-uvPjiXdUSN .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvPjiXdUSN .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvPjiXdUSN .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvPjiXdUSN .item-title {
  color: #ffffff;
}
.cid-uvPjiXdUSN .mbr-date {
  color: #cacaca;
}
.cid-uvPjiXdUSN .mbr-desc {
  color: #cacaca;
}
.cid-uvPjiXtIDk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvPjiXtIDk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPjiXtIDk .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-uvPjiXtIDk .container {
    padding: 0 16px;
  }
}
.cid-uvPjiXtIDk .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvPjiXtIDk .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPjiXtIDk .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvPjiXtIDk .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPjiXtIDk .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvPjiXtIDk .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvPjiXtIDk .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvPjiXtIDk .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvPjiXtIDk .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvPjiXtIDk .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-uvPjiXtIDk .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvPjiXtIDk .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvPjiXtIDk .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvPjiXtIDk .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvPjiXtIDk .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvPjiXtIDk .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvPjiXtIDk .dragArea.row .form-group .form-control:hover,
.cid-uvPjiXtIDk .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvPjiXtIDk .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvPjiXtIDk .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvPjiXtIDk .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvPjiXtIDk .mbr-title {
  color: #ffffff;
}
.cid-uvPjiXtIDk .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvPjiXtIDk .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvPjiXtIDk .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvPjiXtIDk .list {
  color: #08323C;
}
.cid-uvPjiXtIDk label {
  color: #08323C;
}
.cid-uvPjiXtIDk H3 {
  color: #000000;
}
.cid-uvPjiXtIDk P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvPi3j1NyQ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPi3j1NyQ H1 {
  text-align: center;
}
.cid-uDmL8nQMPU {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmL8nQMPU .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmL8nQMPU .video-block {
    width: 100% !important;
  }
}
.cid-uvPi3jgSmm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPi3jr7bi {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvPi3jr7bi .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPi3jr7bi .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPi3jr7bi .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPi3jr7bi .box {
  left: 20%;
}
.cid-uvPi3jr7bi .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvPi3jr7bi .mbr-section-text,
.cid-uvPi3jr7bi .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvPi3jr7bi .text-box {
    display: none;
  }
  .cid-uvPi3jr7bi .mbr-section-title,
  .cid-uvPi3jr7bi .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPi3jr7bi .box {
    display: none;
  }
  .cid-uvPi3jr7bi .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPi3jr7bi .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPi3jr7bi .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPi3jr7bi .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPi3jr7bi .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPi3jr7bi .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPi3jDqW3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPi3jDqW3 H1 {
  text-align: center;
}
.cid-uvPi3jNwlb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPi3jV55B {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPi3jV55B h2 {
  text-align: left;
}
.cid-uvPi3jV55B h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPi3jV55B p {
  color: #767676;
  text-align: left;
}
.cid-uvPi3jV55B .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPi3jV55B .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPi3jV55B .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPi3jV55B .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPi3jV55B .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPi3jV55B .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPi3jV55B .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPi3jV55B .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPi3jV55B .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPi3jV55B H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvPi3jV55B P {
  color: #ffffff;
  text-align: left;
}
.cid-uvPi3jV55B H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvPi3kaflA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPi3kaflA H1 {
  color: #000000;
}
.cid-uxkhow0X7Z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkhow0X7Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkhow0X7Z .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkhow0X7Z .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkhow0X7Z .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkhow0X7Z .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkhow0X7Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkhow0X7Z .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkhow0X7Z .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkhow0X7Z .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkhow0X7Z .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkhow0X7Z .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-uxkhow0X7Z .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkhow0X7Z .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkhow0X7Z .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkhow0X7Z .mbr-text,
.cid-uxkhow0X7Z .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkhpeOFiD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkhpeOFiD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkhpeOFiD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkhpeOFiD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkhpeOFiD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkhpeOFiD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkhpeOFiD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkhpeOFiD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkhpeOFiD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkhpeOFiD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkhpeOFiD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkhpeOFiD .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-uxkhpeOFiD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkhpeOFiD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkhpeOFiD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkhpeOFiD .mbr-text,
.cid-uxkhpeOFiD .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPi3l5372 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPi3l5372 H1 {
  color: #000000;
}
.cid-uxkhpUeilR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkhpUeilR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkhpUeilR .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkhpUeilR .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkhpUeilR .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkhpUeilR .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkhpUeilR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkhpUeilR .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkhpUeilR .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkhpUeilR .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkhpUeilR .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkhpUeilR .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-uxkhpUeilR .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkhpUeilR .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkhpUeilR .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkhpUeilR .mbr-text,
.cid-uxkhpUeilR .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkhqHtcqV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkhqHtcqV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkhqHtcqV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkhqHtcqV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkhqHtcqV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkhqHtcqV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkhqHtcqV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkhqHtcqV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkhqHtcqV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkhqHtcqV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkhqHtcqV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkhqHtcqV .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-uxkhqHtcqV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkhqHtcqV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkhqHtcqV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkhqHtcqV .mbr-text,
.cid-uxkhqHtcqV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPi3m2yxo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPi3m2yxo H1 {
  color: #000000;
}
.cid-uvPi3mg00R {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvPi3mg00R h2 {
  text-align: left;
}
.cid-uvPi3mg00R h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPi3mg00R p {
  color: #767676;
  text-align: left;
}
.cid-uvPi3mg00R .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPi3mg00R .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPi3mg00R .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPi3mg00R .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPi3mg00R .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPi3mg00R .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPi3mg00R .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvPi3mg00R .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvPi3mg00R .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvPi3mg00R .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvPi3mg00R .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPi3mufRC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPi3mufRC H1 {
  color: #000000;
}
.cid-uvPi3mGYys {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvPi3mGYys .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPi3mGYys .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPi3mGYys .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPi3mGYys .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvPi3mGYys .box {
  right: 20%;
}
.cid-uvPi3mGYys .text-box {
  right: 0;
}
.cid-uvPi3mGYys .mbr-section-title,
.cid-uvPi3mGYys .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvPi3mGYys .text-box {
    display: none;
  }
  .cid-uvPi3mGYys .mbr-section-title,
  .cid-uvPi3mGYys .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPi3mGYys .box {
    display: none;
  }
  .cid-uvPi3mGYys .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPi3mGYys .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPi3mGYys .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPi3mGYys .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPi3mGYys .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPi3mGYys .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPi3mUzZ3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPi3n9age {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvPi3n9age h2 {
  text-align: left;
}
.cid-uvPi3n9age h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPi3n9age p {
  color: #767676;
  text-align: left;
}
.cid-uvPi3n9age .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPi3n9age .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPi3n9age .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPi3n9age .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPi3n9age .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPi3n9age .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPi3n9age .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPi3n9age .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPi3n9age .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPi3n9age .mbr-text {
  color: #232323;
}
.cid-uvPi3nrdH9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvPi3nrdH9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPi3nrdH9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvPi3nrdH9 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvPi3nrdH9 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvPi3nrdH9 .container {
    padding: 0 26px;
  }
}
.cid-uvPi3nrdH9 .row {
  justify-content: center;
}
.cid-uvPi3nrdH9 .item {
  margin-bottom: 32px;
}
.cid-uvPi3nrdH9 .item a {
  display: block;
}
.cid-uvPi3nrdH9 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvPi3nrdH9 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvPi3nrdH9 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvPi3nrdH9 .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-uvPi3nrdH9 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvPi3nrdH9 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvPi3nrdH9 .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-uvPi3nrdH9 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvPi3nrdH9 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvPi3nrdH9 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvPi3nrdH9 .item-title {
  color: #ffffff;
}
.cid-uvPi3nrdH9 .mbr-date {
  color: #cacaca;
}
.cid-uvPi3nrdH9 .mbr-desc {
  color: #cacaca;
}
.cid-uvPi3nLSuD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvPi3nLSuD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPi3nLSuD .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-uvPi3nLSuD .container {
    padding: 0 16px;
  }
}
.cid-uvPi3nLSuD .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvPi3nLSuD .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPi3nLSuD .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvPi3nLSuD .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPi3nLSuD .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvPi3nLSuD .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvPi3nLSuD .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvPi3nLSuD .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvPi3nLSuD .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvPi3nLSuD .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-uvPi3nLSuD .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvPi3nLSuD .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvPi3nLSuD .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvPi3nLSuD .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvPi3nLSuD .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvPi3nLSuD .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvPi3nLSuD .dragArea.row .form-group .form-control:hover,
.cid-uvPi3nLSuD .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvPi3nLSuD .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvPi3nLSuD .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvPi3nLSuD .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvPi3nLSuD .mbr-title {
  color: #ffffff;
}
.cid-uvPi3nLSuD .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvPi3nLSuD .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvPi3nLSuD .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvPi3nLSuD .list {
  color: #08323C;
}
.cid-uvPi3nLSuD label {
  color: #08323C;
}
.cid-uvPi3nLSuD H3 {
  color: #000000;
}
.cid-uvPi3nLSuD P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvORxbWj85 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvORxbWj85 H1 {
  text-align: center;
}
.cid-uDmL5PRokl {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmL5PRokl .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmL5PRokl .video-block {
    width: 100% !important;
  }
}
.cid-uvORxcbXGy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvORxckJUO {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvORxckJUO .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvORxckJUO .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvORxckJUO .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvORxckJUO .box {
  left: 20%;
}
.cid-uvORxckJUO .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvORxckJUO .mbr-section-text,
.cid-uvORxckJUO .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvORxckJUO .text-box {
    display: none;
  }
  .cid-uvORxckJUO .mbr-section-title,
  .cid-uvORxckJUO .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvORxckJUO .box {
    display: none;
  }
  .cid-uvORxckJUO .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvORxckJUO .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvORxckJUO .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvORxckJUO .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvORxckJUO .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvORxckJUO .mbr-section-text DIV {
  text-align: center;
}
.cid-uvORxcvcX3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvORxcvcX3 H1 {
  text-align: center;
}
.cid-uvORxcUYKK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvORxd43HQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvORxd43HQ h2 {
  text-align: left;
}
.cid-uvORxd43HQ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvORxd43HQ p {
  color: #767676;
  text-align: left;
}
.cid-uvORxd43HQ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvORxd43HQ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvORxd43HQ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvORxd43HQ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvORxd43HQ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvORxd43HQ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvORxd43HQ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvORxd43HQ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvORxd43HQ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvORxd43HQ H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvORxd43HQ P {
  color: #ffffff;
  text-align: left;
}
.cid-uvORxd43HQ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvORxdkCrA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvORxdkCrA H1 {
  color: #000000;
}
.cid-uxkhh5glby {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkhh5glby .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkhh5glby .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkhh5glby .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkhh5glby .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkhh5glby .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkhh5glby .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkhh5glby .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkhh5glby .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkhh5glby .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkhh5glby .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkhh5glby .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-uxkhh5glby .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkhh5glby .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkhh5glby .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkhh5glby .mbr-text,
.cid-uxkhh5glby .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkhhV0DpT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkhhV0DpT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkhhV0DpT .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkhhV0DpT .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkhhV0DpT .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkhhV0DpT .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkhhV0DpT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkhhV0DpT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkhhV0DpT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkhhV0DpT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkhhV0DpT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkhhV0DpT .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-uxkhhV0DpT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkhhV0DpT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkhhV0DpT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkhhV0DpT .mbr-text,
.cid-uxkhhV0DpT .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvORxeiD2G {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvORxeiD2G H1 {
  color: #000000;
}
.cid-uxkhiGSw5U {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkhiGSw5U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkhiGSw5U .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkhiGSw5U .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkhiGSw5U .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkhiGSw5U .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkhiGSw5U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkhiGSw5U .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkhiGSw5U .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkhiGSw5U .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkhiGSw5U .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkhiGSw5U .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-uxkhiGSw5U .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkhiGSw5U .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkhiGSw5U .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkhiGSw5U .mbr-text,
.cid-uxkhiGSw5U .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkhjkIgr4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkhjkIgr4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkhjkIgr4 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkhjkIgr4 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkhjkIgr4 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkhjkIgr4 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkhjkIgr4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkhjkIgr4 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkhjkIgr4 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkhjkIgr4 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkhjkIgr4 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkhjkIgr4 .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-uxkhjkIgr4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkhjkIgr4 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkhjkIgr4 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkhjkIgr4 .mbr-text,
.cid-uxkhjkIgr4 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvORxfRxvP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvORxfRxvP H1 {
  color: #000000;
}
.cid-uvORxg3ydc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvORxg3ydc h2 {
  text-align: left;
}
.cid-uvORxg3ydc h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvORxg3ydc p {
  color: #767676;
  text-align: left;
}
.cid-uvORxg3ydc .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvORxg3ydc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvORxg3ydc .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvORxg3ydc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvORxg3ydc .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvORxg3ydc .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvORxg3ydc .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvORxg3ydc .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvORxg3ydc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvORxg3ydc .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvORxg3ydc .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvORxgjk3h {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvORxgjk3h H1 {
  color: #000000;
}
.cid-uvORxgvITn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvORxgvITn .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvORxgvITn .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvORxgvITn .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvORxgvITn .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvORxgvITn .box {
  right: 20%;
}
.cid-uvORxgvITn .text-box {
  right: 0;
}
.cid-uvORxgvITn .mbr-section-title,
.cid-uvORxgvITn .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvORxgvITn .text-box {
    display: none;
  }
  .cid-uvORxgvITn .mbr-section-title,
  .cid-uvORxgvITn .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvORxgvITn .box {
    display: none;
  }
  .cid-uvORxgvITn .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvORxgvITn .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvORxgvITn .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvORxgvITn .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvORxgvITn .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvORxgvITn .mbr-section-text DIV {
  text-align: center;
}
.cid-uvORxgIpDx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvORxgUhr2 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvORxgUhr2 h2 {
  text-align: left;
}
.cid-uvORxgUhr2 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvORxgUhr2 p {
  color: #767676;
  text-align: left;
}
.cid-uvORxgUhr2 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvORxgUhr2 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvORxgUhr2 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvORxgUhr2 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvORxgUhr2 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvORxgUhr2 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvORxgUhr2 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvORxgUhr2 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvORxgUhr2 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvORxgUhr2 .mbr-text {
  color: #232323;
}
.cid-uvORxheK7a {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvORxheK7a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvORxheK7a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvORxheK7a .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvORxheK7a .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvORxheK7a .container {
    padding: 0 26px;
  }
}
.cid-uvORxheK7a .row {
  justify-content: center;
}
.cid-uvORxheK7a .item {
  margin-bottom: 32px;
}
.cid-uvORxheK7a .item a {
  display: block;
}
.cid-uvORxheK7a .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvORxheK7a .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvORxheK7a .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvORxheK7a .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-uvORxheK7a .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvORxheK7a .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvORxheK7a .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-uvORxheK7a .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvORxheK7a .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvORxheK7a .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvORxheK7a .item-title {
  color: #ffffff;
}
.cid-uvORxheK7a .mbr-date {
  color: #cacaca;
}
.cid-uvORxheK7a .mbr-desc {
  color: #cacaca;
}
.cid-uvORxhxfWM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvORxhxfWM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvORxhxfWM .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-uvORxhxfWM .container {
    padding: 0 16px;
  }
}
.cid-uvORxhxfWM .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvORxhxfWM .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvORxhxfWM .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvORxhxfWM .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvORxhxfWM .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvORxhxfWM .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvORxhxfWM .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvORxhxfWM .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvORxhxfWM .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvORxhxfWM .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-uvORxhxfWM .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvORxhxfWM .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvORxhxfWM .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvORxhxfWM .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvORxhxfWM .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvORxhxfWM .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvORxhxfWM .dragArea.row .form-group .form-control:hover,
.cid-uvORxhxfWM .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvORxhxfWM .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvORxhxfWM .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvORxhxfWM .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvORxhxfWM .mbr-title {
  color: #ffffff;
}
.cid-uvORxhxfWM .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvORxhxfWM .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvORxhxfWM .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvORxhxfWM .list {
  color: #08323C;
}
.cid-uvORxhxfWM label {
  color: #08323C;
}
.cid-uvORxhxfWM H3 {
  color: #000000;
}
.cid-uvORxhxfWM P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvOPyQ3FXj {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOPyQ3FXj H1 {
  text-align: center;
}
.cid-uDmL3ilqXL {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmL3ilqXL .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmL3ilqXL .video-block {
    width: 100% !important;
  }
}
.cid-uvOPyQh4mZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOPyQsWTp {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvOPyQsWTp .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOPyQsWTp .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOPyQsWTp .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOPyQsWTp .box {
  left: 20%;
}
.cid-uvOPyQsWTp .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvOPyQsWTp .mbr-section-text,
.cid-uvOPyQsWTp .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvOPyQsWTp .text-box {
    display: none;
  }
  .cid-uvOPyQsWTp .mbr-section-title,
  .cid-uvOPyQsWTp .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOPyQsWTp .box {
    display: none;
  }
  .cid-uvOPyQsWTp .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOPyQsWTp .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOPyQsWTp .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOPyQsWTp .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOPyQsWTp .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOPyQsWTp .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOPyQDi4A {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOPyQDi4A H1 {
  text-align: center;
}
.cid-uvOPyQNmYa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOPyQUFeo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOPyQUFeo h2 {
  text-align: left;
}
.cid-uvOPyQUFeo h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOPyQUFeo p {
  color: #767676;
  text-align: left;
}
.cid-uvOPyQUFeo .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOPyQUFeo .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOPyQUFeo .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOPyQUFeo .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOPyQUFeo .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOPyQUFeo .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOPyQUFeo .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOPyQUFeo .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOPyQUFeo .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOPyQUFeo H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvOPyQUFeo P {
  color: #ffffff;
  text-align: left;
}
.cid-uvOPyQUFeo H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvOPyRcI5U {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOPyRcI5U H1 {
  color: #000000;
}
.cid-uxkh6hSAo1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkh6hSAo1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkh6hSAo1 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkh6hSAo1 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkh6hSAo1 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkh6hSAo1 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkh6hSAo1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkh6hSAo1 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkh6hSAo1 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkh6hSAo1 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkh6hSAo1 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkh6hSAo1 .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-uxkh6hSAo1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkh6hSAo1 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkh6hSAo1 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkh6hSAo1 .mbr-text,
.cid-uxkh6hSAo1 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkh74qdZc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkh74qdZc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkh74qdZc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkh74qdZc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkh74qdZc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkh74qdZc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkh74qdZc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkh74qdZc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkh74qdZc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkh74qdZc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkh74qdZc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkh74qdZc .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-uxkh74qdZc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkh74qdZc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkh74qdZc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkh74qdZc .mbr-text,
.cid-uxkh74qdZc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOPyS8eOo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOPyS8eOo H1 {
  color: #000000;
}
.cid-uxkh7JXORa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkh7JXORa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkh7JXORa .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkh7JXORa .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkh7JXORa .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkh7JXORa .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkh7JXORa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkh7JXORa .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkh7JXORa .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkh7JXORa .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkh7JXORa .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkh7JXORa .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-uxkh7JXORa .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkh7JXORa .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkh7JXORa .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkh7JXORa .mbr-text,
.cid-uxkh7JXORa .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkh8pTh5a {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkh8pTh5a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkh8pTh5a .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkh8pTh5a .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkh8pTh5a .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkh8pTh5a .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkh8pTh5a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkh8pTh5a .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkh8pTh5a .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkh8pTh5a .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkh8pTh5a .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkh8pTh5a .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-uxkh8pTh5a .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkh8pTh5a .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkh8pTh5a .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkh8pTh5a .mbr-text,
.cid-uxkh8pTh5a .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOPyTcJKX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOPyTcJKX H1 {
  color: #000000;
}
.cid-uvOPyTrjO6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvOPyTrjO6 h2 {
  text-align: left;
}
.cid-uvOPyTrjO6 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOPyTrjO6 p {
  color: #767676;
  text-align: left;
}
.cid-uvOPyTrjO6 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOPyTrjO6 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOPyTrjO6 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOPyTrjO6 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOPyTrjO6 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOPyTrjO6 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOPyTrjO6 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvOPyTrjO6 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvOPyTrjO6 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvOPyTrjO6 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvOPyTrjO6 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOPyTJ6hi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOPyTJ6hi H1 {
  color: #000000;
}
.cid-uvOPyTW03G {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvOPyTW03G .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOPyTW03G .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOPyTW03G .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOPyTW03G .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvOPyTW03G .box {
  right: 20%;
}
.cid-uvOPyTW03G .text-box {
  right: 0;
}
.cid-uvOPyTW03G .mbr-section-title,
.cid-uvOPyTW03G .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvOPyTW03G .text-box {
    display: none;
  }
  .cid-uvOPyTW03G .mbr-section-title,
  .cid-uvOPyTW03G .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOPyTW03G .box {
    display: none;
  }
  .cid-uvOPyTW03G .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOPyTW03G .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOPyTW03G .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOPyTW03G .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOPyTW03G .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOPyTW03G .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOPyUd83x {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOPyUqS3P {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvOPyUqS3P h2 {
  text-align: left;
}
.cid-uvOPyUqS3P h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOPyUqS3P p {
  color: #767676;
  text-align: left;
}
.cid-uvOPyUqS3P .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOPyUqS3P .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOPyUqS3P .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOPyUqS3P .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOPyUqS3P .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOPyUqS3P .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOPyUqS3P .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOPyUqS3P .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOPyUqS3P .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOPyUqS3P .mbr-text {
  color: #232323;
}
.cid-uvOPyUKrHb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvOPyUKrHb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOPyUKrHb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOPyUKrHb .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvOPyUKrHb .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvOPyUKrHb .container {
    padding: 0 26px;
  }
}
.cid-uvOPyUKrHb .row {
  justify-content: center;
}
.cid-uvOPyUKrHb .item {
  margin-bottom: 32px;
}
.cid-uvOPyUKrHb .item a {
  display: block;
}
.cid-uvOPyUKrHb .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvOPyUKrHb .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvOPyUKrHb .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvOPyUKrHb .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-uvOPyUKrHb .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvOPyUKrHb .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvOPyUKrHb .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-uvOPyUKrHb .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvOPyUKrHb .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvOPyUKrHb .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvOPyUKrHb .item-title {
  color: #ffffff;
}
.cid-uvOPyUKrHb .mbr-date {
  color: #cacaca;
}
.cid-uvOPyUKrHb .mbr-desc {
  color: #cacaca;
}
.cid-uvOPyV2FN8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvOPyV2FN8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOPyV2FN8 .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-uvOPyV2FN8 .container {
    padding: 0 16px;
  }
}
.cid-uvOPyV2FN8 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvOPyV2FN8 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOPyV2FN8 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvOPyV2FN8 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOPyV2FN8 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvOPyV2FN8 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvOPyV2FN8 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvOPyV2FN8 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvOPyV2FN8 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvOPyV2FN8 .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-uvOPyV2FN8 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvOPyV2FN8 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvOPyV2FN8 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvOPyV2FN8 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvOPyV2FN8 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvOPyV2FN8 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvOPyV2FN8 .dragArea.row .form-group .form-control:hover,
.cid-uvOPyV2FN8 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvOPyV2FN8 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvOPyV2FN8 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvOPyV2FN8 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvOPyV2FN8 .mbr-title {
  color: #ffffff;
}
.cid-uvOPyV2FN8 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvOPyV2FN8 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvOPyV2FN8 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvOPyV2FN8 .list {
  color: #08323C;
}
.cid-uvOPyV2FN8 label {
  color: #08323C;
}
.cid-uvOPyV2FN8 H3 {
  color: #000000;
}
.cid-uvOPyV2FN8 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvONdme7r0 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvONdme7r0 H1 {
  text-align: center;
}
.cid-uDmL0t5XAz {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmL0t5XAz .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmL0t5XAz .video-block {
    width: 100% !important;
  }
}
.cid-uvONdmATdf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvONdmNOxr {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvONdmNOxr .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvONdmNOxr .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvONdmNOxr .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvONdmNOxr .box {
  left: 20%;
}
.cid-uvONdmNOxr .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvONdmNOxr .mbr-section-text,
.cid-uvONdmNOxr .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvONdmNOxr .text-box {
    display: none;
  }
  .cid-uvONdmNOxr .mbr-section-title,
  .cid-uvONdmNOxr .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvONdmNOxr .box {
    display: none;
  }
  .cid-uvONdmNOxr .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvONdmNOxr .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvONdmNOxr .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvONdmNOxr .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvONdmNOxr .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvONdmNOxr .mbr-section-text DIV {
  text-align: center;
}
.cid-uvONdn1pa9 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvONdn1pa9 H1 {
  text-align: center;
}
.cid-uvONdndorB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvONdnrdDl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvONdnrdDl h2 {
  text-align: left;
}
.cid-uvONdnrdDl h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvONdnrdDl p {
  color: #767676;
  text-align: left;
}
.cid-uvONdnrdDl .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvONdnrdDl .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvONdnrdDl .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvONdnrdDl .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvONdnrdDl .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvONdnrdDl .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvONdnrdDl .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvONdnrdDl .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvONdnrdDl .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvONdnrdDl H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvONdnrdDl P {
  color: #ffffff;
  text-align: left;
}
.cid-uvONdnrdDl H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvONdnMtLP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvONdnMtLP H1 {
  color: #000000;
}
.cid-uxkgTodEpq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkgTodEpq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkgTodEpq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkgTodEpq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkgTodEpq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkgTodEpq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkgTodEpq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkgTodEpq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkgTodEpq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkgTodEpq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkgTodEpq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkgTodEpq .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-uxkgTodEpq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkgTodEpq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkgTodEpq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkgTodEpq .mbr-text,
.cid-uxkgTodEpq .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkgU3phge {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkgU3phge .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkgU3phge .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkgU3phge .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkgU3phge .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkgU3phge .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkgU3phge .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkgU3phge .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkgU3phge .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkgU3phge .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkgU3phge .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkgU3phge .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-uxkgU3phge .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkgU3phge .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkgU3phge .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkgU3phge .mbr-text,
.cid-uxkgU3phge .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvONdoTK66 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvONdoTK66 H1 {
  color: #000000;
}
.cid-uxkgRvC3vE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkgRvC3vE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkgRvC3vE .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkgRvC3vE .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkgRvC3vE .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkgRvC3vE .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkgRvC3vE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkgRvC3vE .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkgRvC3vE .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkgRvC3vE .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkgRvC3vE .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkgRvC3vE .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-uxkgRvC3vE .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkgRvC3vE .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkgRvC3vE .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkgRvC3vE .mbr-text,
.cid-uxkgRvC3vE .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkgSku2Sl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkgSku2Sl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkgSku2Sl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkgSku2Sl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkgSku2Sl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkgSku2Sl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkgSku2Sl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkgSku2Sl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkgSku2Sl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkgSku2Sl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkgSku2Sl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkgSku2Sl .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-uxkgSku2Sl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkgSku2Sl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkgSku2Sl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkgSku2Sl .mbr-text,
.cid-uxkgSku2Sl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvONdqgwOe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvONdqgwOe H1 {
  color: #000000;
}
.cid-uvONdqA9jh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvONdqA9jh h2 {
  text-align: left;
}
.cid-uvONdqA9jh h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvONdqA9jh p {
  color: #767676;
  text-align: left;
}
.cid-uvONdqA9jh .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvONdqA9jh .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvONdqA9jh .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvONdqA9jh .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvONdqA9jh .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvONdqA9jh .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvONdqA9jh .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvONdqA9jh .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvONdqA9jh .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvONdqA9jh .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvONdqA9jh .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvONdqTh1W {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvONdqTh1W H1 {
  color: #000000;
}
.cid-uvONdrfRsX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvONdrfRsX .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvONdrfRsX .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvONdrfRsX .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvONdrfRsX .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvONdrfRsX .box {
  right: 20%;
}
.cid-uvONdrfRsX .text-box {
  right: 0;
}
.cid-uvONdrfRsX .mbr-section-title,
.cid-uvONdrfRsX .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvONdrfRsX .text-box {
    display: none;
  }
  .cid-uvONdrfRsX .mbr-section-title,
  .cid-uvONdrfRsX .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvONdrfRsX .box {
    display: none;
  }
  .cid-uvONdrfRsX .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvONdrfRsX .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvONdrfRsX .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvONdrfRsX .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvONdrfRsX .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvONdrfRsX .mbr-section-text DIV {
  text-align: center;
}
.cid-uvONdrBimK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvONdrSw1d {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvONdrSw1d h2 {
  text-align: left;
}
.cid-uvONdrSw1d h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvONdrSw1d p {
  color: #767676;
  text-align: left;
}
.cid-uvONdrSw1d .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvONdrSw1d .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvONdrSw1d .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvONdrSw1d .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvONdrSw1d .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvONdrSw1d .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvONdrSw1d .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvONdrSw1d .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvONdrSw1d .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvONdrSw1d .mbr-text {
  color: #232323;
}
.cid-uvONdsig1d {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvONdsig1d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvONdsig1d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvONdsig1d .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvONdsig1d .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvONdsig1d .container {
    padding: 0 26px;
  }
}
.cid-uvONdsig1d .row {
  justify-content: center;
}
.cid-uvONdsig1d .item {
  margin-bottom: 32px;
}
.cid-uvONdsig1d .item a {
  display: block;
}
.cid-uvONdsig1d .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvONdsig1d .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvONdsig1d .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvONdsig1d .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-uvONdsig1d .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvONdsig1d .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvONdsig1d .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-uvONdsig1d .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvONdsig1d .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvONdsig1d .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvONdsig1d .item-title {
  color: #ffffff;
}
.cid-uvONdsig1d .mbr-date {
  color: #cacaca;
}
.cid-uvONdsig1d .mbr-desc {
  color: #cacaca;
}
.cid-uvONdsAOoI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvONdsAOoI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvONdsAOoI .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-uvONdsAOoI .container {
    padding: 0 16px;
  }
}
.cid-uvONdsAOoI .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvONdsAOoI .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvONdsAOoI .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvONdsAOoI .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvONdsAOoI .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvONdsAOoI .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvONdsAOoI .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvONdsAOoI .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvONdsAOoI .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvONdsAOoI .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-uvONdsAOoI .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvONdsAOoI .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvONdsAOoI .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvONdsAOoI .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvONdsAOoI .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvONdsAOoI .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvONdsAOoI .dragArea.row .form-group .form-control:hover,
.cid-uvONdsAOoI .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvONdsAOoI .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvONdsAOoI .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvONdsAOoI .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvONdsAOoI .mbr-title {
  color: #ffffff;
}
.cid-uvONdsAOoI .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvONdsAOoI .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvONdsAOoI .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvONdsAOoI .list {
  color: #08323C;
}
.cid-uvONdsAOoI label {
  color: #08323C;
}
.cid-uvONdsAOoI H3 {
  color: #000000;
}
.cid-uvONdsAOoI P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvOLyeIQcj {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOLyeIQcj H1 {
  text-align: center;
}
.cid-uDmKXkAf8U {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmKXkAf8U .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmKXkAf8U .video-block {
    width: 100% !important;
  }
}
.cid-uvOLyf3KZx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOLyfffNz {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvOLyfffNz .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOLyfffNz .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOLyfffNz .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOLyfffNz .box {
  left: 20%;
}
.cid-uvOLyfffNz .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvOLyfffNz .mbr-section-text,
.cid-uvOLyfffNz .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvOLyfffNz .text-box {
    display: none;
  }
  .cid-uvOLyfffNz .mbr-section-title,
  .cid-uvOLyfffNz .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOLyfffNz .box {
    display: none;
  }
  .cid-uvOLyfffNz .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOLyfffNz .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOLyfffNz .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOLyfffNz .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOLyfffNz .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOLyfffNz .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOLyfsGLB {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOLyfsGLB H1 {
  text-align: center;
}
.cid-uvOLyfFoCi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOLyfShas {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOLyfShas h2 {
  text-align: left;
}
.cid-uvOLyfShas h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOLyfShas p {
  color: #767676;
  text-align: left;
}
.cid-uvOLyfShas .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOLyfShas .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOLyfShas .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOLyfShas .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOLyfShas .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOLyfShas .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOLyfShas .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOLyfShas .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOLyfShas .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOLyfShas H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvOLyfShas P {
  color: #ffffff;
  text-align: left;
}
.cid-uvOLyfShas H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvOLyg9JVj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOLyg9JVj H1 {
  color: #000000;
}
.cid-uxkgIBjntv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkgIBjntv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkgIBjntv .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkgIBjntv .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkgIBjntv .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkgIBjntv .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkgIBjntv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkgIBjntv .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkgIBjntv .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkgIBjntv .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkgIBjntv .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkgIBjntv .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-uxkgIBjntv .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkgIBjntv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkgIBjntv .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkgIBjntv .mbr-text,
.cid-uxkgIBjntv .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkgJfwdPb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkgJfwdPb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkgJfwdPb .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkgJfwdPb .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkgJfwdPb .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkgJfwdPb .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkgJfwdPb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkgJfwdPb .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkgJfwdPb .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkgJfwdPb .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkgJfwdPb .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkgJfwdPb .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-uxkgJfwdPb .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkgJfwdPb .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkgJfwdPb .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkgJfwdPb .mbr-text,
.cid-uxkgJfwdPb .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOLyh9yR7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOLyh9yR7 H1 {
  color: #000000;
}
.cid-uzGEF6OmKo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGEF6OmKo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGEF6OmKo .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGEF6OmKo .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGEF6OmKo .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGEF6OmKo .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGEF6OmKo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGEF6OmKo .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGEF6OmKo .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGEF6OmKo .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGEF6OmKo .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGEF6OmKo .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-uzGEF6OmKo .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGEF6OmKo .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGEF6OmKo .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGEF6OmKo .mbr-text,
.cid-uzGEF6OmKo .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGEFT3cBl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGEFT3cBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGEFT3cBl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGEFT3cBl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGEFT3cBl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGEFT3cBl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGEFT3cBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGEFT3cBl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGEFT3cBl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGEFT3cBl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGEFT3cBl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGEFT3cBl .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-uzGEFT3cBl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGEFT3cBl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGEFT3cBl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGEFT3cBl .mbr-text,
.cid-uzGEFT3cBl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOLyigk6C {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOLyigk6C H1 {
  color: #000000;
}
.cid-uvOLyivz80 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvOLyivz80 h2 {
  text-align: left;
}
.cid-uvOLyivz80 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOLyivz80 p {
  color: #767676;
  text-align: left;
}
.cid-uvOLyivz80 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOLyivz80 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOLyivz80 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOLyivz80 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOLyivz80 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOLyivz80 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOLyivz80 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvOLyivz80 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvOLyivz80 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvOLyivz80 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvOLyivz80 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOLyiNKN7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOLyiNKN7 H1 {
  color: #000000;
}
.cid-uvOLyj4C5l {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvOLyj4C5l .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOLyj4C5l .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOLyj4C5l .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOLyj4C5l .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvOLyj4C5l .box {
  right: 20%;
}
.cid-uvOLyj4C5l .text-box {
  right: 0;
}
.cid-uvOLyj4C5l .mbr-section-title,
.cid-uvOLyj4C5l .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvOLyj4C5l .text-box {
    display: none;
  }
  .cid-uvOLyj4C5l .mbr-section-title,
  .cid-uvOLyj4C5l .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOLyj4C5l .box {
    display: none;
  }
  .cid-uvOLyj4C5l .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOLyj4C5l .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOLyj4C5l .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOLyj4C5l .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOLyj4C5l .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOLyj4C5l .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOLyjlmtK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOLyjBL9k {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvOLyjBL9k h2 {
  text-align: left;
}
.cid-uvOLyjBL9k h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOLyjBL9k p {
  color: #767676;
  text-align: left;
}
.cid-uvOLyjBL9k .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOLyjBL9k .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOLyjBL9k .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOLyjBL9k .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOLyjBL9k .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOLyjBL9k .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOLyjBL9k .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOLyjBL9k .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOLyjBL9k .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOLyjBL9k .mbr-text {
  color: #232323;
}
.cid-uvOLyjWqbY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvOLyjWqbY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOLyjWqbY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOLyjWqbY .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvOLyjWqbY .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvOLyjWqbY .container {
    padding: 0 26px;
  }
}
.cid-uvOLyjWqbY .row {
  justify-content: center;
}
.cid-uvOLyjWqbY .item {
  margin-bottom: 32px;
}
.cid-uvOLyjWqbY .item a {
  display: block;
}
.cid-uvOLyjWqbY .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvOLyjWqbY .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvOLyjWqbY .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvOLyjWqbY .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-uvOLyjWqbY .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvOLyjWqbY .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvOLyjWqbY .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-uvOLyjWqbY .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvOLyjWqbY .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvOLyjWqbY .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvOLyjWqbY .item-title {
  color: #ffffff;
}
.cid-uvOLyjWqbY .mbr-date {
  color: #cacaca;
}
.cid-uvOLyjWqbY .mbr-desc {
  color: #cacaca;
}
.cid-uvOLyki7YY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvOLyki7YY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOLyki7YY .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-uvOLyki7YY .container {
    padding: 0 16px;
  }
}
.cid-uvOLyki7YY .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvOLyki7YY .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOLyki7YY .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvOLyki7YY .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOLyki7YY .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvOLyki7YY .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvOLyki7YY .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvOLyki7YY .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvOLyki7YY .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvOLyki7YY .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-uvOLyki7YY .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvOLyki7YY .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvOLyki7YY .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvOLyki7YY .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvOLyki7YY .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvOLyki7YY .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvOLyki7YY .dragArea.row .form-group .form-control:hover,
.cid-uvOLyki7YY .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvOLyki7YY .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvOLyki7YY .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvOLyki7YY .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvOLyki7YY .mbr-title {
  color: #ffffff;
}
.cid-uvOLyki7YY .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvOLyki7YY .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvOLyki7YY .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvOLyki7YY .list {
  color: #08323C;
}
.cid-uvOLyki7YY label {
  color: #08323C;
}
.cid-uvOLyki7YY H3 {
  color: #000000;
}
.cid-uvOLyki7YY P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvOKlWR9Sm {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOKlWR9Sm H1 {
  text-align: center;
}
.cid-uDmKUCRXWV {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmKUCRXWV .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmKUCRXWV .video-block {
    width: 100% !important;
  }
}
.cid-uvOKlXaHun {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOKlXpMdz {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvOKlXpMdz .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOKlXpMdz .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOKlXpMdz .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOKlXpMdz .box {
  left: 20%;
}
.cid-uvOKlXpMdz .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvOKlXpMdz .mbr-section-text,
.cid-uvOKlXpMdz .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvOKlXpMdz .text-box {
    display: none;
  }
  .cid-uvOKlXpMdz .mbr-section-title,
  .cid-uvOKlXpMdz .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOKlXpMdz .box {
    display: none;
  }
  .cid-uvOKlXpMdz .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOKlXpMdz .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOKlXpMdz .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOKlXpMdz .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOKlXpMdz .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOKlXpMdz .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOKlXFgVk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOKlXFgVk H1 {
  text-align: center;
}
.cid-uvOKlXSjkR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOKlY6QiU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOKlY6QiU h2 {
  text-align: left;
}
.cid-uvOKlY6QiU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOKlY6QiU p {
  color: #767676;
  text-align: left;
}
.cid-uvOKlY6QiU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOKlY6QiU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOKlY6QiU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOKlY6QiU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOKlY6QiU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOKlY6QiU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOKlY6QiU .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOKlY6QiU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOKlY6QiU .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOKlY6QiU H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvOKlY6QiU P {
  color: #ffffff;
  text-align: left;
}
.cid-uvOKlY6QiU H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvOKlYn1V4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOKlYn1V4 H1 {
  color: #000000;
}
.cid-uxkgyAeXB0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkgyAeXB0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkgyAeXB0 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkgyAeXB0 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkgyAeXB0 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkgyAeXB0 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkgyAeXB0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkgyAeXB0 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkgyAeXB0 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkgyAeXB0 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkgyAeXB0 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkgyAeXB0 .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-uxkgyAeXB0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkgyAeXB0 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkgyAeXB0 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkgyAeXB0 .mbr-text,
.cid-uxkgyAeXB0 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkgzeWzyh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkgzeWzyh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkgzeWzyh .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkgzeWzyh .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkgzeWzyh .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkgzeWzyh .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkgzeWzyh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkgzeWzyh .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkgzeWzyh .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkgzeWzyh .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkgzeWzyh .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkgzeWzyh .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-uxkgzeWzyh .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkgzeWzyh .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkgzeWzyh .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkgzeWzyh .mbr-text,
.cid-uxkgzeWzyh .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOKlZvyns {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOKlZvyns H1 {
  color: #000000;
}
.cid-uzGErzGeC9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGErzGeC9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGErzGeC9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGErzGeC9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGErzGeC9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGErzGeC9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGErzGeC9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGErzGeC9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGErzGeC9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGErzGeC9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGErzGeC9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGErzGeC9 .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-uzGErzGeC9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGErzGeC9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGErzGeC9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGErzGeC9 .mbr-text,
.cid-uzGErzGeC9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGEsb48WT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGEsb48WT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGEsb48WT .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGEsb48WT .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGEsb48WT .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGEsb48WT .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGEsb48WT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGEsb48WT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGEsb48WT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGEsb48WT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGEsb48WT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGEsb48WT .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-uzGEsb48WT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGEsb48WT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGEsb48WT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGEsb48WT .mbr-text,
.cid-uzGEsb48WT .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOKm0Lp0X {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOKm0Lp0X H1 {
  color: #000000;
}
.cid-uvOKm11ivv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvOKm11ivv h2 {
  text-align: left;
}
.cid-uvOKm11ivv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOKm11ivv p {
  color: #767676;
  text-align: left;
}
.cid-uvOKm11ivv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOKm11ivv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOKm11ivv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOKm11ivv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOKm11ivv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOKm11ivv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOKm11ivv .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvOKm11ivv .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvOKm11ivv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvOKm11ivv .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvOKm11ivv .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOKm1lZyQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOKm1lZyQ H1 {
  color: #000000;
}
.cid-uvOKm1BvAq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvOKm1BvAq .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOKm1BvAq .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOKm1BvAq .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOKm1BvAq .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvOKm1BvAq .box {
  right: 20%;
}
.cid-uvOKm1BvAq .text-box {
  right: 0;
}
.cid-uvOKm1BvAq .mbr-section-title,
.cid-uvOKm1BvAq .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvOKm1BvAq .text-box {
    display: none;
  }
  .cid-uvOKm1BvAq .mbr-section-title,
  .cid-uvOKm1BvAq .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOKm1BvAq .box {
    display: none;
  }
  .cid-uvOKm1BvAq .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOKm1BvAq .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOKm1BvAq .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOKm1BvAq .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOKm1BvAq .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOKm1BvAq .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOKm1TPSD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOKm2cQtl {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvOKm2cQtl h2 {
  text-align: left;
}
.cid-uvOKm2cQtl h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOKm2cQtl p {
  color: #767676;
  text-align: left;
}
.cid-uvOKm2cQtl .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOKm2cQtl .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOKm2cQtl .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOKm2cQtl .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOKm2cQtl .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOKm2cQtl .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOKm2cQtl .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOKm2cQtl .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOKm2cQtl .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOKm2cQtl .mbr-text {
  color: #232323;
}
.cid-uvOKm2A2Oj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvOKm2A2Oj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOKm2A2Oj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOKm2A2Oj .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvOKm2A2Oj .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvOKm2A2Oj .container {
    padding: 0 26px;
  }
}
.cid-uvOKm2A2Oj .row {
  justify-content: center;
}
.cid-uvOKm2A2Oj .item {
  margin-bottom: 32px;
}
.cid-uvOKm2A2Oj .item a {
  display: block;
}
.cid-uvOKm2A2Oj .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvOKm2A2Oj .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvOKm2A2Oj .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvOKm2A2Oj .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-uvOKm2A2Oj .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvOKm2A2Oj .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvOKm2A2Oj .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-uvOKm2A2Oj .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvOKm2A2Oj .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvOKm2A2Oj .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvOKm2A2Oj .item-title {
  color: #ffffff;
}
.cid-uvOKm2A2Oj .mbr-date {
  color: #cacaca;
}
.cid-uvOKm2A2Oj .mbr-desc {
  color: #cacaca;
}
.cid-uvOKm2TJ3o {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvOKm2TJ3o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOKm2TJ3o .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-uvOKm2TJ3o .container {
    padding: 0 16px;
  }
}
.cid-uvOKm2TJ3o .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvOKm2TJ3o .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOKm2TJ3o .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvOKm2TJ3o .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOKm2TJ3o .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvOKm2TJ3o .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvOKm2TJ3o .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvOKm2TJ3o .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvOKm2TJ3o .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvOKm2TJ3o .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-uvOKm2TJ3o .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvOKm2TJ3o .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvOKm2TJ3o .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvOKm2TJ3o .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvOKm2TJ3o .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvOKm2TJ3o .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvOKm2TJ3o .dragArea.row .form-group .form-control:hover,
.cid-uvOKm2TJ3o .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvOKm2TJ3o .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvOKm2TJ3o .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvOKm2TJ3o .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvOKm2TJ3o .mbr-title {
  color: #ffffff;
}
.cid-uvOKm2TJ3o .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvOKm2TJ3o .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvOKm2TJ3o .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvOKm2TJ3o .list {
  color: #08323C;
}
.cid-uvOKm2TJ3o label {
  color: #08323C;
}
.cid-uvOKm2TJ3o H3 {
  color: #000000;
}
.cid-uvOKm2TJ3o P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvOHu7lnEA {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOHu7lnEA H1 {
  text-align: center;
}
.cid-uDmKS4pwrX {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmKS4pwrX .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmKS4pwrX .video-block {
    width: 100% !important;
  }
}
.cid-uvOHu7NDsr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOHu84hzh {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvOHu84hzh .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOHu84hzh .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOHu84hzh .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOHu84hzh .box {
  left: 20%;
}
.cid-uvOHu84hzh .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvOHu84hzh .mbr-section-text,
.cid-uvOHu84hzh .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvOHu84hzh .text-box {
    display: none;
  }
  .cid-uvOHu84hzh .mbr-section-title,
  .cid-uvOHu84hzh .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOHu84hzh .box {
    display: none;
  }
  .cid-uvOHu84hzh .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOHu84hzh .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOHu84hzh .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOHu84hzh .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOHu84hzh .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOHu84hzh .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOHu8qM9e {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOHu8qM9e H1 {
  text-align: center;
}
.cid-uvOHu8DkM8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOHu8SMjn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOHu8SMjn h2 {
  text-align: left;
}
.cid-uvOHu8SMjn h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOHu8SMjn p {
  color: #767676;
  text-align: left;
}
.cid-uvOHu8SMjn .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOHu8SMjn .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOHu8SMjn .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOHu8SMjn .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOHu8SMjn .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOHu8SMjn .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOHu8SMjn .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOHu8SMjn .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOHu8SMjn .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOHu8SMjn H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvOHu8SMjn P {
  color: #ffffff;
  text-align: left;
}
.cid-uvOHu8SMjn H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvOHu9atHp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOHu9atHp H1 {
  color: #000000;
}
.cid-uxkgrJ0qQ9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkgrJ0qQ9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkgrJ0qQ9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkgrJ0qQ9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkgrJ0qQ9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkgrJ0qQ9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkgrJ0qQ9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkgrJ0qQ9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkgrJ0qQ9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkgrJ0qQ9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkgrJ0qQ9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkgrJ0qQ9 .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-uxkgrJ0qQ9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkgrJ0qQ9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkgrJ0qQ9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkgrJ0qQ9 .mbr-text,
.cid-uxkgrJ0qQ9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkgsnBFNb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkgsnBFNb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkgsnBFNb .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkgsnBFNb .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkgsnBFNb .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkgsnBFNb .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkgsnBFNb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkgsnBFNb .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkgsnBFNb .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkgsnBFNb .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkgsnBFNb .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkgsnBFNb .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-uxkgsnBFNb .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkgsnBFNb .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkgsnBFNb .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkgsnBFNb .mbr-text,
.cid-uxkgsnBFNb .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOHuadC8r {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOHuadC8r H1 {
  color: #000000;
}
.cid-uzGEaEHrKg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGEaEHrKg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGEaEHrKg .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGEaEHrKg .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGEaEHrKg .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGEaEHrKg .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGEaEHrKg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGEaEHrKg .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGEaEHrKg .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGEaEHrKg .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGEaEHrKg .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGEaEHrKg .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-uzGEaEHrKg .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGEaEHrKg .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGEaEHrKg .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGEaEHrKg .mbr-text,
.cid-uzGEaEHrKg .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGEbffPDq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGEbffPDq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGEbffPDq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGEbffPDq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGEbffPDq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGEbffPDq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGEbffPDq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGEbffPDq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGEbffPDq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGEbffPDq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGEbffPDq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGEbffPDq .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-uzGEbffPDq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGEbffPDq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGEbffPDq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGEbffPDq .mbr-text,
.cid-uzGEbffPDq .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOHubmqUv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOHubmqUv H1 {
  color: #000000;
}
.cid-uvOHubAKBZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvOHubAKBZ h2 {
  text-align: left;
}
.cid-uvOHubAKBZ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOHubAKBZ p {
  color: #767676;
  text-align: left;
}
.cid-uvOHubAKBZ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOHubAKBZ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOHubAKBZ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOHubAKBZ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOHubAKBZ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOHubAKBZ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOHubAKBZ .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvOHubAKBZ .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvOHubAKBZ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvOHubAKBZ .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvOHubAKBZ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOHubRgTx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOHubRgTx H1 {
  color: #000000;
}
.cid-uvOHuc8Beg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvOHuc8Beg .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOHuc8Beg .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOHuc8Beg .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOHuc8Beg .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvOHuc8Beg .box {
  right: 20%;
}
.cid-uvOHuc8Beg .text-box {
  right: 0;
}
.cid-uvOHuc8Beg .mbr-section-title,
.cid-uvOHuc8Beg .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvOHuc8Beg .text-box {
    display: none;
  }
  .cid-uvOHuc8Beg .mbr-section-title,
  .cid-uvOHuc8Beg .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOHuc8Beg .box {
    display: none;
  }
  .cid-uvOHuc8Beg .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOHuc8Beg .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOHuc8Beg .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOHuc8Beg .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOHuc8Beg .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOHuc8Beg .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOHucqsSJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOHucFJ4J {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvOHucFJ4J h2 {
  text-align: left;
}
.cid-uvOHucFJ4J h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOHucFJ4J p {
  color: #767676;
  text-align: left;
}
.cid-uvOHucFJ4J .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOHucFJ4J .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOHucFJ4J .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOHucFJ4J .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOHucFJ4J .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOHucFJ4J .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOHucFJ4J .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOHucFJ4J .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOHucFJ4J .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOHucFJ4J .mbr-text {
  color: #232323;
}
.cid-uvOHucZskN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvOHucZskN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOHucZskN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOHucZskN .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvOHucZskN .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvOHucZskN .container {
    padding: 0 26px;
  }
}
.cid-uvOHucZskN .row {
  justify-content: center;
}
.cid-uvOHucZskN .item {
  margin-bottom: 32px;
}
.cid-uvOHucZskN .item a {
  display: block;
}
.cid-uvOHucZskN .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvOHucZskN .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvOHucZskN .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvOHucZskN .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-uvOHucZskN .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvOHucZskN .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvOHucZskN .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-uvOHucZskN .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvOHucZskN .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvOHucZskN .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvOHucZskN .item-title {
  color: #ffffff;
}
.cid-uvOHucZskN .mbr-date {
  color: #cacaca;
}
.cid-uvOHucZskN .mbr-desc {
  color: #cacaca;
}
.cid-uvOHudjOzr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvOHudjOzr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOHudjOzr .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-uvOHudjOzr .container {
    padding: 0 16px;
  }
}
.cid-uvOHudjOzr .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvOHudjOzr .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOHudjOzr .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvOHudjOzr .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOHudjOzr .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvOHudjOzr .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvOHudjOzr .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvOHudjOzr .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvOHudjOzr .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvOHudjOzr .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-uvOHudjOzr .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvOHudjOzr .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvOHudjOzr .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvOHudjOzr .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvOHudjOzr .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvOHudjOzr .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvOHudjOzr .dragArea.row .form-group .form-control:hover,
.cid-uvOHudjOzr .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvOHudjOzr .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvOHudjOzr .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvOHudjOzr .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvOHudjOzr .mbr-title {
  color: #ffffff;
}
.cid-uvOHudjOzr .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvOHudjOzr .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvOHudjOzr .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvOHudjOzr .list {
  color: #08323C;
}
.cid-uvOHudjOzr label {
  color: #08323C;
}
.cid-uvOHudjOzr H3 {
  color: #000000;
}
.cid-uvOHudjOzr P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvOGf4LXO6 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOGf4LXO6 H1 {
  text-align: center;
}
.cid-uDmKPvrCEQ {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmKPvrCEQ .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmKPvrCEQ .video-block {
    width: 100% !important;
  }
}
.cid-uvOGf55HbO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOGf5h1N3 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvOGf5h1N3 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOGf5h1N3 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOGf5h1N3 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOGf5h1N3 .box {
  left: 20%;
}
.cid-uvOGf5h1N3 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvOGf5h1N3 .mbr-section-text,
.cid-uvOGf5h1N3 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvOGf5h1N3 .text-box {
    display: none;
  }
  .cid-uvOGf5h1N3 .mbr-section-title,
  .cid-uvOGf5h1N3 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOGf5h1N3 .box {
    display: none;
  }
  .cid-uvOGf5h1N3 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOGf5h1N3 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOGf5h1N3 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOGf5h1N3 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOGf5h1N3 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOGf5h1N3 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOGf5vSeT {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOGf5vSeT H1 {
  text-align: center;
}
.cid-uvOGf5IEiX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOGf5T55X {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOGf5T55X h2 {
  text-align: left;
}
.cid-uvOGf5T55X h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOGf5T55X p {
  color: #767676;
  text-align: left;
}
.cid-uvOGf5T55X .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOGf5T55X .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOGf5T55X .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOGf5T55X .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOGf5T55X .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOGf5T55X .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOGf5T55X .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOGf5T55X .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOGf5T55X .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOGf5T55X H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvOGf5T55X P {
  color: #ffffff;
  text-align: left;
}
.cid-uvOGf5T55X H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvOGf6a8Xx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOGf6a8Xx H1 {
  color: #000000;
}
.cid-uxkfUhvsIP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkfUhvsIP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkfUhvsIP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkfUhvsIP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkfUhvsIP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkfUhvsIP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkfUhvsIP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkfUhvsIP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkfUhvsIP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkfUhvsIP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkfUhvsIP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkfUhvsIP .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-uxkfUhvsIP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkfUhvsIP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkfUhvsIP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkfUhvsIP .mbr-text,
.cid-uxkfUhvsIP .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkfUV86lB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkfUV86lB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkfUV86lB .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkfUV86lB .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkfUV86lB .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkfUV86lB .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkfUV86lB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkfUV86lB .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkfUV86lB .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkfUV86lB .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkfUV86lB .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkfUV86lB .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-uxkfUV86lB .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkfUV86lB .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkfUV86lB .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkfUV86lB .mbr-text,
.cid-uxkfUV86lB .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOGf7chP6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOGf7chP6 H1 {
  color: #000000;
}
.cid-uzGBKWx1lT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGBKWx1lT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGBKWx1lT .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGBKWx1lT .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGBKWx1lT .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGBKWx1lT .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGBKWx1lT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGBKWx1lT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGBKWx1lT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGBKWx1lT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGBKWx1lT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGBKWx1lT .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-uzGBKWx1lT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGBKWx1lT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGBKWx1lT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGBKWx1lT .mbr-text,
.cid-uzGBKWx1lT .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGBLGQBnJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGBLGQBnJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGBLGQBnJ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGBLGQBnJ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGBLGQBnJ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGBLGQBnJ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGBLGQBnJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGBLGQBnJ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGBLGQBnJ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGBLGQBnJ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGBLGQBnJ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGBLGQBnJ .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-uzGBLGQBnJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGBLGQBnJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGBLGQBnJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGBLGQBnJ .mbr-text,
.cid-uzGBLGQBnJ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOGf8qgjP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOGf8qgjP H1 {
  color: #000000;
}
.cid-uvOGf8HkVx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvOGf8HkVx h2 {
  text-align: left;
}
.cid-uvOGf8HkVx h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOGf8HkVx p {
  color: #767676;
  text-align: left;
}
.cid-uvOGf8HkVx .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOGf8HkVx .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOGf8HkVx .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOGf8HkVx .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOGf8HkVx .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOGf8HkVx .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOGf8HkVx .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvOGf8HkVx .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvOGf8HkVx .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvOGf8HkVx .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvOGf8HkVx .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOGf8YPAH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOGf8YPAH H1 {
  color: #000000;
}
.cid-uvOGf9dl9z {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvOGf9dl9z .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOGf9dl9z .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOGf9dl9z .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOGf9dl9z .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvOGf9dl9z .box {
  right: 20%;
}
.cid-uvOGf9dl9z .text-box {
  right: 0;
}
.cid-uvOGf9dl9z .mbr-section-title,
.cid-uvOGf9dl9z .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvOGf9dl9z .text-box {
    display: none;
  }
  .cid-uvOGf9dl9z .mbr-section-title,
  .cid-uvOGf9dl9z .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOGf9dl9z .box {
    display: none;
  }
  .cid-uvOGf9dl9z .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOGf9dl9z .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOGf9dl9z .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOGf9dl9z .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOGf9dl9z .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOGf9dl9z .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOGf9tJaf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOGf9NoVt {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvOGf9NoVt h2 {
  text-align: left;
}
.cid-uvOGf9NoVt h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOGf9NoVt p {
  color: #767676;
  text-align: left;
}
.cid-uvOGf9NoVt .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOGf9NoVt .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOGf9NoVt .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOGf9NoVt .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOGf9NoVt .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOGf9NoVt .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOGf9NoVt .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOGf9NoVt .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOGf9NoVt .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOGf9NoVt .mbr-text {
  color: #232323;
}
.cid-uvOGfaar9S {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvOGfaar9S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOGfaar9S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOGfaar9S .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvOGfaar9S .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvOGfaar9S .container {
    padding: 0 26px;
  }
}
.cid-uvOGfaar9S .row {
  justify-content: center;
}
.cid-uvOGfaar9S .item {
  margin-bottom: 32px;
}
.cid-uvOGfaar9S .item a {
  display: block;
}
.cid-uvOGfaar9S .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvOGfaar9S .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvOGfaar9S .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvOGfaar9S .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-uvOGfaar9S .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvOGfaar9S .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvOGfaar9S .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-uvOGfaar9S .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvOGfaar9S .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvOGfaar9S .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvOGfaar9S .item-title {
  color: #ffffff;
}
.cid-uvOGfaar9S .mbr-date {
  color: #cacaca;
}
.cid-uvOGfaar9S .mbr-desc {
  color: #cacaca;
}
.cid-uvOGfasBGD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvOGfasBGD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOGfasBGD .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-uvOGfasBGD .container {
    padding: 0 16px;
  }
}
.cid-uvOGfasBGD .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvOGfasBGD .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOGfasBGD .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvOGfasBGD .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOGfasBGD .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvOGfasBGD .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvOGfasBGD .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvOGfasBGD .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvOGfasBGD .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvOGfasBGD .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-uvOGfasBGD .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvOGfasBGD .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvOGfasBGD .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvOGfasBGD .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvOGfasBGD .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvOGfasBGD .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvOGfasBGD .dragArea.row .form-group .form-control:hover,
.cid-uvOGfasBGD .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvOGfasBGD .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvOGfasBGD .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvOGfasBGD .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvOGfasBGD .mbr-title {
  color: #ffffff;
}
.cid-uvOGfasBGD .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvOGfasBGD .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvOGfasBGD .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvOGfasBGD .list {
  color: #08323C;
}
.cid-uvOGfasBGD label {
  color: #08323C;
}
.cid-uvOGfasBGD H3 {
  color: #000000;
}
.cid-uvOGfasBGD P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvOCdlYCIR {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOCdlYCIR H1 {
  text-align: center;
}
.cid-uDmKN6m3Co {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmKN6m3Co .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmKN6m3Co .video-block {
    width: 100% !important;
  }
}
.cid-uvOCdmjar1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOCdmtmpz {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvOCdmtmpz .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOCdmtmpz .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOCdmtmpz .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOCdmtmpz .box {
  left: 20%;
}
.cid-uvOCdmtmpz .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvOCdmtmpz .mbr-section-text,
.cid-uvOCdmtmpz .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvOCdmtmpz .text-box {
    display: none;
  }
  .cid-uvOCdmtmpz .mbr-section-title,
  .cid-uvOCdmtmpz .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOCdmtmpz .box {
    display: none;
  }
  .cid-uvOCdmtmpz .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOCdmtmpz .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOCdmtmpz .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOCdmtmpz .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOCdmtmpz .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOCdmtmpz .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOCdmEYPG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOCdmEYPG H1 {
  text-align: center;
}
.cid-uvOCdmPuod {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOCdmYitT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvOCdmYitT h2 {
  text-align: left;
}
.cid-uvOCdmYitT h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOCdmYitT p {
  color: #767676;
  text-align: left;
}
.cid-uvOCdmYitT .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOCdmYitT .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOCdmYitT .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOCdmYitT .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOCdmYitT .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOCdmYitT .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOCdmYitT .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOCdmYitT .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOCdmYitT .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOCdmYitT H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvOCdmYitT P {
  color: #ffffff;
  text-align: left;
}
.cid-uvOCdmYitT H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvOCdne2WN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOCdne2WN H1 {
  color: #000000;
}
.cid-uxkfxEB7Fh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkfxEB7Fh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkfxEB7Fh .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkfxEB7Fh .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkfxEB7Fh .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkfxEB7Fh .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkfxEB7Fh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkfxEB7Fh .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkfxEB7Fh .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkfxEB7Fh .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkfxEB7Fh .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkfxEB7Fh .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-uxkfxEB7Fh .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkfxEB7Fh .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkfxEB7Fh .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkfxEB7Fh .mbr-text,
.cid-uxkfxEB7Fh .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkfyvJvVP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkfyvJvVP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkfyvJvVP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkfyvJvVP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkfyvJvVP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkfyvJvVP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkfyvJvVP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkfyvJvVP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkfyvJvVP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkfyvJvVP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkfyvJvVP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkfyvJvVP .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-uxkfyvJvVP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkfyvJvVP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkfyvJvVP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkfyvJvVP .mbr-text,
.cid-uxkfyvJvVP .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOCdo7KKq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvOCdo7KKq H1 {
  color: #000000;
}
.cid-uzGBbjlaqr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGBbjlaqr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGBbjlaqr .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGBbjlaqr .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGBbjlaqr .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGBbjlaqr .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGBbjlaqr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGBbjlaqr .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGBbjlaqr .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGBbjlaqr .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGBbjlaqr .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGBbjlaqr .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-uzGBbjlaqr .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGBbjlaqr .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGBbjlaqr .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGBbjlaqr .mbr-text,
.cid-uzGBbjlaqr .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGBbUGWaw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGBbUGWaw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGBbUGWaw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGBbUGWaw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGBbUGWaw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGBbUGWaw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGBbUGWaw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGBbUGWaw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGBbUGWaw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGBbUGWaw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGBbUGWaw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGBbUGWaw .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-uzGBbUGWaw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGBbUGWaw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGBbUGWaw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGBbUGWaw .mbr-text,
.cid-uzGBbUGWaw .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvOCdp5NKy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOCdp5NKy H1 {
  color: #000000;
}
.cid-uvOCdpidHW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvOCdpidHW h2 {
  text-align: left;
}
.cid-uvOCdpidHW h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOCdpidHW p {
  color: #767676;
  text-align: left;
}
.cid-uvOCdpidHW .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOCdpidHW .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOCdpidHW .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOCdpidHW .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOCdpidHW .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOCdpidHW .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOCdpidHW .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvOCdpidHW .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvOCdpidHW .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvOCdpidHW .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvOCdpidHW .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOCdpyLA8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvOCdpyLA8 H1 {
  color: #000000;
}
.cid-uvOCdpL2IA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvOCdpL2IA .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvOCdpL2IA .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvOCdpL2IA .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvOCdpL2IA .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvOCdpL2IA .box {
  right: 20%;
}
.cid-uvOCdpL2IA .text-box {
  right: 0;
}
.cid-uvOCdpL2IA .mbr-section-title,
.cid-uvOCdpL2IA .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvOCdpL2IA .text-box {
    display: none;
  }
  .cid-uvOCdpL2IA .mbr-section-title,
  .cid-uvOCdpL2IA .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvOCdpL2IA .box {
    display: none;
  }
  .cid-uvOCdpL2IA .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvOCdpL2IA .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvOCdpL2IA .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvOCdpL2IA .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvOCdpL2IA .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvOCdpL2IA .mbr-section-text DIV {
  text-align: center;
}
.cid-uvOCdq0bkc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvOCdqgy5b {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvOCdqgy5b h2 {
  text-align: left;
}
.cid-uvOCdqgy5b h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvOCdqgy5b p {
  color: #767676;
  text-align: left;
}
.cid-uvOCdqgy5b .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvOCdqgy5b .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvOCdqgy5b .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvOCdqgy5b .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvOCdqgy5b .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvOCdqgy5b .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvOCdqgy5b .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOCdqgy5b .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvOCdqgy5b .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvOCdqgy5b .mbr-text {
  color: #232323;
}
.cid-uvOCdqAmhq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvOCdqAmhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOCdqAmhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvOCdqAmhq .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvOCdqAmhq .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvOCdqAmhq .container {
    padding: 0 26px;
  }
}
.cid-uvOCdqAmhq .row {
  justify-content: center;
}
.cid-uvOCdqAmhq .item {
  margin-bottom: 32px;
}
.cid-uvOCdqAmhq .item a {
  display: block;
}
.cid-uvOCdqAmhq .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvOCdqAmhq .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvOCdqAmhq .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvOCdqAmhq .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-uvOCdqAmhq .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvOCdqAmhq .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvOCdqAmhq .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-uvOCdqAmhq .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvOCdqAmhq .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvOCdqAmhq .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvOCdqAmhq .item-title {
  color: #ffffff;
}
.cid-uvOCdqAmhq .mbr-date {
  color: #cacaca;
}
.cid-uvOCdqAmhq .mbr-desc {
  color: #cacaca;
}
.cid-uvOCdqPHMF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvOCdqPHMF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvOCdqPHMF .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-uvOCdqPHMF .container {
    padding: 0 16px;
  }
}
.cid-uvOCdqPHMF .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvOCdqPHMF .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOCdqPHMF .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvOCdqPHMF .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvOCdqPHMF .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvOCdqPHMF .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvOCdqPHMF .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvOCdqPHMF .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvOCdqPHMF .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvOCdqPHMF .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-uvOCdqPHMF .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvOCdqPHMF .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvOCdqPHMF .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvOCdqPHMF .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvOCdqPHMF .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvOCdqPHMF .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvOCdqPHMF .dragArea.row .form-group .form-control:hover,
.cid-uvOCdqPHMF .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvOCdqPHMF .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvOCdqPHMF .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvOCdqPHMF .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvOCdqPHMF .mbr-title {
  color: #ffffff;
}
.cid-uvOCdqPHMF .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvOCdqPHMF .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvOCdqPHMF .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvOCdqPHMF .list {
  color: #08323C;
}
.cid-uvOCdqPHMF label {
  color: #08323C;
}
.cid-uvOCdqPHMF H3 {
  color: #000000;
}
.cid-uvOCdqPHMF P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvPkrKwvpD {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPkrKwvpD H1 {
  text-align: center;
}
.cid-uDmLfTp3oI {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmLfTp3oI .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmLfTp3oI .video-block {
    width: 100% !important;
  }
}
.cid-uvPkrKLyFZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPkrKWGM2 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvPkrKWGM2 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPkrKWGM2 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPkrKWGM2 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPkrKWGM2 .box {
  left: 20%;
}
.cid-uvPkrKWGM2 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvPkrKWGM2 .mbr-section-text,
.cid-uvPkrKWGM2 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvPkrKWGM2 .text-box {
    display: none;
  }
  .cid-uvPkrKWGM2 .mbr-section-title,
  .cid-uvPkrKWGM2 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPkrKWGM2 .box {
    display: none;
  }
  .cid-uvPkrKWGM2 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPkrKWGM2 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPkrKWGM2 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPkrKWGM2 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPkrKWGM2 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPkrKWGM2 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPkrL7uR2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPkrL7uR2 H1 {
  text-align: center;
}
.cid-uvPkrLiXoV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPkrLra3I {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPkrLra3I h2 {
  text-align: left;
}
.cid-uvPkrLra3I h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPkrLra3I p {
  color: #767676;
  text-align: left;
}
.cid-uvPkrLra3I .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPkrLra3I .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPkrLra3I .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPkrLra3I .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPkrLra3I .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPkrLra3I .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPkrLra3I .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPkrLra3I .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPkrLra3I .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPkrLra3I H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvPkrLra3I P {
  color: #ffffff;
  text-align: left;
}
.cid-uvPkrLra3I H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvPkrLHHlm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPkrLHHlm H1 {
  color: #000000;
}
.cid-uxki0wKvYe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxki0wKvYe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxki0wKvYe .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxki0wKvYe .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxki0wKvYe .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxki0wKvYe .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxki0wKvYe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxki0wKvYe .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxki0wKvYe .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxki0wKvYe .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxki0wKvYe .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxki0wKvYe .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-uxki0wKvYe .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxki0wKvYe .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxki0wKvYe .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxki0wKvYe .mbr-text,
.cid-uxki0wKvYe .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxki1fpOja {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxki1fpOja .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxki1fpOja .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxki1fpOja .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxki1fpOja .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxki1fpOja .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxki1fpOja .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxki1fpOja .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxki1fpOja .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxki1fpOja .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxki1fpOja .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxki1fpOja .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-uxki1fpOja .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxki1fpOja .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxki1fpOja .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxki1fpOja .mbr-text,
.cid-uxki1fpOja .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPkrMG7A8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPkrMG7A8 H1 {
  color: #000000;
}
.cid-uxki1T1KzT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxki1T1KzT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxki1T1KzT .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxki1T1KzT .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxki1T1KzT .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxki1T1KzT .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxki1T1KzT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxki1T1KzT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxki1T1KzT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxki1T1KzT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxki1T1KzT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxki1T1KzT .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-uxki1T1KzT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxki1T1KzT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxki1T1KzT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxki1T1KzT .mbr-text,
.cid-uxki1T1KzT .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxki2FJbsq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxki2FJbsq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxki2FJbsq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxki2FJbsq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxki2FJbsq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxki2FJbsq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxki2FJbsq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxki2FJbsq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxki2FJbsq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxki2FJbsq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxki2FJbsq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxki2FJbsq .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-uxki2FJbsq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxki2FJbsq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxki2FJbsq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxki2FJbsq .mbr-text,
.cid-uxki2FJbsq .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPkrNJ4pQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPkrNJ4pQ H1 {
  color: #000000;
}
.cid-uvPkrNWqnm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvPkrNWqnm h2 {
  text-align: left;
}
.cid-uvPkrNWqnm h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPkrNWqnm p {
  color: #767676;
  text-align: left;
}
.cid-uvPkrNWqnm .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPkrNWqnm .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPkrNWqnm .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPkrNWqnm .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPkrNWqnm .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPkrNWqnm .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPkrNWqnm .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvPkrNWqnm .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvPkrNWqnm .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvPkrNWqnm .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvPkrNWqnm .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPkrOcCcX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPkrOcCcX H1 {
  color: #000000;
}
.cid-uvPkrOrnFs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvPkrOrnFs .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPkrOrnFs .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPkrOrnFs .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPkrOrnFs .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvPkrOrnFs .box {
  right: 20%;
}
.cid-uvPkrOrnFs .text-box {
  right: 0;
}
.cid-uvPkrOrnFs .mbr-section-title,
.cid-uvPkrOrnFs .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvPkrOrnFs .text-box {
    display: none;
  }
  .cid-uvPkrOrnFs .mbr-section-title,
  .cid-uvPkrOrnFs .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPkrOrnFs .box {
    display: none;
  }
  .cid-uvPkrOrnFs .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPkrOrnFs .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPkrOrnFs .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPkrOrnFs .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPkrOrnFs .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPkrOrnFs .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPkrOGolk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPkrOU9e8 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvPkrOU9e8 h2 {
  text-align: left;
}
.cid-uvPkrOU9e8 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPkrOU9e8 p {
  color: #767676;
  text-align: left;
}
.cid-uvPkrOU9e8 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPkrOU9e8 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPkrOU9e8 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPkrOU9e8 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPkrOU9e8 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPkrOU9e8 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPkrOU9e8 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPkrOU9e8 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPkrOU9e8 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPkrOU9e8 .mbr-text {
  color: #232323;
}
.cid-uvPkrPb3Pt {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvPkrPb3Pt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPkrPb3Pt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvPkrPb3Pt .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvPkrPb3Pt .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvPkrPb3Pt .container {
    padding: 0 26px;
  }
}
.cid-uvPkrPb3Pt .row {
  justify-content: center;
}
.cid-uvPkrPb3Pt .item {
  margin-bottom: 32px;
}
.cid-uvPkrPb3Pt .item a {
  display: block;
}
.cid-uvPkrPb3Pt .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvPkrPb3Pt .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvPkrPb3Pt .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvPkrPb3Pt .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-uvPkrPb3Pt .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvPkrPb3Pt .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvPkrPb3Pt .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-uvPkrPb3Pt .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvPkrPb3Pt .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvPkrPb3Pt .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvPkrPb3Pt .item-title {
  color: #ffffff;
}
.cid-uvPkrPb3Pt .mbr-date {
  color: #cacaca;
}
.cid-uvPkrPb3Pt .mbr-desc {
  color: #cacaca;
}
.cid-uvPkrPsDBP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvPkrPsDBP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPkrPsDBP .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-uvPkrPsDBP .container {
    padding: 0 16px;
  }
}
.cid-uvPkrPsDBP .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvPkrPsDBP .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPkrPsDBP .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvPkrPsDBP .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPkrPsDBP .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvPkrPsDBP .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvPkrPsDBP .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvPkrPsDBP .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvPkrPsDBP .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvPkrPsDBP .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-uvPkrPsDBP .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvPkrPsDBP .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvPkrPsDBP .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvPkrPsDBP .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvPkrPsDBP .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvPkrPsDBP .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvPkrPsDBP .dragArea.row .form-group .form-control:hover,
.cid-uvPkrPsDBP .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvPkrPsDBP .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvPkrPsDBP .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvPkrPsDBP .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvPkrPsDBP .mbr-title {
  color: #ffffff;
}
.cid-uvPkrPsDBP .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvPkrPsDBP .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvPkrPsDBP .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvPkrPsDBP .list {
  color: #08323C;
}
.cid-uvPkrPsDBP label {
  color: #08323C;
}
.cid-uvPkrPsDBP H3 {
  color: #000000;
}
.cid-uvPkrPsDBP P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvPkJN74QV {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPkJN74QV H1 {
  text-align: center;
}
.cid-uDmLiFzNzA {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmLiFzNzA .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmLiFzNzA .video-block {
    width: 100% !important;
  }
}
.cid-uvPkJNnOoC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPkJNBxiV {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvPkJNBxiV .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPkJNBxiV .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPkJNBxiV .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPkJNBxiV .box {
  left: 20%;
}
.cid-uvPkJNBxiV .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvPkJNBxiV .mbr-section-text,
.cid-uvPkJNBxiV .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvPkJNBxiV .text-box {
    display: none;
  }
  .cid-uvPkJNBxiV .mbr-section-title,
  .cid-uvPkJNBxiV .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPkJNBxiV .box {
    display: none;
  }
  .cid-uvPkJNBxiV .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPkJNBxiV .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPkJNBxiV .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPkJNBxiV .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPkJNBxiV .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPkJNBxiV .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPkJNNdGB {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPkJNNdGB H1 {
  text-align: center;
}
.cid-uvPkJNXJfW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPkJO7IVh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPkJO7IVh h2 {
  text-align: left;
}
.cid-uvPkJO7IVh h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPkJO7IVh p {
  color: #767676;
  text-align: left;
}
.cid-uvPkJO7IVh .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPkJO7IVh .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPkJO7IVh .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPkJO7IVh .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPkJO7IVh .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPkJO7IVh .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPkJO7IVh .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPkJO7IVh .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPkJO7IVh .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPkJO7IVh H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvPkJO7IVh P {
  color: #ffffff;
  text-align: left;
}
.cid-uvPkJO7IVh H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvPkJOo6lq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPkJOo6lq H1 {
  color: #000000;
}
.cid-uxki9cjJxu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxki9cjJxu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxki9cjJxu .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxki9cjJxu .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxki9cjJxu .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxki9cjJxu .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxki9cjJxu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxki9cjJxu .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxki9cjJxu .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxki9cjJxu .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxki9cjJxu .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxki9cjJxu .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-uxki9cjJxu .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxki9cjJxu .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxki9cjJxu .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxki9cjJxu .mbr-text,
.cid-uxki9cjJxu .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxki9UenHU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxki9UenHU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxki9UenHU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxki9UenHU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxki9UenHU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxki9UenHU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxki9UenHU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxki9UenHU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxki9UenHU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxki9UenHU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxki9UenHU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxki9UenHU .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-uxki9UenHU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxki9UenHU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxki9UenHU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxki9UenHU .mbr-text,
.cid-uxki9UenHU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPkJPp1k7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPkJPp1k7 H1 {
  color: #000000;
}
.cid-uxkiaz5ecu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkiaz5ecu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkiaz5ecu .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkiaz5ecu .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkiaz5ecu .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkiaz5ecu .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkiaz5ecu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkiaz5ecu .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkiaz5ecu .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkiaz5ecu .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkiaz5ecu .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkiaz5ecu .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-uxkiaz5ecu .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkiaz5ecu .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkiaz5ecu .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkiaz5ecu .mbr-text,
.cid-uxkiaz5ecu .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkiblKFwl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkiblKFwl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkiblKFwl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkiblKFwl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkiblKFwl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkiblKFwl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkiblKFwl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkiblKFwl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkiblKFwl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkiblKFwl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkiblKFwl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkiblKFwl .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-uxkiblKFwl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkiblKFwl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkiblKFwl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkiblKFwl .mbr-text,
.cid-uxkiblKFwl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPkJQu3QX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPkJQu3QX H1 {
  color: #000000;
}
.cid-uvPkJQIgN5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvPkJQIgN5 h2 {
  text-align: left;
}
.cid-uvPkJQIgN5 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPkJQIgN5 p {
  color: #767676;
  text-align: left;
}
.cid-uvPkJQIgN5 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPkJQIgN5 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPkJQIgN5 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPkJQIgN5 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPkJQIgN5 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPkJQIgN5 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPkJQIgN5 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvPkJQIgN5 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvPkJQIgN5 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvPkJQIgN5 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvPkJQIgN5 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPkJR0XKl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPkJR0XKl H1 {
  color: #000000;
}
.cid-uvPkJRg51q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvPkJRg51q .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPkJRg51q .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPkJRg51q .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPkJRg51q .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvPkJRg51q .box {
  right: 20%;
}
.cid-uvPkJRg51q .text-box {
  right: 0;
}
.cid-uvPkJRg51q .mbr-section-title,
.cid-uvPkJRg51q .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvPkJRg51q .text-box {
    display: none;
  }
  .cid-uvPkJRg51q .mbr-section-title,
  .cid-uvPkJRg51q .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPkJRg51q .box {
    display: none;
  }
  .cid-uvPkJRg51q .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPkJRg51q .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPkJRg51q .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPkJRg51q .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPkJRg51q .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPkJRg51q .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPkJRwVgl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPkJRK8QK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvPkJRK8QK h2 {
  text-align: left;
}
.cid-uvPkJRK8QK h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPkJRK8QK p {
  color: #767676;
  text-align: left;
}
.cid-uvPkJRK8QK .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPkJRK8QK .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPkJRK8QK .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPkJRK8QK .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPkJRK8QK .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPkJRK8QK .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPkJRK8QK .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPkJRK8QK .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPkJRK8QK .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPkJRK8QK .mbr-text {
  color: #232323;
}
.cid-uvPkJS8Jo2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvPkJS8Jo2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPkJS8Jo2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvPkJS8Jo2 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvPkJS8Jo2 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvPkJS8Jo2 .container {
    padding: 0 26px;
  }
}
.cid-uvPkJS8Jo2 .row {
  justify-content: center;
}
.cid-uvPkJS8Jo2 .item {
  margin-bottom: 32px;
}
.cid-uvPkJS8Jo2 .item a {
  display: block;
}
.cid-uvPkJS8Jo2 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvPkJS8Jo2 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvPkJS8Jo2 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvPkJS8Jo2 .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-uvPkJS8Jo2 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvPkJS8Jo2 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvPkJS8Jo2 .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-uvPkJS8Jo2 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvPkJS8Jo2 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvPkJS8Jo2 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvPkJS8Jo2 .item-title {
  color: #ffffff;
}
.cid-uvPkJS8Jo2 .mbr-date {
  color: #cacaca;
}
.cid-uvPkJS8Jo2 .mbr-desc {
  color: #cacaca;
}
.cid-uvPkJSp7HT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvPkJSp7HT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPkJSp7HT .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-uvPkJSp7HT .container {
    padding: 0 16px;
  }
}
.cid-uvPkJSp7HT .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvPkJSp7HT .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPkJSp7HT .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvPkJSp7HT .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPkJSp7HT .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvPkJSp7HT .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvPkJSp7HT .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvPkJSp7HT .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvPkJSp7HT .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvPkJSp7HT .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-uvPkJSp7HT .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvPkJSp7HT .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvPkJSp7HT .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvPkJSp7HT .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvPkJSp7HT .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvPkJSp7HT .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvPkJSp7HT .dragArea.row .form-group .form-control:hover,
.cid-uvPkJSp7HT .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvPkJSp7HT .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvPkJSp7HT .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvPkJSp7HT .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvPkJSp7HT .mbr-title {
  color: #ffffff;
}
.cid-uvPkJSp7HT .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvPkJSp7HT .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvPkJSp7HT .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvPkJSp7HT .list {
  color: #08323C;
}
.cid-uvPkJSp7HT label {
  color: #08323C;
}
.cid-uvPkJSp7HT H3 {
  color: #000000;
}
.cid-uvPkJSp7HT P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvPlg1uFE0 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPlg1uFE0 H1 {
  text-align: center;
}
.cid-uDmLlbayIe {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmLlbayIe .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmLlbayIe .video-block {
    width: 100% !important;
  }
}
.cid-uvPlg1MPeh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPlg1W44q {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvPlg1W44q .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPlg1W44q .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPlg1W44q .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPlg1W44q .box {
  left: 20%;
}
.cid-uvPlg1W44q .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvPlg1W44q .mbr-section-text,
.cid-uvPlg1W44q .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvPlg1W44q .text-box {
    display: none;
  }
  .cid-uvPlg1W44q .mbr-section-title,
  .cid-uvPlg1W44q .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPlg1W44q .box {
    display: none;
  }
  .cid-uvPlg1W44q .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPlg1W44q .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPlg1W44q .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPlg1W44q .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPlg1W44q .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPlg1W44q .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPlg2dyON {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPlg2dyON H1 {
  text-align: center;
}
.cid-uvPlg2o6ET {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPlg2yrir {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPlg2yrir h2 {
  text-align: left;
}
.cid-uvPlg2yrir h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPlg2yrir p {
  color: #767676;
  text-align: left;
}
.cid-uvPlg2yrir .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPlg2yrir .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPlg2yrir .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPlg2yrir .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPlg2yrir .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPlg2yrir .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPlg2yrir .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPlg2yrir .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPlg2yrir .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPlg2yrir H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvPlg2yrir P {
  color: #ffffff;
  text-align: left;
}
.cid-uvPlg2yrir H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvPlg2P7KE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPlg2P7KE H1 {
  color: #000000;
}
.cid-uxkigZt4Ki {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkigZt4Ki .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkigZt4Ki .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkigZt4Ki .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkigZt4Ki .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkigZt4Ki .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkigZt4Ki .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkigZt4Ki .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkigZt4Ki .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkigZt4Ki .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkigZt4Ki .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkigZt4Ki .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-uxkigZt4Ki .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkigZt4Ki .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkigZt4Ki .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkigZt4Ki .mbr-text,
.cid-uxkigZt4Ki .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkihDDvTY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkihDDvTY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkihDDvTY .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkihDDvTY .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkihDDvTY .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkihDDvTY .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkihDDvTY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkihDDvTY .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkihDDvTY .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkihDDvTY .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkihDDvTY .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkihDDvTY .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-uxkihDDvTY .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkihDDvTY .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkihDDvTY .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkihDDvTY .mbr-text,
.cid-uxkihDDvTY .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPlg3Llth {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPlg3Llth H1 {
  color: #000000;
}
.cid-uxkiilH2Dc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkiilH2Dc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkiilH2Dc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkiilH2Dc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkiilH2Dc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkiilH2Dc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkiilH2Dc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkiilH2Dc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkiilH2Dc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkiilH2Dc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkiilH2Dc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkiilH2Dc .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-uxkiilH2Dc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkiilH2Dc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkiilH2Dc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkiilH2Dc .mbr-text,
.cid-uxkiilH2Dc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkij6cytZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkij6cytZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkij6cytZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkij6cytZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkij6cytZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkij6cytZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkij6cytZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkij6cytZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkij6cytZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkij6cytZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkij6cytZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkij6cytZ .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-uxkij6cytZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkij6cytZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkij6cytZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkij6cytZ .mbr-text,
.cid-uxkij6cytZ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPlg4U8RL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPlg4U8RL H1 {
  color: #000000;
}
.cid-uvPlg593fj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvPlg593fj h2 {
  text-align: left;
}
.cid-uvPlg593fj h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPlg593fj p {
  color: #767676;
  text-align: left;
}
.cid-uvPlg593fj .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPlg593fj .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPlg593fj .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPlg593fj .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPlg593fj .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPlg593fj .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPlg593fj .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvPlg593fj .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvPlg593fj .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvPlg593fj .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvPlg593fj .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPlg5ucOw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPlg5ucOw H1 {
  color: #000000;
}
.cid-uvPlg5QOzF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvPlg5QOzF .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPlg5QOzF .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPlg5QOzF .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPlg5QOzF .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvPlg5QOzF .box {
  right: 20%;
}
.cid-uvPlg5QOzF .text-box {
  right: 0;
}
.cid-uvPlg5QOzF .mbr-section-title,
.cid-uvPlg5QOzF .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvPlg5QOzF .text-box {
    display: none;
  }
  .cid-uvPlg5QOzF .mbr-section-title,
  .cid-uvPlg5QOzF .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPlg5QOzF .box {
    display: none;
  }
  .cid-uvPlg5QOzF .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPlg5QOzF .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPlg5QOzF .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPlg5QOzF .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPlg5QOzF .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPlg5QOzF .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPlg67tK9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPlg6mUl7 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvPlg6mUl7 h2 {
  text-align: left;
}
.cid-uvPlg6mUl7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPlg6mUl7 p {
  color: #767676;
  text-align: left;
}
.cid-uvPlg6mUl7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPlg6mUl7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPlg6mUl7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPlg6mUl7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPlg6mUl7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPlg6mUl7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPlg6mUl7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPlg6mUl7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPlg6mUl7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPlg6mUl7 .mbr-text {
  color: #232323;
}
.cid-uvPlg6M1Sy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvPlg6M1Sy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPlg6M1Sy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvPlg6M1Sy .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvPlg6M1Sy .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvPlg6M1Sy .container {
    padding: 0 26px;
  }
}
.cid-uvPlg6M1Sy .row {
  justify-content: center;
}
.cid-uvPlg6M1Sy .item {
  margin-bottom: 32px;
}
.cid-uvPlg6M1Sy .item a {
  display: block;
}
.cid-uvPlg6M1Sy .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvPlg6M1Sy .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvPlg6M1Sy .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvPlg6M1Sy .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-uvPlg6M1Sy .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvPlg6M1Sy .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvPlg6M1Sy .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-uvPlg6M1Sy .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvPlg6M1Sy .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvPlg6M1Sy .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvPlg6M1Sy .item-title {
  color: #ffffff;
}
.cid-uvPlg6M1Sy .mbr-date {
  color: #cacaca;
}
.cid-uvPlg6M1Sy .mbr-desc {
  color: #cacaca;
}
.cid-uvPlg739gE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvPlg739gE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPlg739gE .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-uvPlg739gE .container {
    padding: 0 16px;
  }
}
.cid-uvPlg739gE .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvPlg739gE .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPlg739gE .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvPlg739gE .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPlg739gE .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvPlg739gE .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvPlg739gE .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvPlg739gE .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvPlg739gE .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvPlg739gE .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-uvPlg739gE .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvPlg739gE .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvPlg739gE .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvPlg739gE .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvPlg739gE .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvPlg739gE .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvPlg739gE .dragArea.row .form-group .form-control:hover,
.cid-uvPlg739gE .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvPlg739gE .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvPlg739gE .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvPlg739gE .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvPlg739gE .mbr-title {
  color: #ffffff;
}
.cid-uvPlg739gE .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvPlg739gE .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvPlg739gE .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvPlg739gE .list {
  color: #08323C;
}
.cid-uvPlg739gE label {
  color: #08323C;
}
.cid-uvPlg739gE H3 {
  color: #000000;
}
.cid-uvPlg739gE P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvPlGpspU8 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPlGpspU8 H1 {
  text-align: center;
}
.cid-uDmLqNGmzH {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmLqNGmzH .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmLqNGmzH .video-block {
    width: 100% !important;
  }
}
.cid-uvPlGpJL6J {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPlGpWIdN {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvPlGpWIdN .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPlGpWIdN .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPlGpWIdN .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPlGpWIdN .box {
  left: 20%;
}
.cid-uvPlGpWIdN .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvPlGpWIdN .mbr-section-text,
.cid-uvPlGpWIdN .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvPlGpWIdN .text-box {
    display: none;
  }
  .cid-uvPlGpWIdN .mbr-section-title,
  .cid-uvPlGpWIdN .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPlGpWIdN .box {
    display: none;
  }
  .cid-uvPlGpWIdN .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPlGpWIdN .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPlGpWIdN .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPlGpWIdN .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPlGpWIdN .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPlGpWIdN .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPlGqa9Jr {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPlGqa9Jr H1 {
  text-align: center;
}
.cid-uvPlGqoGer {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPlGqzh1n {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPlGqzh1n h2 {
  text-align: left;
}
.cid-uvPlGqzh1n h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPlGqzh1n p {
  color: #767676;
  text-align: left;
}
.cid-uvPlGqzh1n .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPlGqzh1n .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPlGqzh1n .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPlGqzh1n .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPlGqzh1n .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPlGqzh1n .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPlGqzh1n .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPlGqzh1n .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPlGqzh1n .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPlGqzh1n H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvPlGqzh1n P {
  color: #ffffff;
  text-align: left;
}
.cid-uvPlGqzh1n H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvPlGqRE9P {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPlGqRE9P H1 {
  color: #000000;
}
.cid-uxkioaWAZT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkioaWAZT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkioaWAZT .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkioaWAZT .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkioaWAZT .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkioaWAZT .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkioaWAZT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkioaWAZT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkioaWAZT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkioaWAZT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkioaWAZT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkioaWAZT .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-uxkioaWAZT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkioaWAZT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkioaWAZT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkioaWAZT .mbr-text,
.cid-uxkioaWAZT .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkioSYLAT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkioSYLAT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkioSYLAT .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkioSYLAT .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkioSYLAT .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkioSYLAT .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkioSYLAT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkioSYLAT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkioSYLAT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkioSYLAT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkioSYLAT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkioSYLAT .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-uxkioSYLAT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkioSYLAT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkioSYLAT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkioSYLAT .mbr-text,
.cid-uxkioSYLAT .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPlGrZtmg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPlGrZtmg H1 {
  color: #000000;
}
.cid-uxkipBqz3X {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkipBqz3X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkipBqz3X .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkipBqz3X .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkipBqz3X .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkipBqz3X .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkipBqz3X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkipBqz3X .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkipBqz3X .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkipBqz3X .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkipBqz3X .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkipBqz3X .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-uxkipBqz3X .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkipBqz3X .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkipBqz3X .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkipBqz3X .mbr-text,
.cid-uxkipBqz3X .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkiqjPA3v {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkiqjPA3v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkiqjPA3v .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkiqjPA3v .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkiqjPA3v .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkiqjPA3v .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkiqjPA3v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkiqjPA3v .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkiqjPA3v .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkiqjPA3v .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkiqjPA3v .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkiqjPA3v .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-uxkiqjPA3v .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkiqjPA3v .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkiqjPA3v .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkiqjPA3v .mbr-text,
.cid-uxkiqjPA3v .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPlGt8rlv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPlGt8rlv H1 {
  color: #000000;
}
.cid-uvPlGtmv8R {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvPlGtmv8R h2 {
  text-align: left;
}
.cid-uvPlGtmv8R h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPlGtmv8R p {
  color: #767676;
  text-align: left;
}
.cid-uvPlGtmv8R .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPlGtmv8R .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPlGtmv8R .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPlGtmv8R .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPlGtmv8R .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPlGtmv8R .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPlGtmv8R .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvPlGtmv8R .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvPlGtmv8R .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvPlGtmv8R .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvPlGtmv8R .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPlGtFNBE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPlGtFNBE H1 {
  color: #000000;
}
.cid-uvPlGtUrvr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvPlGtUrvr .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPlGtUrvr .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPlGtUrvr .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPlGtUrvr .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvPlGtUrvr .box {
  right: 20%;
}
.cid-uvPlGtUrvr .text-box {
  right: 0;
}
.cid-uvPlGtUrvr .mbr-section-title,
.cid-uvPlGtUrvr .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvPlGtUrvr .text-box {
    display: none;
  }
  .cid-uvPlGtUrvr .mbr-section-title,
  .cid-uvPlGtUrvr .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPlGtUrvr .box {
    display: none;
  }
  .cid-uvPlGtUrvr .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPlGtUrvr .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPlGtUrvr .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPlGtUrvr .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPlGtUrvr .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPlGtUrvr .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPlGud74k {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPlGuvVjZ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvPlGuvVjZ h2 {
  text-align: left;
}
.cid-uvPlGuvVjZ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPlGuvVjZ p {
  color: #767676;
  text-align: left;
}
.cid-uvPlGuvVjZ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPlGuvVjZ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPlGuvVjZ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPlGuvVjZ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPlGuvVjZ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPlGuvVjZ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPlGuvVjZ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPlGuvVjZ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPlGuvVjZ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPlGuvVjZ .mbr-text {
  color: #232323;
}
.cid-uvPlGuNVd5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvPlGuNVd5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPlGuNVd5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvPlGuNVd5 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvPlGuNVd5 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvPlGuNVd5 .container {
    padding: 0 26px;
  }
}
.cid-uvPlGuNVd5 .row {
  justify-content: center;
}
.cid-uvPlGuNVd5 .item {
  margin-bottom: 32px;
}
.cid-uvPlGuNVd5 .item a {
  display: block;
}
.cid-uvPlGuNVd5 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvPlGuNVd5 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvPlGuNVd5 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvPlGuNVd5 .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-uvPlGuNVd5 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvPlGuNVd5 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvPlGuNVd5 .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-uvPlGuNVd5 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvPlGuNVd5 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvPlGuNVd5 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvPlGuNVd5 .item-title {
  color: #ffffff;
}
.cid-uvPlGuNVd5 .mbr-date {
  color: #cacaca;
}
.cid-uvPlGuNVd5 .mbr-desc {
  color: #cacaca;
}
.cid-uvPlGvaUYo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvPlGvaUYo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPlGvaUYo .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-uvPlGvaUYo .container {
    padding: 0 16px;
  }
}
.cid-uvPlGvaUYo .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvPlGvaUYo .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPlGvaUYo .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvPlGvaUYo .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPlGvaUYo .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvPlGvaUYo .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvPlGvaUYo .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvPlGvaUYo .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvPlGvaUYo .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvPlGvaUYo .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-uvPlGvaUYo .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvPlGvaUYo .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvPlGvaUYo .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvPlGvaUYo .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvPlGvaUYo .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvPlGvaUYo .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvPlGvaUYo .dragArea.row .form-group .form-control:hover,
.cid-uvPlGvaUYo .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvPlGvaUYo .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvPlGvaUYo .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvPlGvaUYo .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvPlGvaUYo .mbr-title {
  color: #ffffff;
}
.cid-uvPlGvaUYo .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvPlGvaUYo .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvPlGvaUYo .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvPlGvaUYo .list {
  color: #08323C;
}
.cid-uvPlGvaUYo label {
  color: #08323C;
}
.cid-uvPlGvaUYo H3 {
  color: #000000;
}
.cid-uvPlGvaUYo P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvPlRa2qNQ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPlRa2qNQ H1 {
  text-align: center;
}
.cid-uDmLtPTcSO {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmLtPTcSO .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmLtPTcSO .video-block {
    width: 100% !important;
  }
}
.cid-uvPlRajJyW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPlRaw5mR {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvPlRaw5mR .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPlRaw5mR .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPlRaw5mR .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPlRaw5mR .box {
  left: 20%;
}
.cid-uvPlRaw5mR .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvPlRaw5mR .mbr-section-text,
.cid-uvPlRaw5mR .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvPlRaw5mR .text-box {
    display: none;
  }
  .cid-uvPlRaw5mR .mbr-section-title,
  .cid-uvPlRaw5mR .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPlRaw5mR .box {
    display: none;
  }
  .cid-uvPlRaw5mR .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPlRaw5mR .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPlRaw5mR .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPlRaw5mR .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPlRaw5mR .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPlRaw5mR .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPlRaMp9r {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPlRaMp9r H1 {
  text-align: center;
}
.cid-uvPlRb27C6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPlRbdvjT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPlRbdvjT h2 {
  text-align: left;
}
.cid-uvPlRbdvjT h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPlRbdvjT p {
  color: #767676;
  text-align: left;
}
.cid-uvPlRbdvjT .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPlRbdvjT .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPlRbdvjT .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPlRbdvjT .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPlRbdvjT .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPlRbdvjT .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPlRbdvjT .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPlRbdvjT .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPlRbdvjT .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPlRbdvjT H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvPlRbdvjT P {
  color: #ffffff;
  text-align: left;
}
.cid-uvPlRbdvjT H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvPlRbwWMj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPlRbwWMj H1 {
  color: #000000;
}
.cid-uxkiwqCpkQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkiwqCpkQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkiwqCpkQ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkiwqCpkQ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkiwqCpkQ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkiwqCpkQ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkiwqCpkQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkiwqCpkQ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkiwqCpkQ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkiwqCpkQ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkiwqCpkQ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkiwqCpkQ .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-uxkiwqCpkQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkiwqCpkQ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkiwqCpkQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkiwqCpkQ .mbr-text,
.cid-uxkiwqCpkQ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkixdmBsF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkixdmBsF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkixdmBsF .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkixdmBsF .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkixdmBsF .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkixdmBsF .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkixdmBsF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkixdmBsF .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkixdmBsF .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkixdmBsF .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkixdmBsF .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkixdmBsF .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-uxkixdmBsF .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkixdmBsF .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkixdmBsF .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkixdmBsF .mbr-text,
.cid-uxkixdmBsF .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPlRcBSj7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPlRcBSj7 H1 {
  color: #000000;
}
.cid-uxkixWrKcd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkixWrKcd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkixWrKcd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkixWrKcd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkixWrKcd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkixWrKcd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkixWrKcd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkixWrKcd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkixWrKcd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkixWrKcd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkixWrKcd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkixWrKcd .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-uxkixWrKcd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkixWrKcd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkixWrKcd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkixWrKcd .mbr-text,
.cid-uxkixWrKcd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkiyC3tuX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkiyC3tuX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkiyC3tuX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkiyC3tuX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkiyC3tuX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkiyC3tuX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkiyC3tuX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkiyC3tuX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkiyC3tuX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkiyC3tuX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkiyC3tuX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkiyC3tuX .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-uxkiyC3tuX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkiyC3tuX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkiyC3tuX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkiyC3tuX .mbr-text,
.cid-uxkiyC3tuX .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPlRdKcvC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPlRdKcvC H1 {
  color: #000000;
}
.cid-uvPlRdYgvj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvPlRdYgvj h2 {
  text-align: left;
}
.cid-uvPlRdYgvj h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPlRdYgvj p {
  color: #767676;
  text-align: left;
}
.cid-uvPlRdYgvj .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPlRdYgvj .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPlRdYgvj .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPlRdYgvj .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPlRdYgvj .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPlRdYgvj .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPlRdYgvj .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvPlRdYgvj .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvPlRdYgvj .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvPlRdYgvj .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvPlRdYgvj .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPlRee1yP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPlRee1yP H1 {
  color: #000000;
}
.cid-uvPlResvN1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvPlResvN1 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPlResvN1 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPlResvN1 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPlResvN1 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvPlResvN1 .box {
  right: 20%;
}
.cid-uvPlResvN1 .text-box {
  right: 0;
}
.cid-uvPlResvN1 .mbr-section-title,
.cid-uvPlResvN1 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvPlResvN1 .text-box {
    display: none;
  }
  .cid-uvPlResvN1 .mbr-section-title,
  .cid-uvPlResvN1 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPlResvN1 .box {
    display: none;
  }
  .cid-uvPlResvN1 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPlResvN1 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPlResvN1 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPlResvN1 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPlResvN1 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPlResvN1 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPlReOjK0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPlRf42CI {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvPlRf42CI h2 {
  text-align: left;
}
.cid-uvPlRf42CI h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPlRf42CI p {
  color: #767676;
  text-align: left;
}
.cid-uvPlRf42CI .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPlRf42CI .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPlRf42CI .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPlRf42CI .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPlRf42CI .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPlRf42CI .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPlRf42CI .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPlRf42CI .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPlRf42CI .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPlRf42CI .mbr-text {
  color: #232323;
}
.cid-uvPlRfp0Y4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvPlRfp0Y4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPlRfp0Y4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvPlRfp0Y4 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvPlRfp0Y4 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvPlRfp0Y4 .container {
    padding: 0 26px;
  }
}
.cid-uvPlRfp0Y4 .row {
  justify-content: center;
}
.cid-uvPlRfp0Y4 .item {
  margin-bottom: 32px;
}
.cid-uvPlRfp0Y4 .item a {
  display: block;
}
.cid-uvPlRfp0Y4 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvPlRfp0Y4 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvPlRfp0Y4 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvPlRfp0Y4 .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-uvPlRfp0Y4 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvPlRfp0Y4 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvPlRfp0Y4 .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-uvPlRfp0Y4 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvPlRfp0Y4 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvPlRfp0Y4 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvPlRfp0Y4 .item-title {
  color: #ffffff;
}
.cid-uvPlRfp0Y4 .mbr-date {
  color: #cacaca;
}
.cid-uvPlRfp0Y4 .mbr-desc {
  color: #cacaca;
}
.cid-uvPlRfJdSg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvPlRfJdSg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPlRfJdSg .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-uvPlRfJdSg .container {
    padding: 0 16px;
  }
}
.cid-uvPlRfJdSg .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvPlRfJdSg .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPlRfJdSg .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvPlRfJdSg .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPlRfJdSg .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvPlRfJdSg .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvPlRfJdSg .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvPlRfJdSg .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvPlRfJdSg .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvPlRfJdSg .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-uvPlRfJdSg .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvPlRfJdSg .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvPlRfJdSg .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvPlRfJdSg .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvPlRfJdSg .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvPlRfJdSg .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvPlRfJdSg .dragArea.row .form-group .form-control:hover,
.cid-uvPlRfJdSg .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvPlRfJdSg .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvPlRfJdSg .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvPlRfJdSg .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvPlRfJdSg .mbr-title {
  color: #ffffff;
}
.cid-uvPlRfJdSg .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvPlRfJdSg .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvPlRfJdSg .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvPlRfJdSg .list {
  color: #08323C;
}
.cid-uvPlRfJdSg label {
  color: #08323C;
}
.cid-uvPlRfJdSg H3 {
  color: #000000;
}
.cid-uvPlRfJdSg P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvPmHO5aQD {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPmHO5aQD H1 {
  text-align: center;
}
.cid-uDmLwk9SF0 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmLwk9SF0 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmLwk9SF0 .video-block {
    width: 100% !important;
  }
}
.cid-uvPmHOoVcE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPmHOFtyZ {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvPmHOFtyZ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPmHOFtyZ .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPmHOFtyZ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPmHOFtyZ .box {
  left: 20%;
}
.cid-uvPmHOFtyZ .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvPmHOFtyZ .mbr-section-text,
.cid-uvPmHOFtyZ .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvPmHOFtyZ .text-box {
    display: none;
  }
  .cid-uvPmHOFtyZ .mbr-section-title,
  .cid-uvPmHOFtyZ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPmHOFtyZ .box {
    display: none;
  }
  .cid-uvPmHOFtyZ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPmHOFtyZ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPmHOFtyZ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPmHOFtyZ .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPmHOFtyZ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPmHOFtyZ .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPmHOSEPi {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPmHOSEPi H1 {
  text-align: center;
}
.cid-uvPmHP4DNn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPmHPgVja {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPmHPgVja h2 {
  text-align: left;
}
.cid-uvPmHPgVja h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPmHPgVja p {
  color: #767676;
  text-align: left;
}
.cid-uvPmHPgVja .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPmHPgVja .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPmHPgVja .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPmHPgVja .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPmHPgVja .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPmHPgVja .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPmHPgVja .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPmHPgVja .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPmHPgVja .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPmHPgVja H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvPmHPgVja P {
  color: #ffffff;
  text-align: left;
}
.cid-uvPmHPgVja H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvPmHPEq7p {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPmHPEq7p H1 {
  color: #000000;
}
.cid-uxkiFjiZmc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkiFjiZmc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkiFjiZmc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkiFjiZmc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkiFjiZmc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkiFjiZmc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkiFjiZmc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkiFjiZmc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkiFjiZmc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkiFjiZmc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkiFjiZmc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkiFjiZmc .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-uxkiFjiZmc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkiFjiZmc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkiFjiZmc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkiFjiZmc .mbr-text,
.cid-uxkiFjiZmc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkiG2Z4uQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkiG2Z4uQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkiG2Z4uQ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkiG2Z4uQ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkiG2Z4uQ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkiG2Z4uQ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkiG2Z4uQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkiG2Z4uQ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkiG2Z4uQ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkiG2Z4uQ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkiG2Z4uQ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkiG2Z4uQ .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-uxkiG2Z4uQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkiG2Z4uQ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkiG2Z4uQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkiG2Z4uQ .mbr-text,
.cid-uxkiG2Z4uQ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPmHRgA2B {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPmHRgA2B H1 {
  color: #000000;
}
.cid-uxkiGMh2LN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkiGMh2LN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkiGMh2LN .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkiGMh2LN .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkiGMh2LN .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkiGMh2LN .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkiGMh2LN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkiGMh2LN .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkiGMh2LN .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkiGMh2LN .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkiGMh2LN .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkiGMh2LN .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-uxkiGMh2LN .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkiGMh2LN .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkiGMh2LN .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkiGMh2LN .mbr-text,
.cid-uxkiGMh2LN .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkiHvQv6R {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkiHvQv6R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkiHvQv6R .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkiHvQv6R .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkiHvQv6R .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkiHvQv6R .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkiHvQv6R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkiHvQv6R .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkiHvQv6R .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkiHvQv6R .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkiHvQv6R .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkiHvQv6R .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-uxkiHvQv6R .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkiHvQv6R .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkiHvQv6R .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkiHvQv6R .mbr-text,
.cid-uxkiHvQv6R .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPmHT7dFR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPmHT7dFR H1 {
  color: #000000;
}
.cid-uvPmHTrfvz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvPmHTrfvz h2 {
  text-align: left;
}
.cid-uvPmHTrfvz h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPmHTrfvz p {
  color: #767676;
  text-align: left;
}
.cid-uvPmHTrfvz .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPmHTrfvz .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPmHTrfvz .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPmHTrfvz .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPmHTrfvz .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPmHTrfvz .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPmHTrfvz .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvPmHTrfvz .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvPmHTrfvz .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvPmHTrfvz .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvPmHTrfvz .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPmHTNyMT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPmHTNyMT H1 {
  color: #000000;
}
.cid-uvPmHU23jM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvPmHU23jM .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPmHU23jM .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPmHU23jM .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPmHU23jM .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvPmHU23jM .box {
  right: 20%;
}
.cid-uvPmHU23jM .text-box {
  right: 0;
}
.cid-uvPmHU23jM .mbr-section-title,
.cid-uvPmHU23jM .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvPmHU23jM .text-box {
    display: none;
  }
  .cid-uvPmHU23jM .mbr-section-title,
  .cid-uvPmHU23jM .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPmHU23jM .box {
    display: none;
  }
  .cid-uvPmHU23jM .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPmHU23jM .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPmHU23jM .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPmHU23jM .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPmHU23jM .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPmHU23jM .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPmHUkD5v {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPmHUJLj4 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvPmHUJLj4 h2 {
  text-align: left;
}
.cid-uvPmHUJLj4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPmHUJLj4 p {
  color: #767676;
  text-align: left;
}
.cid-uvPmHUJLj4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPmHUJLj4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPmHUJLj4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPmHUJLj4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPmHUJLj4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPmHUJLj4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPmHUJLj4 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPmHUJLj4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPmHUJLj4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPmHUJLj4 .mbr-text {
  color: #232323;
}
.cid-uvPmHV5Ueu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvPmHV5Ueu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPmHV5Ueu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvPmHV5Ueu .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvPmHV5Ueu .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvPmHV5Ueu .container {
    padding: 0 26px;
  }
}
.cid-uvPmHV5Ueu .row {
  justify-content: center;
}
.cid-uvPmHV5Ueu .item {
  margin-bottom: 32px;
}
.cid-uvPmHV5Ueu .item a {
  display: block;
}
.cid-uvPmHV5Ueu .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvPmHV5Ueu .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvPmHV5Ueu .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvPmHV5Ueu .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-uvPmHV5Ueu .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvPmHV5Ueu .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvPmHV5Ueu .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-uvPmHV5Ueu .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvPmHV5Ueu .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvPmHV5Ueu .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvPmHV5Ueu .item-title {
  color: #ffffff;
}
.cid-uvPmHV5Ueu .mbr-date {
  color: #cacaca;
}
.cid-uvPmHV5Ueu .mbr-desc {
  color: #cacaca;
}
.cid-uvPmHVn5mP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvPmHVn5mP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPmHVn5mP .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-uvPmHVn5mP .container {
    padding: 0 16px;
  }
}
.cid-uvPmHVn5mP .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvPmHVn5mP .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPmHVn5mP .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvPmHVn5mP .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPmHVn5mP .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvPmHVn5mP .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvPmHVn5mP .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvPmHVn5mP .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvPmHVn5mP .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvPmHVn5mP .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-uvPmHVn5mP .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvPmHVn5mP .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvPmHVn5mP .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvPmHVn5mP .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvPmHVn5mP .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvPmHVn5mP .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvPmHVn5mP .dragArea.row .form-group .form-control:hover,
.cid-uvPmHVn5mP .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvPmHVn5mP .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvPmHVn5mP .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvPmHVn5mP .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvPmHVn5mP .mbr-title {
  color: #ffffff;
}
.cid-uvPmHVn5mP .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvPmHVn5mP .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvPmHVn5mP .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvPmHVn5mP .list {
  color: #08323C;
}
.cid-uvPmHVn5mP label {
  color: #08323C;
}
.cid-uvPmHVn5mP H3 {
  color: #000000;
}
.cid-uvPmHVn5mP P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvPLLymrjv {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPLLymrjv H1 {
  text-align: center;
}
.cid-uDmLzvyhQL {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmLzvyhQL .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmLzvyhQL .video-block {
    width: 100% !important;
  }
}
.cid-uvPLLySbuA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPLLzdu6B {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvPLLzdu6B .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPLLzdu6B .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPLLzdu6B .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPLLzdu6B .box {
  left: 20%;
}
.cid-uvPLLzdu6B .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvPLLzdu6B .mbr-section-text,
.cid-uvPLLzdu6B .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvPLLzdu6B .text-box {
    display: none;
  }
  .cid-uvPLLzdu6B .mbr-section-title,
  .cid-uvPLLzdu6B .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPLLzdu6B .box {
    display: none;
  }
  .cid-uvPLLzdu6B .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPLLzdu6B .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPLLzdu6B .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPLLzdu6B .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPLLzdu6B .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPLLzdu6B .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPLLzvNpj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPLLzvNpj H1 {
  text-align: center;
}
.cid-uvPLLzLcQ0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPLLA03fs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvPLLA03fs h2 {
  text-align: left;
}
.cid-uvPLLA03fs h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPLLA03fs p {
  color: #767676;
  text-align: left;
}
.cid-uvPLLA03fs .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPLLA03fs .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPLLA03fs .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPLLA03fs .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPLLA03fs .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPLLA03fs .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPLLA03fs .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPLLA03fs .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPLLA03fs .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPLLA03fs H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvPLLA03fs P {
  color: #ffffff;
  text-align: left;
}
.cid-uvPLLA03fs H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvPLLArHi0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPLLArHi0 H1 {
  color: #000000;
}
.cid-uxkiNOjZUc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkiNOjZUc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkiNOjZUc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkiNOjZUc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkiNOjZUc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkiNOjZUc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkiNOjZUc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkiNOjZUc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkiNOjZUc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkiNOjZUc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkiNOjZUc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkiNOjZUc .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-uxkiNOjZUc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkiNOjZUc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkiNOjZUc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkiNOjZUc .mbr-text,
.cid-uxkiNOjZUc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkiOsVY1O {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkiOsVY1O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkiOsVY1O .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkiOsVY1O .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkiOsVY1O .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkiOsVY1O .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkiOsVY1O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkiOsVY1O .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkiOsVY1O .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkiOsVY1O .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkiOsVY1O .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkiOsVY1O .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-uxkiOsVY1O .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkiOsVY1O .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkiOsVY1O .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkiOsVY1O .mbr-text,
.cid-uxkiOsVY1O .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPLLBVs56 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvPLLBVs56 H1 {
  color: #000000;
}
.cid-uxkiPiuNsC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkiPiuNsC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkiPiuNsC .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkiPiuNsC .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkiPiuNsC .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkiPiuNsC .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkiPiuNsC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkiPiuNsC .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkiPiuNsC .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkiPiuNsC .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkiPiuNsC .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkiPiuNsC .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-uxkiPiuNsC .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkiPiuNsC .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkiPiuNsC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkiPiuNsC .mbr-text,
.cid-uxkiPiuNsC .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkiQ2V09K {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkiQ2V09K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkiQ2V09K .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkiQ2V09K .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkiQ2V09K .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkiQ2V09K .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkiQ2V09K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkiQ2V09K .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkiQ2V09K .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkiQ2V09K .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkiQ2V09K .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkiQ2V09K .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-uxkiQ2V09K .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkiQ2V09K .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkiQ2V09K .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkiQ2V09K .mbr-text,
.cid-uxkiQ2V09K .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvPLLDko7t {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPLLDko7t H1 {
  color: #000000;
}
.cid-uvPLLDFRba {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvPLLDFRba h2 {
  text-align: left;
}
.cid-uvPLLDFRba h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPLLDFRba p {
  color: #767676;
  text-align: left;
}
.cid-uvPLLDFRba .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPLLDFRba .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPLLDFRba .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPLLDFRba .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPLLDFRba .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPLLDFRba .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPLLDFRba .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvPLLDFRba .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvPLLDFRba .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvPLLDFRba .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvPLLDFRba .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPLLE17kj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvPLLE17kj H1 {
  color: #000000;
}
.cid-uvPLLEnCdz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvPLLEnCdz .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvPLLEnCdz .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvPLLEnCdz .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvPLLEnCdz .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvPLLEnCdz .box {
  right: 20%;
}
.cid-uvPLLEnCdz .text-box {
  right: 0;
}
.cid-uvPLLEnCdz .mbr-section-title,
.cid-uvPLLEnCdz .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvPLLEnCdz .text-box {
    display: none;
  }
  .cid-uvPLLEnCdz .mbr-section-title,
  .cid-uvPLLEnCdz .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvPLLEnCdz .box {
    display: none;
  }
  .cid-uvPLLEnCdz .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvPLLEnCdz .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvPLLEnCdz .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvPLLEnCdz .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvPLLEnCdz .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvPLLEnCdz .mbr-section-text DIV {
  text-align: center;
}
.cid-uvPLLEIPy8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvPLLF1Euz {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvPLLF1Euz h2 {
  text-align: left;
}
.cid-uvPLLF1Euz h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvPLLF1Euz p {
  color: #767676;
  text-align: left;
}
.cid-uvPLLF1Euz .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvPLLF1Euz .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvPLLF1Euz .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvPLLF1Euz .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvPLLF1Euz .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvPLLF1Euz .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvPLLF1Euz .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvPLLF1Euz .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvPLLF1Euz .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvPLLF1Euz .mbr-text {
  color: #232323;
}
.cid-uvPLLFquZm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvPLLFquZm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPLLFquZm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvPLLFquZm .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvPLLFquZm .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvPLLFquZm .container {
    padding: 0 26px;
  }
}
.cid-uvPLLFquZm .row {
  justify-content: center;
}
.cid-uvPLLFquZm .item {
  margin-bottom: 32px;
}
.cid-uvPLLFquZm .item a {
  display: block;
}
.cid-uvPLLFquZm .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvPLLFquZm .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvPLLFquZm .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvPLLFquZm .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-uvPLLFquZm .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvPLLFquZm .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvPLLFquZm .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-uvPLLFquZm .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvPLLFquZm .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvPLLFquZm .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvPLLFquZm .item-title {
  color: #ffffff;
}
.cid-uvPLLFquZm .mbr-date {
  color: #cacaca;
}
.cid-uvPLLFquZm .mbr-desc {
  color: #cacaca;
}
.cid-uvPLLFPczA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvPLLFPczA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvPLLFPczA .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-uvPLLFPczA .container {
    padding: 0 16px;
  }
}
.cid-uvPLLFPczA .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvPLLFPczA .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPLLFPczA .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvPLLFPczA .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvPLLFPczA .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvPLLFPczA .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvPLLFPczA .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvPLLFPczA .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvPLLFPczA .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvPLLFPczA .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-uvPLLFPczA .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvPLLFPczA .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvPLLFPczA .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvPLLFPczA .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvPLLFPczA .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvPLLFPczA .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvPLLFPczA .dragArea.row .form-group .form-control:hover,
.cid-uvPLLFPczA .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvPLLFPczA .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvPLLFPczA .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvPLLFPczA .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvPLLFPczA .mbr-title {
  color: #ffffff;
}
.cid-uvPLLFPczA .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvPLLFPczA .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvPLLFPczA .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvPLLFPczA .list {
  color: #08323C;
}
.cid-uvPLLFPczA label {
  color: #08323C;
}
.cid-uvPLLFPczA H3 {
  color: #000000;
}
.cid-uvPLLFPczA P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvTW9jGng0 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTW9jGng0 H1 {
  text-align: center;
}
.cid-uDmxYsuDoJ {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmxYsuDoJ .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmxYsuDoJ .video-block {
    width: 100% !important;
  }
}
.cid-uvTW9jTHfW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTW9k5Yg8 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvTW9k5Yg8 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvTW9k5Yg8 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvTW9k5Yg8 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvTW9k5Yg8 .box {
  left: 20%;
}
.cid-uvTW9k5Yg8 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvTW9k5Yg8 .mbr-section-text,
.cid-uvTW9k5Yg8 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvTW9k5Yg8 .text-box {
    display: none;
  }
  .cid-uvTW9k5Yg8 .mbr-section-title,
  .cid-uvTW9k5Yg8 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvTW9k5Yg8 .box {
    display: none;
  }
  .cid-uvTW9k5Yg8 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvTW9k5Yg8 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvTW9k5Yg8 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvTW9k5Yg8 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvTW9k5Yg8 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvTW9k5Yg8 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvTW9kgXcG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTW9kgXcG H1 {
  text-align: center;
}
.cid-uvTW9kr9eX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTW9kAjww {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTW9kAjww h2 {
  text-align: left;
}
.cid-uvTW9kAjww h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTW9kAjww p {
  color: #767676;
  text-align: left;
}
.cid-uvTW9kAjww .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTW9kAjww .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTW9kAjww .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTW9kAjww .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTW9kAjww .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTW9kAjww .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTW9kAjww .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvTW9kAjww .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvTW9kAjww .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTW9kAjww H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvTW9kAjww P {
  color: #ffffff;
  text-align: left;
}
.cid-uvTW9kAjww H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvTW9kRLZ7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvTW9kRLZ7 H1 {
  color: #000000;
}
.cid-uxfkWiOO7I {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfkWiOO7I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfkWiOO7I .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfkWiOO7I .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfkWiOO7I .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfkWiOO7I .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfkWiOO7I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfkWiOO7I .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfkWiOO7I .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfkWiOO7I .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfkWiOO7I .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfkWiOO7I .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-uxfkWiOO7I .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfkWiOO7I .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfkWiOO7I .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfkWiOO7I .mbr-text,
.cid-uxfkWiOO7I .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvTW9lsPjS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvTW9lsPjS H1 {
  color: #000000;
}
.cid-uxfkX8zPQh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfkX8zPQh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfkX8zPQh .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfkX8zPQh .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfkX8zPQh .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfkX8zPQh .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfkX8zPQh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfkX8zPQh .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfkX8zPQh .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfkX8zPQh .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfkX8zPQh .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfkX8zPQh .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-uxfkX8zPQh .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfkX8zPQh .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfkX8zPQh .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfkX8zPQh .mbr-text,
.cid-uxfkX8zPQh .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfkXKPAEn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfkXKPAEn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfkXKPAEn .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfkXKPAEn .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfkXKPAEn .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfkXKPAEn .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfkXKPAEn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfkXKPAEn .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfkXKPAEn .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfkXKPAEn .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfkXKPAEn .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfkXKPAEn .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-uxfkXKPAEn .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfkXKPAEn .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfkXKPAEn .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfkXKPAEn .mbr-text,
.cid-uxfkXKPAEn .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvTW9msrAv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvTW9msrAv H1 {
  color: #000000;
}
.cid-uvTW9mFk7x {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvTW9mFk7x h2 {
  text-align: left;
}
.cid-uvTW9mFk7x h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTW9mFk7x p {
  color: #767676;
  text-align: left;
}
.cid-uvTW9mFk7x .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTW9mFk7x .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTW9mFk7x .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTW9mFk7x .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTW9mFk7x .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTW9mFk7x .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTW9mFk7x .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvTW9mFk7x .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvTW9mFk7x .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvTW9mFk7x .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvTW9mFk7x .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTW9n4Ze9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvTW9n4Ze9 H1 {
  color: #000000;
}
.cid-uvTW9ni2zA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvTW9ni2zA .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvTW9ni2zA .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvTW9ni2zA .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvTW9ni2zA .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvTW9ni2zA .box {
  right: 20%;
}
.cid-uvTW9ni2zA .text-box {
  right: 0;
}
.cid-uvTW9ni2zA .mbr-section-title,
.cid-uvTW9ni2zA .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvTW9ni2zA .text-box {
    display: none;
  }
  .cid-uvTW9ni2zA .mbr-section-title,
  .cid-uvTW9ni2zA .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvTW9ni2zA .box {
    display: none;
  }
  .cid-uvTW9ni2zA .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvTW9ni2zA .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvTW9ni2zA .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvTW9ni2zA .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvTW9ni2zA .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvTW9ni2zA .mbr-section-text DIV {
  text-align: center;
}
.cid-uvTW9nzCQw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTW9nSuE2 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvTW9nSuE2 h2 {
  text-align: left;
}
.cid-uvTW9nSuE2 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTW9nSuE2 p {
  color: #767676;
  text-align: left;
}
.cid-uvTW9nSuE2 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTW9nSuE2 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTW9nSuE2 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTW9nSuE2 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTW9nSuE2 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTW9nSuE2 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTW9nSuE2 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvTW9nSuE2 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvTW9nSuE2 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTW9nSuE2 .mbr-text {
  color: #232323;
}
.cid-uvTW9o9VFG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvTW9o9VFG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTW9o9VFG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvTW9o9VFG .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvTW9o9VFG .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvTW9o9VFG .container {
    padding: 0 26px;
  }
}
.cid-uvTW9o9VFG .row {
  justify-content: center;
}
.cid-uvTW9o9VFG .item {
  margin-bottom: 32px;
}
.cid-uvTW9o9VFG .item a {
  display: block;
}
.cid-uvTW9o9VFG .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvTW9o9VFG .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvTW9o9VFG .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvTW9o9VFG .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-uvTW9o9VFG .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvTW9o9VFG .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvTW9o9VFG .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-uvTW9o9VFG .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvTW9o9VFG .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvTW9o9VFG .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvTW9o9VFG .item-title {
  color: #ffffff;
}
.cid-uvTW9o9VFG .mbr-date {
  color: #cacaca;
}
.cid-uvTW9o9VFG .mbr-desc {
  color: #cacaca;
}
.cid-uvTW9oqMlN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvTW9oqMlN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTW9oqMlN .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-uvTW9oqMlN .container {
    padding: 0 16px;
  }
}
.cid-uvTW9oqMlN .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvTW9oqMlN .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvTW9oqMlN .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvTW9oqMlN .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvTW9oqMlN .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvTW9oqMlN .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvTW9oqMlN .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvTW9oqMlN .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvTW9oqMlN .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvTW9oqMlN .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-uvTW9oqMlN .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvTW9oqMlN .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvTW9oqMlN .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvTW9oqMlN .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvTW9oqMlN .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvTW9oqMlN .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvTW9oqMlN .dragArea.row .form-group .form-control:hover,
.cid-uvTW9oqMlN .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvTW9oqMlN .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvTW9oqMlN .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvTW9oqMlN .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvTW9oqMlN .mbr-title {
  color: #ffffff;
}
.cid-uvTW9oqMlN .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvTW9oqMlN .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvTW9oqMlN .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvTW9oqMlN .list {
  color: #08323C;
}
.cid-uvTW9oqMlN label {
  color: #08323C;
}
.cid-uvTW9oqMlN H3 {
  color: #000000;
}
.cid-uvTW9oqMlN P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvTWlAOjit {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTWlAOjit H1 {
  text-align: center;
}
.cid-uDmy1rAFNJ {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmy1rAFNJ .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmy1rAFNJ .video-block {
    width: 100% !important;
  }
}
.cid-uvTWlB9R70 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTWlBuf3N {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvTWlBuf3N .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvTWlBuf3N .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvTWlBuf3N .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvTWlBuf3N .box {
  left: 20%;
}
.cid-uvTWlBuf3N .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvTWlBuf3N .mbr-section-text,
.cid-uvTWlBuf3N .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvTWlBuf3N .text-box {
    display: none;
  }
  .cid-uvTWlBuf3N .mbr-section-title,
  .cid-uvTWlBuf3N .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvTWlBuf3N .box {
    display: none;
  }
  .cid-uvTWlBuf3N .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvTWlBuf3N .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvTWlBuf3N .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvTWlBuf3N .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvTWlBuf3N .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvTWlBuf3N .mbr-section-text DIV {
  text-align: center;
}
.cid-uvTWlBMKiv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTWlBMKiv H1 {
  text-align: center;
}
.cid-uvTWlBWwdp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTWlC4fcz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTWlC4fcz h2 {
  text-align: left;
}
.cid-uvTWlC4fcz h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTWlC4fcz p {
  color: #767676;
  text-align: left;
}
.cid-uvTWlC4fcz .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTWlC4fcz .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTWlC4fcz .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTWlC4fcz .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTWlC4fcz .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTWlC4fcz .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTWlC4fcz .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvTWlC4fcz .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvTWlC4fcz .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTWlC4fcz H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvTWlC4fcz P {
  color: #ffffff;
  text-align: left;
}
.cid-uvTWlC4fcz H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvU7lCGjJh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU7lCGjJh H1 {
  color: #000000;
}
.cid-uxfl9fO3v8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfl9fO3v8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfl9fO3v8 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfl9fO3v8 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfl9fO3v8 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfl9fO3v8 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfl9fO3v8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfl9fO3v8 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfl9fO3v8 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfl9fO3v8 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfl9fO3v8 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfl9fO3v8 .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-uxfl9fO3v8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfl9fO3v8 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfl9fO3v8 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfl9fO3v8 .mbr-text,
.cid-uxfl9fO3v8 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvTWlCXjZM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvTWlCXjZM H1 {
  color: #000000;
}
.cid-uxfl79Egsd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfl79Egsd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfl79Egsd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfl79Egsd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfl79Egsd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfl79Egsd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfl79Egsd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfl79Egsd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfl79Egsd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfl79Egsd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfl79Egsd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfl79Egsd .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-uxfl79Egsd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfl79Egsd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfl79Egsd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfl79Egsd .mbr-text,
.cid-uxfl79Egsd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfl80Ny8H {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfl80Ny8H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfl80Ny8H .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfl80Ny8H .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfl80Ny8H .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfl80Ny8H .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfl80Ny8H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfl80Ny8H .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfl80Ny8H .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfl80Ny8H .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfl80Ny8H .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfl80Ny8H .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-uxfl80Ny8H .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfl80Ny8H .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfl80Ny8H .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfl80Ny8H .mbr-text,
.cid-uxfl80Ny8H .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU7sfqEh4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU7sfqEh4 H1 {
  color: #000000;
}
.cid-uvTWlEJbff {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvTWlEJbff h2 {
  text-align: left;
}
.cid-uvTWlEJbff h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTWlEJbff p {
  color: #767676;
  text-align: left;
}
.cid-uvTWlEJbff .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTWlEJbff .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTWlEJbff .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTWlEJbff .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTWlEJbff .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTWlEJbff .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTWlEJbff .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvTWlEJbff .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvTWlEJbff .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvTWlEJbff .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvTWlEJbff .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTWlF1TZ2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvTWlF1TZ2 H1 {
  color: #000000;
}
.cid-uvTWlFetZY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvTWlFetZY .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvTWlFetZY .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvTWlFetZY .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvTWlFetZY .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvTWlFetZY .box {
  right: 20%;
}
.cid-uvTWlFetZY .text-box {
  right: 0;
}
.cid-uvTWlFetZY .mbr-section-title,
.cid-uvTWlFetZY .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvTWlFetZY .text-box {
    display: none;
  }
  .cid-uvTWlFetZY .mbr-section-title,
  .cid-uvTWlFetZY .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvTWlFetZY .box {
    display: none;
  }
  .cid-uvTWlFetZY .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvTWlFetZY .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvTWlFetZY .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvTWlFetZY .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvTWlFetZY .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvTWlFetZY .mbr-section-text DIV {
  text-align: center;
}
.cid-uvTWlFzKBc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTWlFVYol {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvTWlFVYol h2 {
  text-align: left;
}
.cid-uvTWlFVYol h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTWlFVYol p {
  color: #767676;
  text-align: left;
}
.cid-uvTWlFVYol .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTWlFVYol .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTWlFVYol .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTWlFVYol .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTWlFVYol .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTWlFVYol .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTWlFVYol .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvTWlFVYol .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvTWlFVYol .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTWlFVYol .mbr-text {
  color: #232323;
}
.cid-uvTWlGmnar {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvTWlGmnar .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTWlGmnar .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvTWlGmnar .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvTWlGmnar .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvTWlGmnar .container {
    padding: 0 26px;
  }
}
.cid-uvTWlGmnar .row {
  justify-content: center;
}
.cid-uvTWlGmnar .item {
  margin-bottom: 32px;
}
.cid-uvTWlGmnar .item a {
  display: block;
}
.cid-uvTWlGmnar .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvTWlGmnar .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvTWlGmnar .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvTWlGmnar .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-uvTWlGmnar .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvTWlGmnar .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvTWlGmnar .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-uvTWlGmnar .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvTWlGmnar .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvTWlGmnar .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvTWlGmnar .item-title {
  color: #ffffff;
}
.cid-uvTWlGmnar .mbr-date {
  color: #cacaca;
}
.cid-uvTWlGmnar .mbr-desc {
  color: #cacaca;
}
.cid-uvTWlH4LX9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvTWlH4LX9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTWlH4LX9 .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-uvTWlH4LX9 .container {
    padding: 0 16px;
  }
}
.cid-uvTWlH4LX9 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvTWlH4LX9 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvTWlH4LX9 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvTWlH4LX9 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvTWlH4LX9 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvTWlH4LX9 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvTWlH4LX9 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvTWlH4LX9 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvTWlH4LX9 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvTWlH4LX9 .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-uvTWlH4LX9 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvTWlH4LX9 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvTWlH4LX9 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvTWlH4LX9 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvTWlH4LX9 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvTWlH4LX9 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvTWlH4LX9 .dragArea.row .form-group .form-control:hover,
.cid-uvTWlH4LX9 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvTWlH4LX9 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvTWlH4LX9 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvTWlH4LX9 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvTWlH4LX9 .mbr-title {
  color: #ffffff;
}
.cid-uvTWlH4LX9 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvTWlH4LX9 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvTWlH4LX9 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvTWlH4LX9 .list {
  color: #08323C;
}
.cid-uvTWlH4LX9 label {
  color: #08323C;
}
.cid-uvTWlH4LX9 H3 {
  color: #000000;
}
.cid-uvTWlH4LX9 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvTWyL50vN {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTWyL50vN H1 {
  text-align: center;
}
.cid-uDmy4pYxwR {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmy4pYxwR .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmy4pYxwR .video-block {
    width: 100% !important;
  }
}
.cid-uvTWyLllsB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTWyLAYkT {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvTWyLAYkT .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvTWyLAYkT .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvTWyLAYkT .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvTWyLAYkT .box {
  left: 20%;
}
.cid-uvTWyLAYkT .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvTWyLAYkT .mbr-section-text,
.cid-uvTWyLAYkT .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvTWyLAYkT .text-box {
    display: none;
  }
  .cid-uvTWyLAYkT .mbr-section-title,
  .cid-uvTWyLAYkT .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvTWyLAYkT .box {
    display: none;
  }
  .cid-uvTWyLAYkT .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvTWyLAYkT .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvTWyLAYkT .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvTWyLAYkT .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvTWyLAYkT .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvTWyLAYkT .mbr-section-text DIV {
  text-align: center;
}
.cid-uvTWyLLKAP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTWyLLKAP H1 {
  text-align: center;
}
.cid-uvTWyLWnfM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTWyM6cUk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTWyM6cUk h2 {
  text-align: left;
}
.cid-uvTWyM6cUk h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTWyM6cUk p {
  color: #767676;
  text-align: left;
}
.cid-uvTWyM6cUk .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTWyM6cUk .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTWyM6cUk .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTWyM6cUk .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTWyM6cUk .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTWyM6cUk .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTWyM6cUk .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvTWyM6cUk .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvTWyM6cUk .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTWyM6cUk H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvTWyM6cUk P {
  color: #ffffff;
  text-align: left;
}
.cid-uvTWyM6cUk H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvU7ynYevt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU7ynYevt H1 {
  color: #000000;
}
.cid-uxflijvysa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxflijvysa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxflijvysa .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxflijvysa .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxflijvysa .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxflijvysa .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxflijvysa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxflijvysa .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxflijvysa .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxflijvysa .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxflijvysa .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxflijvysa .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-uxflijvysa .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxflijvysa .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxflijvysa .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxflijvysa .mbr-text,
.cid-uxflijvysa .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvTWyN08SI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvTWyN08SI H1 {
  color: #000000;
}
.cid-uxfliZcdjF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfliZcdjF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfliZcdjF .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfliZcdjF .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfliZcdjF .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfliZcdjF .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfliZcdjF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfliZcdjF .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfliZcdjF .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfliZcdjF .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfliZcdjF .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfliZcdjF .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-uxfliZcdjF .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfliZcdjF .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfliZcdjF .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfliZcdjF .mbr-text,
.cid-uxfliZcdjF .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfljGdaso {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfljGdaso .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfljGdaso .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfljGdaso .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfljGdaso .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfljGdaso .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfljGdaso .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfljGdaso .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfljGdaso .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfljGdaso .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfljGdaso .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfljGdaso .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-uxfljGdaso .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfljGdaso .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfljGdaso .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfljGdaso .mbr-text,
.cid-uxfljGdaso .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU7EMgxAM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU7EMgxAM H1 {
  color: #000000;
}
.cid-uvTWyOxdmq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvTWyOxdmq h2 {
  text-align: left;
}
.cid-uvTWyOxdmq h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTWyOxdmq p {
  color: #767676;
  text-align: left;
}
.cid-uvTWyOxdmq .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTWyOxdmq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTWyOxdmq .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTWyOxdmq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTWyOxdmq .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTWyOxdmq .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTWyOxdmq .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvTWyOxdmq .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvTWyOxdmq .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvTWyOxdmq .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvTWyOxdmq .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTWyOO7QB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvTWyOO7QB H1 {
  color: #000000;
}
.cid-uvTWyP0rBz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvTWyP0rBz .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvTWyP0rBz .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvTWyP0rBz .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvTWyP0rBz .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvTWyP0rBz .box {
  right: 20%;
}
.cid-uvTWyP0rBz .text-box {
  right: 0;
}
.cid-uvTWyP0rBz .mbr-section-title,
.cid-uvTWyP0rBz .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvTWyP0rBz .text-box {
    display: none;
  }
  .cid-uvTWyP0rBz .mbr-section-title,
  .cid-uvTWyP0rBz .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvTWyP0rBz .box {
    display: none;
  }
  .cid-uvTWyP0rBz .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvTWyP0rBz .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvTWyP0rBz .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvTWyP0rBz .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvTWyP0rBz .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvTWyP0rBz .mbr-section-text DIV {
  text-align: center;
}
.cid-uvTWyPe3ow {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTWyPuBRE {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvTWyPuBRE h2 {
  text-align: left;
}
.cid-uvTWyPuBRE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTWyPuBRE p {
  color: #767676;
  text-align: left;
}
.cid-uvTWyPuBRE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTWyPuBRE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTWyPuBRE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTWyPuBRE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTWyPuBRE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTWyPuBRE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTWyPuBRE .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvTWyPuBRE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvTWyPuBRE .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTWyPuBRE .mbr-text {
  color: #232323;
}
.cid-uvTWyPNbuJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvTWyPNbuJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTWyPNbuJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvTWyPNbuJ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvTWyPNbuJ .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvTWyPNbuJ .container {
    padding: 0 26px;
  }
}
.cid-uvTWyPNbuJ .row {
  justify-content: center;
}
.cid-uvTWyPNbuJ .item {
  margin-bottom: 32px;
}
.cid-uvTWyPNbuJ .item a {
  display: block;
}
.cid-uvTWyPNbuJ .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvTWyPNbuJ .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvTWyPNbuJ .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvTWyPNbuJ .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-uvTWyPNbuJ .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvTWyPNbuJ .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvTWyPNbuJ .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-uvTWyPNbuJ .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvTWyPNbuJ .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvTWyPNbuJ .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvTWyPNbuJ .item-title {
  color: #ffffff;
}
.cid-uvTWyPNbuJ .mbr-date {
  color: #cacaca;
}
.cid-uvTWyPNbuJ .mbr-desc {
  color: #cacaca;
}
.cid-uvTWyQ3Avt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvTWyQ3Avt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTWyQ3Avt .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-uvTWyQ3Avt .container {
    padding: 0 16px;
  }
}
.cid-uvTWyQ3Avt .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvTWyQ3Avt .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvTWyQ3Avt .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvTWyQ3Avt .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvTWyQ3Avt .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvTWyQ3Avt .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvTWyQ3Avt .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvTWyQ3Avt .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvTWyQ3Avt .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvTWyQ3Avt .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-uvTWyQ3Avt .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvTWyQ3Avt .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvTWyQ3Avt .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvTWyQ3Avt .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvTWyQ3Avt .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvTWyQ3Avt .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvTWyQ3Avt .dragArea.row .form-group .form-control:hover,
.cid-uvTWyQ3Avt .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvTWyQ3Avt .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvTWyQ3Avt .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvTWyQ3Avt .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvTWyQ3Avt .mbr-title {
  color: #ffffff;
}
.cid-uvTWyQ3Avt .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvTWyQ3Avt .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvTWyQ3Avt .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvTWyQ3Avt .list {
  color: #08323C;
}
.cid-uvTWyQ3Avt label {
  color: #08323C;
}
.cid-uvTWyQ3Avt H3 {
  color: #000000;
}
.cid-uvTWyQ3Avt P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvTWNKLtYT {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTWNKLtYT H1 {
  text-align: center;
}
.cid-uDmy7gD1ol {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmy7gD1ol .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmy7gD1ol .video-block {
    width: 100% !important;
  }
}
.cid-uvTWNL2Qh4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTWNLfyTx {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvTWNLfyTx .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvTWNLfyTx .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvTWNLfyTx .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvTWNLfyTx .box {
  left: 20%;
}
.cid-uvTWNLfyTx .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvTWNLfyTx .mbr-section-text,
.cid-uvTWNLfyTx .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvTWNLfyTx .text-box {
    display: none;
  }
  .cid-uvTWNLfyTx .mbr-section-title,
  .cid-uvTWNLfyTx .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvTWNLfyTx .box {
    display: none;
  }
  .cid-uvTWNLfyTx .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvTWNLfyTx .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvTWNLfyTx .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvTWNLfyTx .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvTWNLfyTx .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvTWNLfyTx .mbr-section-text DIV {
  text-align: center;
}
.cid-uvTWNLqQsS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTWNLqQsS H1 {
  text-align: center;
}
.cid-uvTWNLEpa0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTWNLPkbJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTWNLPkbJ h2 {
  text-align: left;
}
.cid-uvTWNLPkbJ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTWNLPkbJ p {
  color: #767676;
  text-align: left;
}
.cid-uvTWNLPkbJ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTWNLPkbJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTWNLPkbJ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTWNLPkbJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTWNLPkbJ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTWNLPkbJ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTWNLPkbJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvTWNLPkbJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvTWNLPkbJ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTWNLPkbJ H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvTWNLPkbJ P {
  color: #ffffff;
  text-align: left;
}
.cid-uvTWNLPkbJ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvU7Jrz2G3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU7Jrz2G3 H1 {
  color: #000000;
}
.cid-uxflJEtJW6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxflJEtJW6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxflJEtJW6 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxflJEtJW6 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxflJEtJW6 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxflJEtJW6 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxflJEtJW6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxflJEtJW6 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxflJEtJW6 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxflJEtJW6 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxflJEtJW6 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxflJEtJW6 .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-uxflJEtJW6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxflJEtJW6 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxflJEtJW6 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxflJEtJW6 .mbr-text,
.cid-uxflJEtJW6 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvTWNMxRSG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvTWNMxRSG H1 {
  color: #000000;
}
.cid-uxflKARwtN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxflKARwtN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxflKARwtN .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxflKARwtN .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxflKARwtN .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxflKARwtN .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxflKARwtN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxflKARwtN .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxflKARwtN .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxflKARwtN .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxflKARwtN .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxflKARwtN .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-uxflKARwtN .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxflKARwtN .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxflKARwtN .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxflKARwtN .mbr-text,
.cid-uxflKARwtN .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxflLg3o0T {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxflLg3o0T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxflLg3o0T .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxflLg3o0T .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxflLg3o0T .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxflLg3o0T .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxflLg3o0T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxflLg3o0T .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxflLg3o0T .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxflLg3o0T .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxflLg3o0T .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxflLg3o0T .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-uxflLg3o0T .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxflLg3o0T .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxflLg3o0T .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxflLg3o0T .mbr-text,
.cid-uxflLg3o0T .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU7OxylHu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU7OxylHu H1 {
  color: #000000;
}
.cid-uvTWNNK4Jc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvTWNNK4Jc h2 {
  text-align: left;
}
.cid-uvTWNNK4Jc h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTWNNK4Jc p {
  color: #767676;
  text-align: left;
}
.cid-uvTWNNK4Jc .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTWNNK4Jc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTWNNK4Jc .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTWNNK4Jc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTWNNK4Jc .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTWNNK4Jc .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTWNNK4Jc .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvTWNNK4Jc .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvTWNNK4Jc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvTWNNK4Jc .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvTWNNK4Jc .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTWNNZDyg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvTWNNZDyg H1 {
  color: #000000;
}
.cid-uvTWNOaX3Z {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvTWNOaX3Z .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvTWNOaX3Z .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvTWNOaX3Z .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvTWNOaX3Z .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvTWNOaX3Z .box {
  right: 20%;
}
.cid-uvTWNOaX3Z .text-box {
  right: 0;
}
.cid-uvTWNOaX3Z .mbr-section-title,
.cid-uvTWNOaX3Z .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvTWNOaX3Z .text-box {
    display: none;
  }
  .cid-uvTWNOaX3Z .mbr-section-title,
  .cid-uvTWNOaX3Z .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvTWNOaX3Z .box {
    display: none;
  }
  .cid-uvTWNOaX3Z .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvTWNOaX3Z .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvTWNOaX3Z .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvTWNOaX3Z .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvTWNOaX3Z .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvTWNOaX3Z .mbr-section-text DIV {
  text-align: center;
}
.cid-uvTWNOpxm3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTWNOB69J {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvTWNOB69J h2 {
  text-align: left;
}
.cid-uvTWNOB69J h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTWNOB69J p {
  color: #767676;
  text-align: left;
}
.cid-uvTWNOB69J .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTWNOB69J .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTWNOB69J .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTWNOB69J .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTWNOB69J .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTWNOB69J .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTWNOB69J .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvTWNOB69J .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvTWNOB69J .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTWNOB69J .mbr-text {
  color: #232323;
}
.cid-uvTWNOTEsi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvTWNOTEsi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTWNOTEsi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvTWNOTEsi .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvTWNOTEsi .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvTWNOTEsi .container {
    padding: 0 26px;
  }
}
.cid-uvTWNOTEsi .row {
  justify-content: center;
}
.cid-uvTWNOTEsi .item {
  margin-bottom: 32px;
}
.cid-uvTWNOTEsi .item a {
  display: block;
}
.cid-uvTWNOTEsi .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvTWNOTEsi .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvTWNOTEsi .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvTWNOTEsi .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-uvTWNOTEsi .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvTWNOTEsi .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvTWNOTEsi .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-uvTWNOTEsi .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvTWNOTEsi .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvTWNOTEsi .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvTWNOTEsi .item-title {
  color: #ffffff;
}
.cid-uvTWNOTEsi .mbr-date {
  color: #cacaca;
}
.cid-uvTWNOTEsi .mbr-desc {
  color: #cacaca;
}
.cid-uvTWNP8Bhq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvTWNP8Bhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTWNP8Bhq .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-uvTWNP8Bhq .container {
    padding: 0 16px;
  }
}
.cid-uvTWNP8Bhq .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvTWNP8Bhq .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvTWNP8Bhq .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvTWNP8Bhq .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvTWNP8Bhq .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvTWNP8Bhq .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvTWNP8Bhq .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvTWNP8Bhq .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvTWNP8Bhq .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvTWNP8Bhq .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-uvTWNP8Bhq .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvTWNP8Bhq .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvTWNP8Bhq .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvTWNP8Bhq .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvTWNP8Bhq .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvTWNP8Bhq .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvTWNP8Bhq .dragArea.row .form-group .form-control:hover,
.cid-uvTWNP8Bhq .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvTWNP8Bhq .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvTWNP8Bhq .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvTWNP8Bhq .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvTWNP8Bhq .mbr-title {
  color: #ffffff;
}
.cid-uvTWNP8Bhq .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvTWNP8Bhq .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvTWNP8Bhq .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvTWNP8Bhq .list {
  color: #08323C;
}
.cid-uvTWNP8Bhq label {
  color: #08323C;
}
.cid-uvTWNP8Bhq H3 {
  color: #000000;
}
.cid-uvTWNP8Bhq P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvTX3gopvg {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTX3gopvg H1 {
  text-align: center;
}
.cid-uDmyauLDxB {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmyauLDxB .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmyauLDxB .video-block {
    width: 100% !important;
  }
}
.cid-uvTX3gEGcZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTX3gPs4c {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvTX3gPs4c .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvTX3gPs4c .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvTX3gPs4c .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvTX3gPs4c .box {
  left: 20%;
}
.cid-uvTX3gPs4c .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvTX3gPs4c .mbr-section-text,
.cid-uvTX3gPs4c .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvTX3gPs4c .text-box {
    display: none;
  }
  .cid-uvTX3gPs4c .mbr-section-title,
  .cid-uvTX3gPs4c .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvTX3gPs4c .box {
    display: none;
  }
  .cid-uvTX3gPs4c .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvTX3gPs4c .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvTX3gPs4c .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvTX3gPs4c .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvTX3gPs4c .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvTX3gPs4c .mbr-section-text DIV {
  text-align: center;
}
.cid-uvTX3gZmSt {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTX3gZmSt H1 {
  text-align: center;
}
.cid-uvTX3hbHwc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTX3hn3Na {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTX3hn3Na h2 {
  text-align: left;
}
.cid-uvTX3hn3Na h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTX3hn3Na p {
  color: #767676;
  text-align: left;
}
.cid-uvTX3hn3Na .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTX3hn3Na .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTX3hn3Na .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTX3hn3Na .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTX3hn3Na .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTX3hn3Na .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTX3hn3Na .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvTX3hn3Na .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvTX3hn3Na .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTX3hn3Na H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvTX3hn3Na P {
  color: #ffffff;
  text-align: left;
}
.cid-uvTX3hn3Na H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvU7YnkeMA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU7YnkeMA H1 {
  color: #000000;
}
.cid-uxflV81N1I {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxflV81N1I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxflV81N1I .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxflV81N1I .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxflV81N1I .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxflV81N1I .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxflV81N1I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxflV81N1I .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxflV81N1I .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxflV81N1I .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxflV81N1I .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxflV81N1I .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-uxflV81N1I .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxflV81N1I .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxflV81N1I .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxflV81N1I .mbr-text,
.cid-uxflV81N1I .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvTX3i847C {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvTX3i847C H1 {
  color: #000000;
}
.cid-uxflVXfp4p {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxflVXfp4p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxflVXfp4p .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxflVXfp4p .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxflVXfp4p .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxflVXfp4p .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxflVXfp4p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxflVXfp4p .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxflVXfp4p .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxflVXfp4p .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxflVXfp4p .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxflVXfp4p .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-uxflVXfp4p .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxflVXfp4p .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxflVXfp4p .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxflVXfp4p .mbr-text,
.cid-uxflVXfp4p .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxflWJnneL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxflWJnneL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxflWJnneL .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxflWJnneL .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxflWJnneL .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxflWJnneL .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxflWJnneL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxflWJnneL .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxflWJnneL .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxflWJnneL .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxflWJnneL .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxflWJnneL .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-uxflWJnneL .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxflWJnneL .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxflWJnneL .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxflWJnneL .mbr-text,
.cid-uxflWJnneL .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU81VNYVk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU81VNYVk H1 {
  color: #000000;
}
.cid-uvTX3jmlAc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvTX3jmlAc h2 {
  text-align: left;
}
.cid-uvTX3jmlAc h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTX3jmlAc p {
  color: #767676;
  text-align: left;
}
.cid-uvTX3jmlAc .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTX3jmlAc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTX3jmlAc .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTX3jmlAc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTX3jmlAc .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTX3jmlAc .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTX3jmlAc .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvTX3jmlAc .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvTX3jmlAc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvTX3jmlAc .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvTX3jmlAc .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTX3jBmOg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvTX3jBmOg H1 {
  color: #000000;
}
.cid-uvTX3jNdah {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvTX3jNdah .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvTX3jNdah .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvTX3jNdah .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvTX3jNdah .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvTX3jNdah .box {
  right: 20%;
}
.cid-uvTX3jNdah .text-box {
  right: 0;
}
.cid-uvTX3jNdah .mbr-section-title,
.cid-uvTX3jNdah .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvTX3jNdah .text-box {
    display: none;
  }
  .cid-uvTX3jNdah .mbr-section-title,
  .cid-uvTX3jNdah .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvTX3jNdah .box {
    display: none;
  }
  .cid-uvTX3jNdah .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvTX3jNdah .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvTX3jNdah .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvTX3jNdah .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvTX3jNdah .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvTX3jNdah .mbr-section-text DIV {
  text-align: center;
}
.cid-uvTX3k3KbA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTX3keLvb {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvTX3keLvb h2 {
  text-align: left;
}
.cid-uvTX3keLvb h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTX3keLvb p {
  color: #767676;
  text-align: left;
}
.cid-uvTX3keLvb .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTX3keLvb .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTX3keLvb .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTX3keLvb .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTX3keLvb .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTX3keLvb .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTX3keLvb .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvTX3keLvb .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvTX3keLvb .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTX3keLvb .mbr-text {
  color: #232323;
}
.cid-uvTX3ksQip {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvTX3ksQip .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTX3ksQip .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvTX3ksQip .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvTX3ksQip .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvTX3ksQip .container {
    padding: 0 26px;
  }
}
.cid-uvTX3ksQip .row {
  justify-content: center;
}
.cid-uvTX3ksQip .item {
  margin-bottom: 32px;
}
.cid-uvTX3ksQip .item a {
  display: block;
}
.cid-uvTX3ksQip .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvTX3ksQip .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvTX3ksQip .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvTX3ksQip .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-uvTX3ksQip .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvTX3ksQip .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvTX3ksQip .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-uvTX3ksQip .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvTX3ksQip .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvTX3ksQip .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvTX3ksQip .item-title {
  color: #ffffff;
}
.cid-uvTX3ksQip .mbr-date {
  color: #cacaca;
}
.cid-uvTX3ksQip .mbr-desc {
  color: #cacaca;
}
.cid-uvTX3kGQST {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvTX3kGQST .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTX3kGQST .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-uvTX3kGQST .container {
    padding: 0 16px;
  }
}
.cid-uvTX3kGQST .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvTX3kGQST .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvTX3kGQST .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvTX3kGQST .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvTX3kGQST .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvTX3kGQST .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvTX3kGQST .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvTX3kGQST .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvTX3kGQST .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvTX3kGQST .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-uvTX3kGQST .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvTX3kGQST .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvTX3kGQST .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvTX3kGQST .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvTX3kGQST .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvTX3kGQST .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvTX3kGQST .dragArea.row .form-group .form-control:hover,
.cid-uvTX3kGQST .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvTX3kGQST .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvTX3kGQST .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvTX3kGQST .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvTX3kGQST .mbr-title {
  color: #ffffff;
}
.cid-uvTX3kGQST .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvTX3kGQST .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvTX3kGQST .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvTX3kGQST .list {
  color: #08323C;
}
.cid-uvTX3kGQST label {
  color: #08323C;
}
.cid-uvTX3kGQST H3 {
  color: #000000;
}
.cid-uvTX3kGQST P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvTXsJkdWw {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTXsJkdWw H1 {
  text-align: center;
}
.cid-uDmydmPPNQ {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmydmPPNQ .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmydmPPNQ .video-block {
    width: 100% !important;
  }
}
.cid-uvTXsJAq4C {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTXsJNo8y {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvTXsJNo8y .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvTXsJNo8y .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvTXsJNo8y .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvTXsJNo8y .box {
  left: 20%;
}
.cid-uvTXsJNo8y .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvTXsJNo8y .mbr-section-text,
.cid-uvTXsJNo8y .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvTXsJNo8y .text-box {
    display: none;
  }
  .cid-uvTXsJNo8y .mbr-section-title,
  .cid-uvTXsJNo8y .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvTXsJNo8y .box {
    display: none;
  }
  .cid-uvTXsJNo8y .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvTXsJNo8y .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvTXsJNo8y .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvTXsJNo8y .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvTXsJNo8y .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvTXsJNo8y .mbr-section-text DIV {
  text-align: center;
}
.cid-uvTXsJYoUG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTXsJYoUG H1 {
  text-align: center;
}
.cid-uvTXsK9NdK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTXsKl3Ob {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTXsKl3Ob h2 {
  text-align: left;
}
.cid-uvTXsKl3Ob h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTXsKl3Ob p {
  color: #767676;
  text-align: left;
}
.cid-uvTXsKl3Ob .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTXsKl3Ob .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTXsKl3Ob .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTXsKl3Ob .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTXsKl3Ob .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTXsKl3Ob .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTXsKl3Ob .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvTXsKl3Ob .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvTXsKl3Ob .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTXsKl3Ob H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvTXsKl3Ob P {
  color: #ffffff;
  text-align: left;
}
.cid-uvTXsKl3Ob H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvU86EUUJd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU86EUUJd H1 {
  color: #000000;
}
.cid-uxfmsJlFHZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfmsJlFHZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfmsJlFHZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfmsJlFHZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfmsJlFHZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfmsJlFHZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfmsJlFHZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfmsJlFHZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfmsJlFHZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfmsJlFHZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfmsJlFHZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfmsJlFHZ .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-uxfmsJlFHZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfmsJlFHZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfmsJlFHZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfmsJlFHZ .mbr-text,
.cid-uxfmsJlFHZ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvTXsL9PFT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvTXsL9PFT H1 {
  color: #000000;
}
.cid-uxfmtSM5GX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfmtSM5GX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfmtSM5GX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfmtSM5GX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfmtSM5GX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfmtSM5GX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfmtSM5GX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfmtSM5GX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfmtSM5GX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfmtSM5GX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfmtSM5GX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfmtSM5GX .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-uxfmtSM5GX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfmtSM5GX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfmtSM5GX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfmtSM5GX .mbr-text,
.cid-uxfmtSM5GX .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfmv2lAUh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfmv2lAUh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfmv2lAUh .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfmv2lAUh .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfmv2lAUh .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfmv2lAUh .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfmv2lAUh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfmv2lAUh .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfmv2lAUh .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfmv2lAUh .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfmv2lAUh .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfmv2lAUh .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-uxfmv2lAUh .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfmv2lAUh .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfmv2lAUh .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfmv2lAUh .mbr-text,
.cid-uxfmv2lAUh .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU89NiVCY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU89NiVCY H1 {
  color: #000000;
}
.cid-uvTXsMFIyE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvTXsMFIyE h2 {
  text-align: left;
}
.cid-uvTXsMFIyE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTXsMFIyE p {
  color: #767676;
  text-align: left;
}
.cid-uvTXsMFIyE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTXsMFIyE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTXsMFIyE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTXsMFIyE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTXsMFIyE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTXsMFIyE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTXsMFIyE .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvTXsMFIyE .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvTXsMFIyE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvTXsMFIyE .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvTXsMFIyE .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTXsMVPwY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvTXsMVPwY H1 {
  color: #000000;
}
.cid-uvTXsNbTNh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvTXsNbTNh .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvTXsNbTNh .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvTXsNbTNh .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvTXsNbTNh .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvTXsNbTNh .box {
  right: 20%;
}
.cid-uvTXsNbTNh .text-box {
  right: 0;
}
.cid-uvTXsNbTNh .mbr-section-title,
.cid-uvTXsNbTNh .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvTXsNbTNh .text-box {
    display: none;
  }
  .cid-uvTXsNbTNh .mbr-section-title,
  .cid-uvTXsNbTNh .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvTXsNbTNh .box {
    display: none;
  }
  .cid-uvTXsNbTNh .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvTXsNbTNh .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvTXsNbTNh .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvTXsNbTNh .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvTXsNbTNh .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvTXsNbTNh .mbr-section-text DIV {
  text-align: center;
}
.cid-uvTXsNpGsr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTXsNFrY1 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvTXsNFrY1 h2 {
  text-align: left;
}
.cid-uvTXsNFrY1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTXsNFrY1 p {
  color: #767676;
  text-align: left;
}
.cid-uvTXsNFrY1 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTXsNFrY1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTXsNFrY1 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTXsNFrY1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTXsNFrY1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTXsNFrY1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTXsNFrY1 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvTXsNFrY1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvTXsNFrY1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTXsNFrY1 .mbr-text {
  color: #232323;
}
.cid-uvTXsNZPPT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvTXsNZPPT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTXsNZPPT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvTXsNZPPT .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvTXsNZPPT .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvTXsNZPPT .container {
    padding: 0 26px;
  }
}
.cid-uvTXsNZPPT .row {
  justify-content: center;
}
.cid-uvTXsNZPPT .item {
  margin-bottom: 32px;
}
.cid-uvTXsNZPPT .item a {
  display: block;
}
.cid-uvTXsNZPPT .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvTXsNZPPT .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvTXsNZPPT .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvTXsNZPPT .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-uvTXsNZPPT .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvTXsNZPPT .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvTXsNZPPT .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-uvTXsNZPPT .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvTXsNZPPT .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvTXsNZPPT .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvTXsNZPPT .item-title {
  color: #ffffff;
}
.cid-uvTXsNZPPT .mbr-date {
  color: #cacaca;
}
.cid-uvTXsNZPPT .mbr-desc {
  color: #cacaca;
}
.cid-uvTXsOn1eL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvTXsOn1eL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTXsOn1eL .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-uvTXsOn1eL .container {
    padding: 0 16px;
  }
}
.cid-uvTXsOn1eL .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvTXsOn1eL .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvTXsOn1eL .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvTXsOn1eL .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvTXsOn1eL .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvTXsOn1eL .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvTXsOn1eL .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvTXsOn1eL .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvTXsOn1eL .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvTXsOn1eL .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-uvTXsOn1eL .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvTXsOn1eL .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvTXsOn1eL .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvTXsOn1eL .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvTXsOn1eL .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvTXsOn1eL .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvTXsOn1eL .dragArea.row .form-group .form-control:hover,
.cid-uvTXsOn1eL .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvTXsOn1eL .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvTXsOn1eL .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvTXsOn1eL .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvTXsOn1eL .mbr-title {
  color: #ffffff;
}
.cid-uvTXsOn1eL .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvTXsOn1eL .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvTXsOn1eL .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvTXsOn1eL .list {
  color: #08323C;
}
.cid-uvTXsOn1eL label {
  color: #08323C;
}
.cid-uvTXsOn1eL H3 {
  color: #000000;
}
.cid-uvTXsOn1eL P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvTXGSpWPg {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTXGSpWPg H1 {
  text-align: center;
}
.cid-uDmyghCZSd {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmyghCZSd .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmyghCZSd .video-block {
    width: 100% !important;
  }
}
.cid-uvTXGSG6R2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTXGSUqAa {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvTXGSUqAa .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvTXGSUqAa .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvTXGSUqAa .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvTXGSUqAa .box {
  left: 20%;
}
.cid-uvTXGSUqAa .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvTXGSUqAa .mbr-section-text,
.cid-uvTXGSUqAa .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvTXGSUqAa .text-box {
    display: none;
  }
  .cid-uvTXGSUqAa .mbr-section-title,
  .cid-uvTXGSUqAa .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvTXGSUqAa .box {
    display: none;
  }
  .cid-uvTXGSUqAa .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvTXGSUqAa .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvTXGSUqAa .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvTXGSUqAa .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvTXGSUqAa .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvTXGSUqAa .mbr-section-text DIV {
  text-align: center;
}
.cid-uvTXGT53II {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTXGT53II H1 {
  text-align: center;
}
.cid-uvTXGTgEDU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTXGTqqVN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTXGTqqVN h2 {
  text-align: left;
}
.cid-uvTXGTqqVN h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTXGTqqVN p {
  color: #767676;
  text-align: left;
}
.cid-uvTXGTqqVN .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTXGTqqVN .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTXGTqqVN .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTXGTqqVN .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTXGTqqVN .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTXGTqqVN .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTXGTqqVN .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvTXGTqqVN .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvTXGTqqVN .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTXGTqqVN H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvTXGTqqVN P {
  color: #ffffff;
  text-align: left;
}
.cid-uvTXGTqqVN H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvU8gH6fcO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU8gH6fcO H1 {
  color: #000000;
}
.cid-uxfmHKqbQl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfmHKqbQl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfmHKqbQl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfmHKqbQl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfmHKqbQl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfmHKqbQl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfmHKqbQl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfmHKqbQl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfmHKqbQl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfmHKqbQl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfmHKqbQl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfmHKqbQl .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-uxfmHKqbQl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfmHKqbQl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfmHKqbQl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfmHKqbQl .mbr-text,
.cid-uxfmHKqbQl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvTXGUlSYE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvTXGUlSYE H1 {
  color: #000000;
}
.cid-uxfmG6np9w {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfmG6np9w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfmG6np9w .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfmG6np9w .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfmG6np9w .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfmG6np9w .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfmG6np9w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfmG6np9w .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfmG6np9w .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfmG6np9w .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfmG6np9w .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfmG6np9w .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-uxfmG6np9w .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfmG6np9w .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfmG6np9w .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfmG6np9w .mbr-text,
.cid-uxfmG6np9w .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfmIvwvkQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfmIvwvkQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfmIvwvkQ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfmIvwvkQ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfmIvwvkQ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfmIvwvkQ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfmIvwvkQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfmIvwvkQ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfmIvwvkQ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfmIvwvkQ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfmIvwvkQ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfmIvwvkQ .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-uxfmIvwvkQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfmIvwvkQ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfmIvwvkQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfmIvwvkQ .mbr-text,
.cid-uxfmIvwvkQ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU8kivV8U {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU8kivV8U H1 {
  color: #000000;
}
.cid-uvTXGVGU0l {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvTXGVGU0l h2 {
  text-align: left;
}
.cid-uvTXGVGU0l h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTXGVGU0l p {
  color: #767676;
  text-align: left;
}
.cid-uvTXGVGU0l .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTXGVGU0l .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTXGVGU0l .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTXGVGU0l .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTXGVGU0l .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTXGVGU0l .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTXGVGU0l .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvTXGVGU0l .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvTXGVGU0l .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvTXGVGU0l .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvTXGVGU0l .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTXGVYspl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvTXGVYspl H1 {
  color: #000000;
}
.cid-uvTXGWd858 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvTXGWd858 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvTXGWd858 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvTXGWd858 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvTXGWd858 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvTXGWd858 .box {
  right: 20%;
}
.cid-uvTXGWd858 .text-box {
  right: 0;
}
.cid-uvTXGWd858 .mbr-section-title,
.cid-uvTXGWd858 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvTXGWd858 .text-box {
    display: none;
  }
  .cid-uvTXGWd858 .mbr-section-title,
  .cid-uvTXGWd858 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvTXGWd858 .box {
    display: none;
  }
  .cid-uvTXGWd858 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvTXGWd858 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvTXGWd858 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvTXGWd858 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvTXGWd858 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvTXGWd858 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvTXGWAA6P {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTXGWPiA9 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvTXGWPiA9 h2 {
  text-align: left;
}
.cid-uvTXGWPiA9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTXGWPiA9 p {
  color: #767676;
  text-align: left;
}
.cid-uvTXGWPiA9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTXGWPiA9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTXGWPiA9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTXGWPiA9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTXGWPiA9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTXGWPiA9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTXGWPiA9 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvTXGWPiA9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvTXGWPiA9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTXGWPiA9 .mbr-text {
  color: #232323;
}
.cid-uvTXGXarHw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvTXGXarHw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTXGXarHw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvTXGXarHw .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvTXGXarHw .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvTXGXarHw .container {
    padding: 0 26px;
  }
}
.cid-uvTXGXarHw .row {
  justify-content: center;
}
.cid-uvTXGXarHw .item {
  margin-bottom: 32px;
}
.cid-uvTXGXarHw .item a {
  display: block;
}
.cid-uvTXGXarHw .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvTXGXarHw .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvTXGXarHw .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvTXGXarHw .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-uvTXGXarHw .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvTXGXarHw .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvTXGXarHw .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-uvTXGXarHw .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvTXGXarHw .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvTXGXarHw .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvTXGXarHw .item-title {
  color: #ffffff;
}
.cid-uvTXGXarHw .mbr-date {
  color: #cacaca;
}
.cid-uvTXGXarHw .mbr-desc {
  color: #cacaca;
}
.cid-uvTXGXtntl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvTXGXtntl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTXGXtntl .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-uvTXGXtntl .container {
    padding: 0 16px;
  }
}
.cid-uvTXGXtntl .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvTXGXtntl .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvTXGXtntl .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvTXGXtntl .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvTXGXtntl .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvTXGXtntl .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvTXGXtntl .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvTXGXtntl .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvTXGXtntl .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvTXGXtntl .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-uvTXGXtntl .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvTXGXtntl .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvTXGXtntl .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvTXGXtntl .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvTXGXtntl .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvTXGXtntl .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvTXGXtntl .dragArea.row .form-group .form-control:hover,
.cid-uvTXGXtntl .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvTXGXtntl .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvTXGXtntl .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvTXGXtntl .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvTXGXtntl .mbr-title {
  color: #ffffff;
}
.cid-uvTXGXtntl .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvTXGXtntl .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvTXGXtntl .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvTXGXtntl .list {
  color: #08323C;
}
.cid-uvTXGXtntl label {
  color: #08323C;
}
.cid-uvTXGXtntl H3 {
  color: #000000;
}
.cid-uvTXGXtntl P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvTXXtjA35 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTXXtjA35 H1 {
  text-align: center;
}
.cid-uDmyjg9Y60 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmyjg9Y60 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmyjg9Y60 .video-block {
    width: 100% !important;
  }
}
.cid-uvTXXtAJ9F {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTXXtMALf {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvTXXtMALf .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvTXXtMALf .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvTXXtMALf .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvTXXtMALf .box {
  left: 20%;
}
.cid-uvTXXtMALf .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvTXXtMALf .mbr-section-text,
.cid-uvTXXtMALf .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvTXXtMALf .text-box {
    display: none;
  }
  .cid-uvTXXtMALf .mbr-section-title,
  .cid-uvTXXtMALf .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvTXXtMALf .box {
    display: none;
  }
  .cid-uvTXXtMALf .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvTXXtMALf .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvTXXtMALf .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvTXXtMALf .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvTXXtMALf .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvTXXtMALf .mbr-section-text DIV {
  text-align: center;
}
.cid-uvTXXu0VxS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTXXu0VxS H1 {
  text-align: center;
}
.cid-uvTXXueCtD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTXXusMdR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvTXXusMdR h2 {
  text-align: left;
}
.cid-uvTXXusMdR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTXXusMdR p {
  color: #767676;
  text-align: left;
}
.cid-uvTXXusMdR .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTXXusMdR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTXXusMdR .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTXXusMdR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTXXusMdR .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTXXusMdR .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTXXusMdR .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvTXXusMdR .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvTXXusMdR .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTXXusMdR H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvTXXusMdR P {
  color: #ffffff;
  text-align: left;
}
.cid-uvTXXusMdR H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvU8r0JqJt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU8r0JqJt H1 {
  color: #000000;
}
.cid-uvU8srLLxB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uvU8srLLxB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU8srLLxB .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uvU8srLLxB .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uvU8srLLxB .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uvU8srLLxB .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uvU8srLLxB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU8srLLxB .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uvU8srLLxB .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uvU8srLLxB .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uvU8srLLxB .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uvU8srLLxB .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-uvU8srLLxB .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU8srLLxB .image-wrapper {
    padding: 1rem;
  }
}
.cid-uvU8srLLxB .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uvU8srLLxB .mbr-text,
.cid-uvU8srLLxB .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvTXXvldGD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvTXXvldGD H1 {
  color: #000000;
}
.cid-uxfkzqhEtf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfkzqhEtf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfkzqhEtf .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfkzqhEtf .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfkzqhEtf .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfkzqhEtf .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfkzqhEtf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfkzqhEtf .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfkzqhEtf .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfkzqhEtf .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfkzqhEtf .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfkzqhEtf .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-uxfkzqhEtf .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfkzqhEtf .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfkzqhEtf .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfkzqhEtf .mbr-text,
.cid-uxfkzqhEtf .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfkA9MFhB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfkA9MFhB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfkA9MFhB .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfkA9MFhB .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfkA9MFhB .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfkA9MFhB .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfkA9MFhB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfkA9MFhB .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfkA9MFhB .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfkA9MFhB .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfkA9MFhB .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfkA9MFhB .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-uxfkA9MFhB .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfkA9MFhB .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfkA9MFhB .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfkA9MFhB .mbr-text,
.cid-uxfkA9MFhB .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU8xgIhuT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU8xgIhuT H1 {
  color: #000000;
}
.cid-uvTXXwOjqV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvTXXwOjqV h2 {
  text-align: left;
}
.cid-uvTXXwOjqV h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTXXwOjqV p {
  color: #767676;
  text-align: left;
}
.cid-uvTXXwOjqV .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTXXwOjqV .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTXXwOjqV .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTXXwOjqV .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTXXwOjqV .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTXXwOjqV .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTXXwOjqV .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvTXXwOjqV .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvTXXwOjqV .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvTXXwOjqV .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvTXXwOjqV .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTXXx63Ep {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvTXXx63Ep H1 {
  color: #000000;
}
.cid-uvTXXxkemC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvTXXxkemC .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvTXXxkemC .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvTXXxkemC .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvTXXxkemC .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvTXXxkemC .box {
  right: 20%;
}
.cid-uvTXXxkemC .text-box {
  right: 0;
}
.cid-uvTXXxkemC .mbr-section-title,
.cid-uvTXXxkemC .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvTXXxkemC .text-box {
    display: none;
  }
  .cid-uvTXXxkemC .mbr-section-title,
  .cid-uvTXXxkemC .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvTXXxkemC .box {
    display: none;
  }
  .cid-uvTXXxkemC .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvTXXxkemC .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvTXXxkemC .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvTXXxkemC .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvTXXxkemC .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvTXXxkemC .mbr-section-text DIV {
  text-align: center;
}
.cid-uvTXXxAIIB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvTXXxVouV {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvTXXxVouV h2 {
  text-align: left;
}
.cid-uvTXXxVouV h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvTXXxVouV p {
  color: #767676;
  text-align: left;
}
.cid-uvTXXxVouV .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvTXXxVouV .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvTXXxVouV .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvTXXxVouV .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvTXXxVouV .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvTXXxVouV .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvTXXxVouV .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvTXXxVouV .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvTXXxVouV .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvTXXxVouV .mbr-text {
  color: #232323;
}
.cid-uvTXXyeTrk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvTXXyeTrk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTXXyeTrk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvTXXyeTrk .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvTXXyeTrk .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvTXXyeTrk .container {
    padding: 0 26px;
  }
}
.cid-uvTXXyeTrk .row {
  justify-content: center;
}
.cid-uvTXXyeTrk .item {
  margin-bottom: 32px;
}
.cid-uvTXXyeTrk .item a {
  display: block;
}
.cid-uvTXXyeTrk .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvTXXyeTrk .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvTXXyeTrk .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvTXXyeTrk .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-uvTXXyeTrk .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvTXXyeTrk .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvTXXyeTrk .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-uvTXXyeTrk .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvTXXyeTrk .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvTXXyeTrk .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvTXXyeTrk .item-title {
  color: #ffffff;
}
.cid-uvTXXyeTrk .mbr-date {
  color: #cacaca;
}
.cid-uvTXXyeTrk .mbr-desc {
  color: #cacaca;
}
.cid-uvTXXyAKDE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvTXXyAKDE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTXXyAKDE .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-uvTXXyAKDE .container {
    padding: 0 16px;
  }
}
.cid-uvTXXyAKDE .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvTXXyAKDE .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvTXXyAKDE .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvTXXyAKDE .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvTXXyAKDE .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvTXXyAKDE .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvTXXyAKDE .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvTXXyAKDE .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvTXXyAKDE .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvTXXyAKDE .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-uvTXXyAKDE .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvTXXyAKDE .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvTXXyAKDE .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvTXXyAKDE .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvTXXyAKDE .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvTXXyAKDE .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvTXXyAKDE .dragArea.row .form-group .form-control:hover,
.cid-uvTXXyAKDE .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvTXXyAKDE .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvTXXyAKDE .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvTXXyAKDE .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvTXXyAKDE .mbr-title {
  color: #ffffff;
}
.cid-uvTXXyAKDE .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvTXXyAKDE .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvTXXyAKDE .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvTXXyAKDE .list {
  color: #08323C;
}
.cid-uvTXXyAKDE label {
  color: #08323C;
}
.cid-uvTXXyAKDE H3 {
  color: #000000;
}
.cid-uvTXXyAKDE P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvU03yzWeE {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU03yzWeE H1 {
  text-align: center;
}
.cid-uDmA39hNg1 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmA39hNg1 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmA39hNg1 .video-block {
    width: 100% !important;
  }
}
.cid-uvU03yT20v {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU03z8S6z {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvU03z8S6z .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU03z8S6z .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU03z8S6z .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU03z8S6z .box {
  left: 20%;
}
.cid-uvU03z8S6z .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvU03z8S6z .mbr-section-text,
.cid-uvU03z8S6z .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvU03z8S6z .text-box {
    display: none;
  }
  .cid-uvU03z8S6z .mbr-section-title,
  .cid-uvU03z8S6z .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU03z8S6z .box {
    display: none;
  }
  .cid-uvU03z8S6z .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU03z8S6z .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU03z8S6z .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU03z8S6z .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU03z8S6z .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU03z8S6z .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU03zpIld {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU03zpIld H1 {
  text-align: center;
}
.cid-uvU03zFWy0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU03zSHux {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU03zSHux h2 {
  text-align: left;
}
.cid-uvU03zSHux h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU03zSHux p {
  color: #767676;
  text-align: left;
}
.cid-uvU03zSHux .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU03zSHux .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU03zSHux .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU03zSHux .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU03zSHux .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU03zSHux .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU03zSHux .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU03zSHux .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU03zSHux .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU03zSHux H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvU03zSHux P {
  color: #ffffff;
  text-align: left;
}
.cid-uvU03zSHux H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvU03AdhZS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU03AdhZS H1 {
  color: #000000;
}
.cid-uzkwsTKo45 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzkwsTKo45 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzkwsTKo45 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzkwsTKo45 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzkwsTKo45 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzkwsTKo45 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzkwsTKo45 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzkwsTKo45 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzkwsTKo45 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzkwsTKo45 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzkwsTKo45 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzkwsTKo45 .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-uzkwsTKo45 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzkwsTKo45 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzkwsTKo45 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzkwsTKo45 .mbr-text,
.cid-uzkwsTKo45 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU03AWGwb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU03AWGwb H1 {
  color: #000000;
}
.cid-uxgjPT7vzo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgjPT7vzo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgjPT7vzo .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgjPT7vzo .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgjPT7vzo .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgjPT7vzo .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgjPT7vzo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgjPT7vzo .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgjPT7vzo .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgjPT7vzo .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgjPT7vzo .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgjPT7vzo .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-uxgjPT7vzo .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgjPT7vzo .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgjPT7vzo .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgjPT7vzo .mbr-text,
.cid-uxgjPT7vzo .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgjQyoxCx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgjQyoxCx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgjQyoxCx .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgjQyoxCx .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgjQyoxCx .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgjQyoxCx .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgjQyoxCx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgjQyoxCx .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgjQyoxCx .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgjQyoxCx .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgjQyoxCx .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgjQyoxCx .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-uxgjQyoxCx .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgjQyoxCx .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgjQyoxCx .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgjQyoxCx .mbr-text,
.cid-uxgjQyoxCx .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvUijHvrYY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvUijHvrYY H1 {
  color: #000000;
}
.cid-uvU03Cu1NX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvU03Cu1NX h2 {
  text-align: left;
}
.cid-uvU03Cu1NX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU03Cu1NX p {
  color: #767676;
  text-align: left;
}
.cid-uvU03Cu1NX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU03Cu1NX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU03Cu1NX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU03Cu1NX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU03Cu1NX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU03Cu1NX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU03Cu1NX .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvU03Cu1NX .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvU03Cu1NX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvU03Cu1NX .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvU03Cu1NX .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU03CR8xG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU03CR8xG H1 {
  color: #000000;
}
.cid-uvU03Dc178 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvU03Dc178 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU03Dc178 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU03Dc178 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU03Dc178 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvU03Dc178 .box {
  right: 20%;
}
.cid-uvU03Dc178 .text-box {
  right: 0;
}
.cid-uvU03Dc178 .mbr-section-title,
.cid-uvU03Dc178 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvU03Dc178 .text-box {
    display: none;
  }
  .cid-uvU03Dc178 .mbr-section-title,
  .cid-uvU03Dc178 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU03Dc178 .box {
    display: none;
  }
  .cid-uvU03Dc178 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU03Dc178 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU03Dc178 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU03Dc178 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU03Dc178 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU03Dc178 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU03DvYly {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU03DMtmB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvU03DMtmB h2 {
  text-align: left;
}
.cid-uvU03DMtmB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU03DMtmB p {
  color: #767676;
  text-align: left;
}
.cid-uvU03DMtmB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU03DMtmB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU03DMtmB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU03DMtmB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU03DMtmB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU03DMtmB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU03DMtmB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU03DMtmB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU03DMtmB .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU03DMtmB .mbr-text {
  color: #232323;
}
.cid-uvU03EbQnR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvU03EbQnR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU03EbQnR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU03EbQnR .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvU03EbQnR .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvU03EbQnR .container {
    padding: 0 26px;
  }
}
.cid-uvU03EbQnR .row {
  justify-content: center;
}
.cid-uvU03EbQnR .item {
  margin-bottom: 32px;
}
.cid-uvU03EbQnR .item a {
  display: block;
}
.cid-uvU03EbQnR .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvU03EbQnR .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvU03EbQnR .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvU03EbQnR .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-uvU03EbQnR .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvU03EbQnR .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvU03EbQnR .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-uvU03EbQnR .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvU03EbQnR .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvU03EbQnR .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvU03EbQnR .item-title {
  color: #ffffff;
}
.cid-uvU03EbQnR .mbr-date {
  color: #cacaca;
}
.cid-uvU03EbQnR .mbr-desc {
  color: #cacaca;
}
.cid-uvU03Eyony {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvU03Eyony .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU03Eyony .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-uvU03Eyony .container {
    padding: 0 16px;
  }
}
.cid-uvU03Eyony .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvU03Eyony .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU03Eyony .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvU03Eyony .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU03Eyony .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvU03Eyony .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvU03Eyony .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvU03Eyony .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvU03Eyony .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvU03Eyony .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-uvU03Eyony .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvU03Eyony .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvU03Eyony .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvU03Eyony .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvU03Eyony .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvU03Eyony .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvU03Eyony .dragArea.row .form-group .form-control:hover,
.cid-uvU03Eyony .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvU03Eyony .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvU03Eyony .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvU03Eyony .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvU03Eyony .mbr-title {
  color: #ffffff;
}
.cid-uvU03Eyony .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvU03Eyony .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvU03Eyony .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvU03Eyony .list {
  color: #08323C;
}
.cid-uvU03Eyony label {
  color: #08323C;
}
.cid-uvU03Eyony H3 {
  color: #000000;
}
.cid-uvU03Eyony P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvU0hPqCp0 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU0hPqCp0 H1 {
  text-align: center;
}
.cid-uDmA5OzME8 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmA5OzME8 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmA5OzME8 .video-block {
    width: 100% !important;
  }
}
.cid-uvU0hPNz2r {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU0hQ4UPG {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvU0hQ4UPG .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU0hQ4UPG .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU0hQ4UPG .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU0hQ4UPG .box {
  left: 20%;
}
.cid-uvU0hQ4UPG .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvU0hQ4UPG .mbr-section-text,
.cid-uvU0hQ4UPG .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvU0hQ4UPG .text-box {
    display: none;
  }
  .cid-uvU0hQ4UPG .mbr-section-title,
  .cid-uvU0hQ4UPG .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU0hQ4UPG .box {
    display: none;
  }
  .cid-uvU0hQ4UPG .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU0hQ4UPG .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU0hQ4UPG .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU0hQ4UPG .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU0hQ4UPG .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU0hQ4UPG .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU0hQoXzy {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU0hQoXzy H1 {
  text-align: center;
}
.cid-uvU0hQEuHY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU0hQVudA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU0hQVudA h2 {
  text-align: left;
}
.cid-uvU0hQVudA h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU0hQVudA p {
  color: #767676;
  text-align: left;
}
.cid-uvU0hQVudA .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU0hQVudA .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU0hQVudA .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU0hQVudA .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU0hQVudA .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU0hQVudA .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU0hQVudA .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU0hQVudA .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU0hQVudA .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU0hQVudA H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvU0hQVudA P {
  color: #ffffff;
  text-align: left;
}
.cid-uvU0hQVudA H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvUllp7EXw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvUllp7EXw H1 {
  color: #000000;
}
.cid-uzkwwf6RjP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzkwwf6RjP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzkwwf6RjP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzkwwf6RjP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzkwwf6RjP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzkwwf6RjP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzkwwf6RjP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzkwwf6RjP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzkwwf6RjP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzkwwf6RjP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzkwwf6RjP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzkwwf6RjP .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-uzkwwf6RjP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzkwwf6RjP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzkwwf6RjP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzkwwf6RjP .mbr-text,
.cid-uzkwwf6RjP .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU0hRUJFP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU0hRUJFP H1 {
  color: #000000;
}
.cid-uxgjZFXoQl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgjZFXoQl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgjZFXoQl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgjZFXoQl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgjZFXoQl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgjZFXoQl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgjZFXoQl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgjZFXoQl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgjZFXoQl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgjZFXoQl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgjZFXoQl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgjZFXoQl .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-uxgjZFXoQl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgjZFXoQl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgjZFXoQl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgjZFXoQl .mbr-text,
.cid-uxgjZFXoQl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgk0kZXyw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgk0kZXyw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgk0kZXyw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgk0kZXyw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgk0kZXyw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgk0kZXyw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgk0kZXyw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgk0kZXyw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgk0kZXyw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgk0kZXyw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgk0kZXyw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgk0kZXyw .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-uxgk0kZXyw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgk0kZXyw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgk0kZXyw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgk0kZXyw .mbr-text,
.cid-uxgk0kZXyw .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvUltlDQMw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvUltlDQMw H1 {
  color: #000000;
}
.cid-uvU0hTmlfH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvU0hTmlfH h2 {
  text-align: left;
}
.cid-uvU0hTmlfH h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU0hTmlfH p {
  color: #767676;
  text-align: left;
}
.cid-uvU0hTmlfH .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU0hTmlfH .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU0hTmlfH .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU0hTmlfH .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU0hTmlfH .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU0hTmlfH .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU0hTmlfH .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvU0hTmlfH .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvU0hTmlfH .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvU0hTmlfH .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvU0hTmlfH .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU0hTKrAn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU0hTKrAn H1 {
  color: #000000;
}
.cid-uvU0hU1l6J {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvU0hU1l6J .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU0hU1l6J .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU0hU1l6J .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU0hU1l6J .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvU0hU1l6J .box {
  right: 20%;
}
.cid-uvU0hU1l6J .text-box {
  right: 0;
}
.cid-uvU0hU1l6J .mbr-section-title,
.cid-uvU0hU1l6J .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvU0hU1l6J .text-box {
    display: none;
  }
  .cid-uvU0hU1l6J .mbr-section-title,
  .cid-uvU0hU1l6J .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU0hU1l6J .box {
    display: none;
  }
  .cid-uvU0hU1l6J .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU0hU1l6J .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU0hU1l6J .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU0hU1l6J .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU0hU1l6J .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU0hU1l6J .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU0hUlBE7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU0hUG896 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvU0hUG896 h2 {
  text-align: left;
}
.cid-uvU0hUG896 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU0hUG896 p {
  color: #767676;
  text-align: left;
}
.cid-uvU0hUG896 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU0hUG896 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU0hUG896 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU0hUG896 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU0hUG896 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU0hUG896 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU0hUG896 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU0hUG896 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU0hUG896 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU0hUG896 .mbr-text {
  color: #232323;
}
.cid-uvU0hUZLsi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvU0hUZLsi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU0hUZLsi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU0hUZLsi .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvU0hUZLsi .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvU0hUZLsi .container {
    padding: 0 26px;
  }
}
.cid-uvU0hUZLsi .row {
  justify-content: center;
}
.cid-uvU0hUZLsi .item {
  margin-bottom: 32px;
}
.cid-uvU0hUZLsi .item a {
  display: block;
}
.cid-uvU0hUZLsi .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvU0hUZLsi .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvU0hUZLsi .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvU0hUZLsi .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-uvU0hUZLsi .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvU0hUZLsi .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvU0hUZLsi .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-uvU0hUZLsi .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvU0hUZLsi .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvU0hUZLsi .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvU0hUZLsi .item-title {
  color: #ffffff;
}
.cid-uvU0hUZLsi .mbr-date {
  color: #cacaca;
}
.cid-uvU0hUZLsi .mbr-desc {
  color: #cacaca;
}
.cid-uvU0hVjL9x {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvU0hVjL9x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU0hVjL9x .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-uvU0hVjL9x .container {
    padding: 0 16px;
  }
}
.cid-uvU0hVjL9x .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvU0hVjL9x .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU0hVjL9x .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvU0hVjL9x .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU0hVjL9x .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvU0hVjL9x .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvU0hVjL9x .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvU0hVjL9x .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvU0hVjL9x .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvU0hVjL9x .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-uvU0hVjL9x .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvU0hVjL9x .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvU0hVjL9x .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvU0hVjL9x .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvU0hVjL9x .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvU0hVjL9x .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvU0hVjL9x .dragArea.row .form-group .form-control:hover,
.cid-uvU0hVjL9x .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvU0hVjL9x .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvU0hVjL9x .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvU0hVjL9x .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvU0hVjL9x .mbr-title {
  color: #ffffff;
}
.cid-uvU0hVjL9x .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvU0hVjL9x .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvU0hVjL9x .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvU0hVjL9x .list {
  color: #08323C;
}
.cid-uvU0hVjL9x label {
  color: #08323C;
}
.cid-uvU0hVjL9x H3 {
  color: #000000;
}
.cid-uvU0hVjL9x P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvU0tsOKL3 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU0tsOKL3 H1 {
  text-align: center;
}
.cid-uDmA8FBfEq {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmA8FBfEq .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmA8FBfEq .video-block {
    width: 100% !important;
  }
}
.cid-uvU0ttaiyE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU0ttp1b5 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvU0ttp1b5 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU0ttp1b5 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU0ttp1b5 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU0ttp1b5 .box {
  left: 20%;
}
.cid-uvU0ttp1b5 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvU0ttp1b5 .mbr-section-text,
.cid-uvU0ttp1b5 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvU0ttp1b5 .text-box {
    display: none;
  }
  .cid-uvU0ttp1b5 .mbr-section-title,
  .cid-uvU0ttp1b5 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU0ttp1b5 .box {
    display: none;
  }
  .cid-uvU0ttp1b5 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU0ttp1b5 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU0ttp1b5 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU0ttp1b5 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU0ttp1b5 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU0ttp1b5 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU0ttFTmL {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU0ttFTmL H1 {
  text-align: center;
}
.cid-uvU0ttVEma {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU0tub5mG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU0tub5mG h2 {
  text-align: left;
}
.cid-uvU0tub5mG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU0tub5mG p {
  color: #767676;
  text-align: left;
}
.cid-uvU0tub5mG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU0tub5mG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU0tub5mG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU0tub5mG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU0tub5mG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU0tub5mG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU0tub5mG .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU0tub5mG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU0tub5mG .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU0tub5mG H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvU0tub5mG P {
  color: #ffffff;
  text-align: left;
}
.cid-uvU0tub5mG H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvUlCXR6Ew {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvUlCXR6Ew H1 {
  color: #000000;
}
.cid-uzkwGxpmnO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzkwGxpmnO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzkwGxpmnO .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzkwGxpmnO .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzkwGxpmnO .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzkwGxpmnO .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzkwGxpmnO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzkwGxpmnO .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzkwGxpmnO .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzkwGxpmnO .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzkwGxpmnO .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzkwGxpmnO .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-uzkwGxpmnO .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzkwGxpmnO .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzkwGxpmnO .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzkwGxpmnO .mbr-text,
.cid-uzkwGxpmnO .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU0tvalXW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU0tvalXW H1 {
  color: #000000;
}
.cid-uxgk9TkRL2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgk9TkRL2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgk9TkRL2 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgk9TkRL2 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgk9TkRL2 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgk9TkRL2 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgk9TkRL2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgk9TkRL2 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgk9TkRL2 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgk9TkRL2 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgk9TkRL2 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgk9TkRL2 .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-uxgk9TkRL2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgk9TkRL2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgk9TkRL2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgk9TkRL2 .mbr-text,
.cid-uxgk9TkRL2 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgkaxYuSi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgkaxYuSi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgkaxYuSi .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgkaxYuSi .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgkaxYuSi .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgkaxYuSi .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgkaxYuSi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgkaxYuSi .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgkaxYuSi .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgkaxYuSi .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgkaxYuSi .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgkaxYuSi .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-uxgkaxYuSi .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgkaxYuSi .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgkaxYuSi .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgkaxYuSi .mbr-text,
.cid-uxgkaxYuSi .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvUlGq5029 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvUlGq5029 H1 {
  color: #000000;
}
.cid-uvU0twz4yw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvU0twz4yw h2 {
  text-align: left;
}
.cid-uvU0twz4yw h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU0twz4yw p {
  color: #767676;
  text-align: left;
}
.cid-uvU0twz4yw .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU0twz4yw .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU0twz4yw .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU0twz4yw .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU0twz4yw .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU0twz4yw .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU0twz4yw .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvU0twz4yw .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvU0twz4yw .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvU0twz4yw .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvU0twz4yw .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU0twUzpW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU0twUzpW H1 {
  color: #000000;
}
.cid-uvU0txb8jI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvU0txb8jI .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU0txb8jI .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU0txb8jI .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU0txb8jI .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvU0txb8jI .box {
  right: 20%;
}
.cid-uvU0txb8jI .text-box {
  right: 0;
}
.cid-uvU0txb8jI .mbr-section-title,
.cid-uvU0txb8jI .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvU0txb8jI .text-box {
    display: none;
  }
  .cid-uvU0txb8jI .mbr-section-title,
  .cid-uvU0txb8jI .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU0txb8jI .box {
    display: none;
  }
  .cid-uvU0txb8jI .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU0txb8jI .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU0txb8jI .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU0txb8jI .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU0txb8jI .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU0txb8jI .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU0txwpo4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU0txOwyw {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvU0txOwyw h2 {
  text-align: left;
}
.cid-uvU0txOwyw h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU0txOwyw p {
  color: #767676;
  text-align: left;
}
.cid-uvU0txOwyw .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU0txOwyw .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU0txOwyw .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU0txOwyw .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU0txOwyw .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU0txOwyw .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU0txOwyw .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU0txOwyw .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU0txOwyw .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU0txOwyw .mbr-text {
  color: #232323;
}
.cid-uvU0ty8pjN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvU0ty8pjN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU0ty8pjN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU0ty8pjN .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvU0ty8pjN .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvU0ty8pjN .container {
    padding: 0 26px;
  }
}
.cid-uvU0ty8pjN .row {
  justify-content: center;
}
.cid-uvU0ty8pjN .item {
  margin-bottom: 32px;
}
.cid-uvU0ty8pjN .item a {
  display: block;
}
.cid-uvU0ty8pjN .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvU0ty8pjN .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvU0ty8pjN .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvU0ty8pjN .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-uvU0ty8pjN .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvU0ty8pjN .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvU0ty8pjN .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-uvU0ty8pjN .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvU0ty8pjN .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvU0ty8pjN .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvU0ty8pjN .item-title {
  color: #ffffff;
}
.cid-uvU0ty8pjN .mbr-date {
  color: #cacaca;
}
.cid-uvU0ty8pjN .mbr-desc {
  color: #cacaca;
}
.cid-uvU0tyt6Bg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvU0tyt6Bg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU0tyt6Bg .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-uvU0tyt6Bg .container {
    padding: 0 16px;
  }
}
.cid-uvU0tyt6Bg .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvU0tyt6Bg .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU0tyt6Bg .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvU0tyt6Bg .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU0tyt6Bg .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvU0tyt6Bg .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvU0tyt6Bg .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvU0tyt6Bg .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvU0tyt6Bg .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvU0tyt6Bg .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-uvU0tyt6Bg .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvU0tyt6Bg .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvU0tyt6Bg .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvU0tyt6Bg .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvU0tyt6Bg .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvU0tyt6Bg .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvU0tyt6Bg .dragArea.row .form-group .form-control:hover,
.cid-uvU0tyt6Bg .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvU0tyt6Bg .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvU0tyt6Bg .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvU0tyt6Bg .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvU0tyt6Bg .mbr-title {
  color: #ffffff;
}
.cid-uvU0tyt6Bg .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvU0tyt6Bg .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvU0tyt6Bg .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvU0tyt6Bg .list {
  color: #08323C;
}
.cid-uvU0tyt6Bg label {
  color: #08323C;
}
.cid-uvU0tyt6Bg H3 {
  color: #000000;
}
.cid-uvU0tyt6Bg P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvU0Fc7lhM {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU0Fc7lhM H1 {
  text-align: center;
}
.cid-uDmAaYVomq {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmAaYVomq .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmAaYVomq .video-block {
    width: 100% !important;
  }
}
.cid-uvU0Fct7Fz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU0FcJBk7 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvU0FcJBk7 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU0FcJBk7 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU0FcJBk7 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU0FcJBk7 .box {
  left: 20%;
}
.cid-uvU0FcJBk7 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvU0FcJBk7 .mbr-section-text,
.cid-uvU0FcJBk7 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvU0FcJBk7 .text-box {
    display: none;
  }
  .cid-uvU0FcJBk7 .mbr-section-title,
  .cid-uvU0FcJBk7 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU0FcJBk7 .box {
    display: none;
  }
  .cid-uvU0FcJBk7 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU0FcJBk7 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU0FcJBk7 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU0FcJBk7 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU0FcJBk7 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU0FcJBk7 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU0FcZMdx {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU0FcZMdx H1 {
  text-align: center;
}
.cid-uvU0FdeINu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU0FdvCMQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU0FdvCMQ h2 {
  text-align: left;
}
.cid-uvU0FdvCMQ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU0FdvCMQ p {
  color: #767676;
  text-align: left;
}
.cid-uvU0FdvCMQ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU0FdvCMQ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU0FdvCMQ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU0FdvCMQ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU0FdvCMQ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU0FdvCMQ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU0FdvCMQ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU0FdvCMQ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU0FdvCMQ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU0FdvCMQ H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvU0FdvCMQ P {
  color: #ffffff;
  text-align: left;
}
.cid-uvU0FdvCMQ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvUlOkY5yI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvUlOkY5yI H1 {
  color: #000000;
}
.cid-uzkwOvQUeZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzkwOvQUeZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzkwOvQUeZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzkwOvQUeZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzkwOvQUeZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzkwOvQUeZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzkwOvQUeZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzkwOvQUeZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzkwOvQUeZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzkwOvQUeZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzkwOvQUeZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzkwOvQUeZ .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-uzkwOvQUeZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzkwOvQUeZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzkwOvQUeZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzkwOvQUeZ .mbr-text,
.cid-uzkwOvQUeZ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU0FevvBF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU0FevvBF H1 {
  color: #000000;
}
.cid-uxgkk4xt48 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgkk4xt48 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgkk4xt48 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgkk4xt48 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgkk4xt48 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgkk4xt48 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgkk4xt48 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgkk4xt48 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgkk4xt48 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgkk4xt48 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgkk4xt48 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgkk4xt48 .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-uxgkk4xt48 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgkk4xt48 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgkk4xt48 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgkk4xt48 .mbr-text,
.cid-uxgkk4xt48 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgkkJ7Xsf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgkkJ7Xsf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgkkJ7Xsf .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgkkJ7Xsf .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgkkJ7Xsf .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgkkJ7Xsf .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgkkJ7Xsf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgkkJ7Xsf .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgkkJ7Xsf .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgkkJ7Xsf .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgkkJ7Xsf .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgkkJ7Xsf .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-uxgkkJ7Xsf .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgkkJ7Xsf .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgkkJ7Xsf .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgkkJ7Xsf .mbr-text,
.cid-uxgkkJ7Xsf .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvUlRGg8hC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvUlRGg8hC H1 {
  color: #000000;
}
.cid-uvU0FfW9ed {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvU0FfW9ed h2 {
  text-align: left;
}
.cid-uvU0FfW9ed h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU0FfW9ed p {
  color: #767676;
  text-align: left;
}
.cid-uvU0FfW9ed .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU0FfW9ed .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU0FfW9ed .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU0FfW9ed .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU0FfW9ed .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU0FfW9ed .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU0FfW9ed .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvU0FfW9ed .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvU0FfW9ed .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvU0FfW9ed .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvU0FfW9ed .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU0FghAuI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU0FghAuI H1 {
  color: #000000;
}
.cid-uvU0FgzV6P {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvU0FgzV6P .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU0FgzV6P .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU0FgzV6P .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU0FgzV6P .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvU0FgzV6P .box {
  right: 20%;
}
.cid-uvU0FgzV6P .text-box {
  right: 0;
}
.cid-uvU0FgzV6P .mbr-section-title,
.cid-uvU0FgzV6P .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvU0FgzV6P .text-box {
    display: none;
  }
  .cid-uvU0FgzV6P .mbr-section-title,
  .cid-uvU0FgzV6P .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU0FgzV6P .box {
    display: none;
  }
  .cid-uvU0FgzV6P .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU0FgzV6P .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU0FgzV6P .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU0FgzV6P .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU0FgzV6P .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU0FgzV6P .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU0FgUSM3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU0Fhduqy {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvU0Fhduqy h2 {
  text-align: left;
}
.cid-uvU0Fhduqy h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU0Fhduqy p {
  color: #767676;
  text-align: left;
}
.cid-uvU0Fhduqy .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU0Fhduqy .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU0Fhduqy .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU0Fhduqy .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU0Fhduqy .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU0Fhduqy .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU0Fhduqy .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU0Fhduqy .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU0Fhduqy .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU0Fhduqy .mbr-text {
  color: #232323;
}
.cid-uvU0FhyRoj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvU0FhyRoj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU0FhyRoj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU0FhyRoj .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvU0FhyRoj .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvU0FhyRoj .container {
    padding: 0 26px;
  }
}
.cid-uvU0FhyRoj .row {
  justify-content: center;
}
.cid-uvU0FhyRoj .item {
  margin-bottom: 32px;
}
.cid-uvU0FhyRoj .item a {
  display: block;
}
.cid-uvU0FhyRoj .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvU0FhyRoj .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvU0FhyRoj .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvU0FhyRoj .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-uvU0FhyRoj .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvU0FhyRoj .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvU0FhyRoj .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-uvU0FhyRoj .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvU0FhyRoj .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvU0FhyRoj .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvU0FhyRoj .item-title {
  color: #ffffff;
}
.cid-uvU0FhyRoj .mbr-date {
  color: #cacaca;
}
.cid-uvU0FhyRoj .mbr-desc {
  color: #cacaca;
}
.cid-uvU0FhUCND {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvU0FhUCND .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU0FhUCND .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-uvU0FhUCND .container {
    padding: 0 16px;
  }
}
.cid-uvU0FhUCND .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvU0FhUCND .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU0FhUCND .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvU0FhUCND .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU0FhUCND .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvU0FhUCND .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvU0FhUCND .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvU0FhUCND .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvU0FhUCND .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvU0FhUCND .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-uvU0FhUCND .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvU0FhUCND .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvU0FhUCND .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvU0FhUCND .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvU0FhUCND .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvU0FhUCND .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvU0FhUCND .dragArea.row .form-group .form-control:hover,
.cid-uvU0FhUCND .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvU0FhUCND .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvU0FhUCND .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvU0FhUCND .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvU0FhUCND .mbr-title {
  color: #ffffff;
}
.cid-uvU0FhUCND .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvU0FhUCND .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvU0FhUCND .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvU0FhUCND .list {
  color: #08323C;
}
.cid-uvU0FhUCND label {
  color: #08323C;
}
.cid-uvU0FhUCND H3 {
  color: #000000;
}
.cid-uvU0FhUCND P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvU0RX3hzn {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU0RX3hzn H1 {
  text-align: center;
}
.cid-uDmAdDrt6T {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmAdDrt6T .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmAdDrt6T .video-block {
    width: 100% !important;
  }
}
.cid-uvU0RXoQ31 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU0RXDI38 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvU0RXDI38 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU0RXDI38 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU0RXDI38 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU0RXDI38 .box {
  left: 20%;
}
.cid-uvU0RXDI38 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvU0RXDI38 .mbr-section-text,
.cid-uvU0RXDI38 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvU0RXDI38 .text-box {
    display: none;
  }
  .cid-uvU0RXDI38 .mbr-section-title,
  .cid-uvU0RXDI38 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU0RXDI38 .box {
    display: none;
  }
  .cid-uvU0RXDI38 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU0RXDI38 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU0RXDI38 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU0RXDI38 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU0RXDI38 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU0RXDI38 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU0RXW0fY {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU0RXW0fY H1 {
  text-align: center;
}
.cid-uvU0RYdm2n {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU0RYvdih {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU0RYvdih h2 {
  text-align: left;
}
.cid-uvU0RYvdih h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU0RYvdih p {
  color: #767676;
  text-align: left;
}
.cid-uvU0RYvdih .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU0RYvdih .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU0RYvdih .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU0RYvdih .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU0RYvdih .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU0RYvdih .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU0RYvdih .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU0RYvdih .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU0RYvdih .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU0RYvdih H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvU0RYvdih P {
  color: #ffffff;
  text-align: left;
}
.cid-uvU0RYvdih H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvUm0Ij9tA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvUm0Ij9tA H1 {
  color: #000000;
}
.cid-uzkwS67ty7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzkwS67ty7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzkwS67ty7 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzkwS67ty7 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzkwS67ty7 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzkwS67ty7 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzkwS67ty7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzkwS67ty7 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzkwS67ty7 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzkwS67ty7 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzkwS67ty7 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzkwS67ty7 .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-uzkwS67ty7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzkwS67ty7 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzkwS67ty7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzkwS67ty7 .mbr-text,
.cid-uzkwS67ty7 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU0RZwOID {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU0RZwOID H1 {
  color: #000000;
}
.cid-uxgku49xhD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgku49xhD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgku49xhD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgku49xhD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgku49xhD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgku49xhD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgku49xhD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgku49xhD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgku49xhD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgku49xhD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgku49xhD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgku49xhD .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-uxgku49xhD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgku49xhD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgku49xhD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgku49xhD .mbr-text,
.cid-uxgku49xhD .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgkuJyG4P {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgkuJyG4P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgkuJyG4P .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgkuJyG4P .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgkuJyG4P .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgkuJyG4P .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgkuJyG4P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgkuJyG4P .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgkuJyG4P .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgkuJyG4P .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgkuJyG4P .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgkuJyG4P .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-uxgkuJyG4P .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgkuJyG4P .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgkuJyG4P .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgkuJyG4P .mbr-text,
.cid-uxgkuJyG4P .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvUlZu6OEN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvUlZu6OEN H1 {
  color: #000000;
}
.cid-uvU0S19GKi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvU0S19GKi h2 {
  text-align: left;
}
.cid-uvU0S19GKi h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU0S19GKi p {
  color: #767676;
  text-align: left;
}
.cid-uvU0S19GKi .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU0S19GKi .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU0S19GKi .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU0S19GKi .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU0S19GKi .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU0S19GKi .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU0S19GKi .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvU0S19GKi .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvU0S19GKi .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvU0S19GKi .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvU0S19GKi .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU0S1v9z1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU0S1v9z1 H1 {
  color: #000000;
}
.cid-uvU0S1OA9l {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvU0S1OA9l .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU0S1OA9l .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU0S1OA9l .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU0S1OA9l .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvU0S1OA9l .box {
  right: 20%;
}
.cid-uvU0S1OA9l .text-box {
  right: 0;
}
.cid-uvU0S1OA9l .mbr-section-title,
.cid-uvU0S1OA9l .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvU0S1OA9l .text-box {
    display: none;
  }
  .cid-uvU0S1OA9l .mbr-section-title,
  .cid-uvU0S1OA9l .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU0S1OA9l .box {
    display: none;
  }
  .cid-uvU0S1OA9l .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU0S1OA9l .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU0S1OA9l .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU0S1OA9l .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU0S1OA9l .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU0S1OA9l .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU0S29tjB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU0S2tt5z {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvU0S2tt5z h2 {
  text-align: left;
}
.cid-uvU0S2tt5z h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU0S2tt5z p {
  color: #767676;
  text-align: left;
}
.cid-uvU0S2tt5z .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU0S2tt5z .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU0S2tt5z .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU0S2tt5z .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU0S2tt5z .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU0S2tt5z .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU0S2tt5z .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU0S2tt5z .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU0S2tt5z .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU0S2tt5z .mbr-text {
  color: #232323;
}
.cid-uvU0S2OCZq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvU0S2OCZq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU0S2OCZq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU0S2OCZq .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvU0S2OCZq .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvU0S2OCZq .container {
    padding: 0 26px;
  }
}
.cid-uvU0S2OCZq .row {
  justify-content: center;
}
.cid-uvU0S2OCZq .item {
  margin-bottom: 32px;
}
.cid-uvU0S2OCZq .item a {
  display: block;
}
.cid-uvU0S2OCZq .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvU0S2OCZq .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvU0S2OCZq .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvU0S2OCZq .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-uvU0S2OCZq .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvU0S2OCZq .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvU0S2OCZq .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-uvU0S2OCZq .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvU0S2OCZq .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvU0S2OCZq .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvU0S2OCZq .item-title {
  color: #ffffff;
}
.cid-uvU0S2OCZq .mbr-date {
  color: #cacaca;
}
.cid-uvU0S2OCZq .mbr-desc {
  color: #cacaca;
}
.cid-uvU0S3bueG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvU0S3bueG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU0S3bueG .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-uvU0S3bueG .container {
    padding: 0 16px;
  }
}
.cid-uvU0S3bueG .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvU0S3bueG .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU0S3bueG .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvU0S3bueG .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU0S3bueG .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvU0S3bueG .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvU0S3bueG .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvU0S3bueG .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvU0S3bueG .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvU0S3bueG .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-uvU0S3bueG .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvU0S3bueG .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvU0S3bueG .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvU0S3bueG .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvU0S3bueG .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvU0S3bueG .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvU0S3bueG .dragArea.row .form-group .form-control:hover,
.cid-uvU0S3bueG .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvU0S3bueG .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvU0S3bueG .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvU0S3bueG .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvU0S3bueG .mbr-title {
  color: #ffffff;
}
.cid-uvU0S3bueG .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvU0S3bueG .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvU0S3bueG .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvU0S3bueG .list {
  color: #08323C;
}
.cid-uvU0S3bueG label {
  color: #08323C;
}
.cid-uvU0S3bueG H3 {
  color: #000000;
}
.cid-uvU0S3bueG P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvU13CexfS {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU13CexfS H1 {
  text-align: center;
}
.cid-uDmAgHWrb7 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmAgHWrb7 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmAgHWrb7 .video-block {
    width: 100% !important;
  }
}
.cid-uvU13CxU1E {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU13CNAha {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvU13CNAha .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU13CNAha .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU13CNAha .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU13CNAha .box {
  left: 20%;
}
.cid-uvU13CNAha .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvU13CNAha .mbr-section-text,
.cid-uvU13CNAha .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvU13CNAha .text-box {
    display: none;
  }
  .cid-uvU13CNAha .mbr-section-title,
  .cid-uvU13CNAha .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU13CNAha .box {
    display: none;
  }
  .cid-uvU13CNAha .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU13CNAha .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU13CNAha .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU13CNAha .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU13CNAha .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU13CNAha .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU13D6xc5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU13D6xc5 H1 {
  text-align: center;
}
.cid-uvU13DmmX9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU13DCeVq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU13DCeVq h2 {
  text-align: left;
}
.cid-uvU13DCeVq h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU13DCeVq p {
  color: #767676;
  text-align: left;
}
.cid-uvU13DCeVq .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU13DCeVq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU13DCeVq .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU13DCeVq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU13DCeVq .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU13DCeVq .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU13DCeVq .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU13DCeVq .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU13DCeVq .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU13DCeVq H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvU13DCeVq P {
  color: #ffffff;
  text-align: left;
}
.cid-uvU13DCeVq H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvUm9kmK1L {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvUm9kmK1L H1 {
  color: #000000;
}
.cid-uzkwV50tBb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzkwV50tBb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzkwV50tBb .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzkwV50tBb .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzkwV50tBb .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzkwV50tBb .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzkwV50tBb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzkwV50tBb .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzkwV50tBb .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzkwV50tBb .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzkwV50tBb .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzkwV50tBb .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-uzkwV50tBb .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzkwV50tBb .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzkwV50tBb .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzkwV50tBb .mbr-text,
.cid-uzkwV50tBb .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU13EIOCf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU13EIOCf H1 {
  color: #000000;
}
.cid-uxgkFkNVAU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgkFkNVAU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgkFkNVAU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgkFkNVAU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgkFkNVAU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgkFkNVAU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgkFkNVAU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgkFkNVAU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgkFkNVAU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgkFkNVAU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgkFkNVAU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgkFkNVAU .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-uxgkFkNVAU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgkFkNVAU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgkFkNVAU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgkFkNVAU .mbr-text,
.cid-uxgkFkNVAU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgkG0tUis {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgkG0tUis .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgkG0tUis .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgkG0tUis .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgkG0tUis .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgkG0tUis .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgkG0tUis .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgkG0tUis .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgkG0tUis .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgkG0tUis .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgkG0tUis .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgkG0tUis .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-uxgkG0tUis .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgkG0tUis .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgkG0tUis .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgkG0tUis .mbr-text,
.cid-uxgkG0tUis .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvUmaUCgaj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvUmaUCgaj H1 {
  color: #000000;
}
.cid-uvU13GcCxG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvU13GcCxG h2 {
  text-align: left;
}
.cid-uvU13GcCxG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU13GcCxG p {
  color: #767676;
  text-align: left;
}
.cid-uvU13GcCxG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU13GcCxG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU13GcCxG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU13GcCxG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU13GcCxG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU13GcCxG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU13GcCxG .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvU13GcCxG .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvU13GcCxG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvU13GcCxG .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvU13GcCxG .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU13GBidn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU13GBidn H1 {
  color: #000000;
}
.cid-uvU13GWU1z {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvU13GWU1z .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU13GWU1z .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU13GWU1z .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU13GWU1z .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvU13GWU1z .box {
  right: 20%;
}
.cid-uvU13GWU1z .text-box {
  right: 0;
}
.cid-uvU13GWU1z .mbr-section-title,
.cid-uvU13GWU1z .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvU13GWU1z .text-box {
    display: none;
  }
  .cid-uvU13GWU1z .mbr-section-title,
  .cid-uvU13GWU1z .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU13GWU1z .box {
    display: none;
  }
  .cid-uvU13GWU1z .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU13GWU1z .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU13GWU1z .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU13GWU1z .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU13GWU1z .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU13GWU1z .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU13HhbyH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU13HCIQ5 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvU13HCIQ5 h2 {
  text-align: left;
}
.cid-uvU13HCIQ5 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU13HCIQ5 p {
  color: #767676;
  text-align: left;
}
.cid-uvU13HCIQ5 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU13HCIQ5 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU13HCIQ5 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU13HCIQ5 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU13HCIQ5 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU13HCIQ5 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU13HCIQ5 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU13HCIQ5 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU13HCIQ5 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU13HCIQ5 .mbr-text {
  color: #232323;
}
.cid-uvU13HYKMq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvU13HYKMq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU13HYKMq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU13HYKMq .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvU13HYKMq .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvU13HYKMq .container {
    padding: 0 26px;
  }
}
.cid-uvU13HYKMq .row {
  justify-content: center;
}
.cid-uvU13HYKMq .item {
  margin-bottom: 32px;
}
.cid-uvU13HYKMq .item a {
  display: block;
}
.cid-uvU13HYKMq .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvU13HYKMq .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvU13HYKMq .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvU13HYKMq .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-uvU13HYKMq .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvU13HYKMq .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvU13HYKMq .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-uvU13HYKMq .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvU13HYKMq .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvU13HYKMq .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvU13HYKMq .item-title {
  color: #ffffff;
}
.cid-uvU13HYKMq .mbr-date {
  color: #cacaca;
}
.cid-uvU13HYKMq .mbr-desc {
  color: #cacaca;
}
.cid-uvU13IjJFE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvU13IjJFE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU13IjJFE .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-uvU13IjJFE .container {
    padding: 0 16px;
  }
}
.cid-uvU13IjJFE .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvU13IjJFE .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU13IjJFE .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvU13IjJFE .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU13IjJFE .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvU13IjJFE .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvU13IjJFE .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvU13IjJFE .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvU13IjJFE .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvU13IjJFE .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-uvU13IjJFE .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvU13IjJFE .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvU13IjJFE .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvU13IjJFE .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvU13IjJFE .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvU13IjJFE .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvU13IjJFE .dragArea.row .form-group .form-control:hover,
.cid-uvU13IjJFE .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvU13IjJFE .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvU13IjJFE .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvU13IjJFE .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvU13IjJFE .mbr-title {
  color: #ffffff;
}
.cid-uvU13IjJFE .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvU13IjJFE .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvU13IjJFE .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvU13IjJFE .list {
  color: #08323C;
}
.cid-uvU13IjJFE label {
  color: #08323C;
}
.cid-uvU13IjJFE H3 {
  color: #000000;
}
.cid-uvU13IjJFE P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvU1gRVaKc {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU1gRVaKc H1 {
  text-align: center;
}
.cid-uDmAjyCw9D {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmAjyCw9D .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmAjyCw9D .video-block {
    width: 100% !important;
  }
}
.cid-uvU1gSj537 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU1gSDhQT {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvU1gSDhQT .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU1gSDhQT .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU1gSDhQT .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU1gSDhQT .box {
  left: 20%;
}
.cid-uvU1gSDhQT .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvU1gSDhQT .mbr-section-text,
.cid-uvU1gSDhQT .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvU1gSDhQT .text-box {
    display: none;
  }
  .cid-uvU1gSDhQT .mbr-section-title,
  .cid-uvU1gSDhQT .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU1gSDhQT .box {
    display: none;
  }
  .cid-uvU1gSDhQT .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU1gSDhQT .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU1gSDhQT .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU1gSDhQT .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU1gSDhQT .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU1gSDhQT .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU1gSU9Mh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU1gSU9Mh H1 {
  text-align: center;
}
.cid-uvU1gTdtwD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU1gTvX1E {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU1gTvX1E h2 {
  text-align: left;
}
.cid-uvU1gTvX1E h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU1gTvX1E p {
  color: #767676;
  text-align: left;
}
.cid-uvU1gTvX1E .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU1gTvX1E .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU1gTvX1E .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU1gTvX1E .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU1gTvX1E .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU1gTvX1E .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU1gTvX1E .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU1gTvX1E .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU1gTvX1E .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU1gTvX1E H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvU1gTvX1E P {
  color: #ffffff;
  text-align: left;
}
.cid-uvU1gTvX1E H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvUmywtwTL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvUmywtwTL H1 {
  color: #000000;
}
.cid-uzkwXTVIo5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzkwXTVIo5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzkwXTVIo5 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzkwXTVIo5 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzkwXTVIo5 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzkwXTVIo5 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzkwXTVIo5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzkwXTVIo5 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzkwXTVIo5 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzkwXTVIo5 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzkwXTVIo5 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzkwXTVIo5 .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-uzkwXTVIo5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzkwXTVIo5 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzkwXTVIo5 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzkwXTVIo5 .mbr-text,
.cid-uzkwXTVIo5 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU1gUCqLl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU1gUCqLl H1 {
  color: #000000;
}
.cid-uxgkPcqdZp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgkPcqdZp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgkPcqdZp .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgkPcqdZp .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgkPcqdZp .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgkPcqdZp .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgkPcqdZp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgkPcqdZp .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgkPcqdZp .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgkPcqdZp .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgkPcqdZp .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgkPcqdZp .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-uxgkPcqdZp .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgkPcqdZp .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgkPcqdZp .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgkPcqdZp .mbr-text,
.cid-uxgkPcqdZp .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgkPZUdq2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgkPZUdq2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgkPZUdq2 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgkPZUdq2 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgkPZUdq2 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgkPZUdq2 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgkPZUdq2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgkPZUdq2 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgkPZUdq2 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgkPZUdq2 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgkPZUdq2 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgkPZUdq2 .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-uxgkPZUdq2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgkPZUdq2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgkPZUdq2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgkPZUdq2 .mbr-text,
.cid-uxgkPZUdq2 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvUmx0S05G {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvUmx0S05G H1 {
  color: #000000;
}
.cid-uvU1gWuJd3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvU1gWuJd3 h2 {
  text-align: left;
}
.cid-uvU1gWuJd3 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU1gWuJd3 p {
  color: #767676;
  text-align: left;
}
.cid-uvU1gWuJd3 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU1gWuJd3 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU1gWuJd3 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU1gWuJd3 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU1gWuJd3 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU1gWuJd3 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU1gWuJd3 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvU1gWuJd3 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvU1gWuJd3 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvU1gWuJd3 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvU1gWuJd3 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU1gWQKVW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU1gWQKVW H1 {
  color: #000000;
}
.cid-uvU1gX8OVt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvU1gX8OVt .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU1gX8OVt .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU1gX8OVt .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU1gX8OVt .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvU1gX8OVt .box {
  right: 20%;
}
.cid-uvU1gX8OVt .text-box {
  right: 0;
}
.cid-uvU1gX8OVt .mbr-section-title,
.cid-uvU1gX8OVt .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvU1gX8OVt .text-box {
    display: none;
  }
  .cid-uvU1gX8OVt .mbr-section-title,
  .cid-uvU1gX8OVt .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU1gX8OVt .box {
    display: none;
  }
  .cid-uvU1gX8OVt .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU1gX8OVt .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU1gX8OVt .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU1gX8OVt .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU1gX8OVt .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU1gX8OVt .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU1gXxa8v {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU1gXSqve {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvU1gXSqve h2 {
  text-align: left;
}
.cid-uvU1gXSqve h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU1gXSqve p {
  color: #767676;
  text-align: left;
}
.cid-uvU1gXSqve .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU1gXSqve .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU1gXSqve .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU1gXSqve .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU1gXSqve .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU1gXSqve .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU1gXSqve .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU1gXSqve .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU1gXSqve .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU1gXSqve .mbr-text {
  color: #232323;
}
.cid-uvU1gYd1Dw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvU1gYd1Dw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU1gYd1Dw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU1gYd1Dw .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvU1gYd1Dw .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvU1gYd1Dw .container {
    padding: 0 26px;
  }
}
.cid-uvU1gYd1Dw .row {
  justify-content: center;
}
.cid-uvU1gYd1Dw .item {
  margin-bottom: 32px;
}
.cid-uvU1gYd1Dw .item a {
  display: block;
}
.cid-uvU1gYd1Dw .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvU1gYd1Dw .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvU1gYd1Dw .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvU1gYd1Dw .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-uvU1gYd1Dw .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvU1gYd1Dw .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvU1gYd1Dw .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-uvU1gYd1Dw .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvU1gYd1Dw .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvU1gYd1Dw .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvU1gYd1Dw .item-title {
  color: #ffffff;
}
.cid-uvU1gYd1Dw .mbr-date {
  color: #cacaca;
}
.cid-uvU1gYd1Dw .mbr-desc {
  color: #cacaca;
}
.cid-uvU1gYEhwR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvU1gYEhwR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU1gYEhwR .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-uvU1gYEhwR .container {
    padding: 0 16px;
  }
}
.cid-uvU1gYEhwR .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvU1gYEhwR .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU1gYEhwR .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvU1gYEhwR .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU1gYEhwR .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvU1gYEhwR .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvU1gYEhwR .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvU1gYEhwR .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvU1gYEhwR .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvU1gYEhwR .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-uvU1gYEhwR .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvU1gYEhwR .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvU1gYEhwR .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvU1gYEhwR .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvU1gYEhwR .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvU1gYEhwR .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvU1gYEhwR .dragArea.row .form-group .form-control:hover,
.cid-uvU1gYEhwR .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvU1gYEhwR .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvU1gYEhwR .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvU1gYEhwR .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvU1gYEhwR .mbr-title {
  color: #ffffff;
}
.cid-uvU1gYEhwR .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvU1gYEhwR .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvU1gYEhwR .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvU1gYEhwR .list {
  color: #08323C;
}
.cid-uvU1gYEhwR label {
  color: #08323C;
}
.cid-uvU1gYEhwR H3 {
  color: #000000;
}
.cid-uvU1gYEhwR P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvU2fyBrmi {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU2fyBrmi H1 {
  text-align: center;
}
.cid-uDmAufdTlP {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmAufdTlP .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmAufdTlP .video-block {
    width: 100% !important;
  }
}
.cid-uvU2fyYabU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU2fzf7ny {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvU2fzf7ny .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU2fzf7ny .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU2fzf7ny .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU2fzf7ny .box {
  left: 20%;
}
.cid-uvU2fzf7ny .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvU2fzf7ny .mbr-section-text,
.cid-uvU2fzf7ny .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvU2fzf7ny .text-box {
    display: none;
  }
  .cid-uvU2fzf7ny .mbr-section-title,
  .cid-uvU2fzf7ny .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU2fzf7ny .box {
    display: none;
  }
  .cid-uvU2fzf7ny .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU2fzf7ny .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU2fzf7ny .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU2fzf7ny .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU2fzf7ny .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU2fzf7ny .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU2fzAYTx {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU2fzAYTx H1 {
  text-align: center;
}
.cid-uvU2fzRtDL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU2fA8Qbw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU2fA8Qbw h2 {
  text-align: left;
}
.cid-uvU2fA8Qbw h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU2fA8Qbw p {
  color: #767676;
  text-align: left;
}
.cid-uvU2fA8Qbw .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU2fA8Qbw .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU2fA8Qbw .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU2fA8Qbw .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU2fA8Qbw .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU2fA8Qbw .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU2fA8Qbw .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU2fA8Qbw .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU2fA8Qbw .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU2fA8Qbw H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvU2fA8Qbw P {
  color: #ffffff;
  text-align: left;
}
.cid-uvU2fA8Qbw H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvUmU31lYc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvUmU31lYc H1 {
  color: #000000;
}
.cid-uzkx4KFiRy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzkx4KFiRy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzkx4KFiRy .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzkx4KFiRy .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzkx4KFiRy .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzkx4KFiRy .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzkx4KFiRy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzkx4KFiRy .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzkx4KFiRy .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzkx4KFiRy .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzkx4KFiRy .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzkx4KFiRy .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-uzkx4KFiRy .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzkx4KFiRy .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzkx4KFiRy .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzkx4KFiRy .mbr-text,
.cid-uzkx4KFiRy .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU2fBh4t3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU2fBh4t3 H1 {
  color: #000000;
}
.cid-uxglbrLRlq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxglbrLRlq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxglbrLRlq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxglbrLRlq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxglbrLRlq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxglbrLRlq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxglbrLRlq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxglbrLRlq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxglbrLRlq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxglbrLRlq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxglbrLRlq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxglbrLRlq .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-uxglbrLRlq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxglbrLRlq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxglbrLRlq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxglbrLRlq .mbr-text,
.cid-uxglbrLRlq .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxglcoUeTN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxglcoUeTN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxglcoUeTN .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxglcoUeTN .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxglcoUeTN .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxglcoUeTN .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxglcoUeTN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxglcoUeTN .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxglcoUeTN .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxglcoUeTN .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxglcoUeTN .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxglcoUeTN .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-uxglcoUeTN .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxglcoUeTN .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxglcoUeTN .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxglcoUeTN .mbr-text,
.cid-uxglcoUeTN .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvUmVuJERY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvUmVuJERY H1 {
  color: #000000;
}
.cid-uvU2fCQyxF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvU2fCQyxF h2 {
  text-align: left;
}
.cid-uvU2fCQyxF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU2fCQyxF p {
  color: #767676;
  text-align: left;
}
.cid-uvU2fCQyxF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU2fCQyxF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU2fCQyxF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU2fCQyxF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU2fCQyxF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU2fCQyxF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU2fCQyxF .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvU2fCQyxF .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvU2fCQyxF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvU2fCQyxF .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvU2fCQyxF .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU2fDce2L {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU2fDce2L H1 {
  color: #000000;
}
.cid-uvU2fDvYgs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvU2fDvYgs .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU2fDvYgs .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU2fDvYgs .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU2fDvYgs .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvU2fDvYgs .box {
  right: 20%;
}
.cid-uvU2fDvYgs .text-box {
  right: 0;
}
.cid-uvU2fDvYgs .mbr-section-title,
.cid-uvU2fDvYgs .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvU2fDvYgs .text-box {
    display: none;
  }
  .cid-uvU2fDvYgs .mbr-section-title,
  .cid-uvU2fDvYgs .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU2fDvYgs .box {
    display: none;
  }
  .cid-uvU2fDvYgs .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU2fDvYgs .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU2fDvYgs .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU2fDvYgs .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU2fDvYgs .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU2fDvYgs .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU2fDTSJA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU2fEd4HN {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvU2fEd4HN h2 {
  text-align: left;
}
.cid-uvU2fEd4HN h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU2fEd4HN p {
  color: #767676;
  text-align: left;
}
.cid-uvU2fEd4HN .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU2fEd4HN .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU2fEd4HN .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU2fEd4HN .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU2fEd4HN .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU2fEd4HN .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU2fEd4HN .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU2fEd4HN .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU2fEd4HN .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU2fEd4HN .mbr-text {
  color: #232323;
}
.cid-uvU2fEyEqB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvU2fEyEqB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU2fEyEqB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU2fEyEqB .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvU2fEyEqB .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvU2fEyEqB .container {
    padding: 0 26px;
  }
}
.cid-uvU2fEyEqB .row {
  justify-content: center;
}
.cid-uvU2fEyEqB .item {
  margin-bottom: 32px;
}
.cid-uvU2fEyEqB .item a {
  display: block;
}
.cid-uvU2fEyEqB .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvU2fEyEqB .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvU2fEyEqB .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvU2fEyEqB .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-uvU2fEyEqB .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvU2fEyEqB .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvU2fEyEqB .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-uvU2fEyEqB .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvU2fEyEqB .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvU2fEyEqB .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvU2fEyEqB .item-title {
  color: #ffffff;
}
.cid-uvU2fEyEqB .mbr-date {
  color: #cacaca;
}
.cid-uvU2fEyEqB .mbr-desc {
  color: #cacaca;
}
.cid-uvU2fEVED5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvU2fEVED5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU2fEVED5 .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-uvU2fEVED5 .container {
    padding: 0 16px;
  }
}
.cid-uvU2fEVED5 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvU2fEVED5 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU2fEVED5 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvU2fEVED5 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU2fEVED5 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvU2fEVED5 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvU2fEVED5 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvU2fEVED5 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvU2fEVED5 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvU2fEVED5 .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-uvU2fEVED5 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvU2fEVED5 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvU2fEVED5 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvU2fEVED5 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvU2fEVED5 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvU2fEVED5 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvU2fEVED5 .dragArea.row .form-group .form-control:hover,
.cid-uvU2fEVED5 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvU2fEVED5 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvU2fEVED5 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvU2fEVED5 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvU2fEVED5 .mbr-title {
  color: #ffffff;
}
.cid-uvU2fEVED5 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvU2fEVED5 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvU2fEVED5 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvU2fEVED5 .list {
  color: #08323C;
}
.cid-uvU2fEVED5 label {
  color: #08323C;
}
.cid-uvU2fEVED5 H3 {
  color: #000000;
}
.cid-uvU2fEVED5 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvU2Qh6S8z {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU2Qh6S8z H1 {
  text-align: center;
}
.cid-uDmAIkJtQh {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmAIkJtQh .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmAIkJtQh .video-block {
    width: 100% !important;
  }
}
.cid-uvU2QhtWZQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU2QhP7Vw {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvU2QhP7Vw .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU2QhP7Vw .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU2QhP7Vw .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU2QhP7Vw .box {
  left: 20%;
}
.cid-uvU2QhP7Vw .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvU2QhP7Vw .mbr-section-text,
.cid-uvU2QhP7Vw .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvU2QhP7Vw .text-box {
    display: none;
  }
  .cid-uvU2QhP7Vw .mbr-section-title,
  .cid-uvU2QhP7Vw .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU2QhP7Vw .box {
    display: none;
  }
  .cid-uvU2QhP7Vw .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU2QhP7Vw .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU2QhP7Vw .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU2QhP7Vw .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU2QhP7Vw .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU2QhP7Vw .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU2QichgG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU2QichgG H1 {
  text-align: center;
}
.cid-uvU2QiuA2a {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU2QiLUd0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU2QiLUd0 h2 {
  text-align: left;
}
.cid-uvU2QiLUd0 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU2QiLUd0 p {
  color: #767676;
  text-align: left;
}
.cid-uvU2QiLUd0 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU2QiLUd0 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU2QiLUd0 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU2QiLUd0 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU2QiLUd0 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU2QiLUd0 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU2QiLUd0 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU2QiLUd0 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU2QiLUd0 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU2QiLUd0 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvU2QiLUd0 P {
  color: #ffffff;
  text-align: left;
}
.cid-uvU2QiLUd0 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvUn403WaX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvUn403WaX H1 {
  color: #000000;
}
.cid-uzkxbvtmnE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzkxbvtmnE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzkxbvtmnE .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzkxbvtmnE .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzkxbvtmnE .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzkxbvtmnE .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzkxbvtmnE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzkxbvtmnE .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzkxbvtmnE .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzkxbvtmnE .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzkxbvtmnE .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzkxbvtmnE .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-uzkxbvtmnE .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzkxbvtmnE .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzkxbvtmnE .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzkxbvtmnE .mbr-text,
.cid-uzkxbvtmnE .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU2Qk2v2S {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU2Qk2v2S H1 {
  color: #000000;
}
.cid-uxgllJoV70 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgllJoV70 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgllJoV70 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgllJoV70 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgllJoV70 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgllJoV70 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgllJoV70 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgllJoV70 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgllJoV70 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgllJoV70 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgllJoV70 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgllJoV70 .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-uxgllJoV70 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgllJoV70 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgllJoV70 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgllJoV70 .mbr-text,
.cid-uxgllJoV70 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxglmtgweK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxglmtgweK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxglmtgweK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxglmtgweK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxglmtgweK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxglmtgweK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxglmtgweK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxglmtgweK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxglmtgweK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxglmtgweK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxglmtgweK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxglmtgweK .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-uxglmtgweK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxglmtgweK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxglmtgweK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxglmtgweK .mbr-text,
.cid-uxglmtgweK .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvUn2N3DQh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvUn2N3DQh H1 {
  color: #000000;
}
.cid-uvU2QlSjcq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvU2QlSjcq h2 {
  text-align: left;
}
.cid-uvU2QlSjcq h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU2QlSjcq p {
  color: #767676;
  text-align: left;
}
.cid-uvU2QlSjcq .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU2QlSjcq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU2QlSjcq .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU2QlSjcq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU2QlSjcq .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU2QlSjcq .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU2QlSjcq .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvU2QlSjcq .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvU2QlSjcq .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvU2QlSjcq .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvU2QlSjcq .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU2QmkhG0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU2QmkhG0 H1 {
  color: #000000;
}
.cid-uvU2QmHv67 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvU2QmHv67 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU2QmHv67 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU2QmHv67 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU2QmHv67 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvU2QmHv67 .box {
  right: 20%;
}
.cid-uvU2QmHv67 .text-box {
  right: 0;
}
.cid-uvU2QmHv67 .mbr-section-title,
.cid-uvU2QmHv67 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvU2QmHv67 .text-box {
    display: none;
  }
  .cid-uvU2QmHv67 .mbr-section-title,
  .cid-uvU2QmHv67 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU2QmHv67 .box {
    display: none;
  }
  .cid-uvU2QmHv67 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU2QmHv67 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU2QmHv67 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU2QmHv67 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU2QmHv67 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU2QmHv67 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU2Qncqdg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU2QnAQvC {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvU2QnAQvC h2 {
  text-align: left;
}
.cid-uvU2QnAQvC h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU2QnAQvC p {
  color: #767676;
  text-align: left;
}
.cid-uvU2QnAQvC .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU2QnAQvC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU2QnAQvC .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU2QnAQvC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU2QnAQvC .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU2QnAQvC .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU2QnAQvC .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU2QnAQvC .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU2QnAQvC .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU2QnAQvC .mbr-text {
  color: #232323;
}
.cid-uvU2QnW90y {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvU2QnW90y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU2QnW90y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU2QnW90y .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvU2QnW90y .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvU2QnW90y .container {
    padding: 0 26px;
  }
}
.cid-uvU2QnW90y .row {
  justify-content: center;
}
.cid-uvU2QnW90y .item {
  margin-bottom: 32px;
}
.cid-uvU2QnW90y .item a {
  display: block;
}
.cid-uvU2QnW90y .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvU2QnW90y .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvU2QnW90y .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvU2QnW90y .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-uvU2QnW90y .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvU2QnW90y .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvU2QnW90y .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-uvU2QnW90y .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvU2QnW90y .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvU2QnW90y .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvU2QnW90y .item-title {
  color: #ffffff;
}
.cid-uvU2QnW90y .mbr-date {
  color: #cacaca;
}
.cid-uvU2QnW90y .mbr-desc {
  color: #cacaca;
}
.cid-uvU2Qonqik {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvU2Qonqik .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU2Qonqik .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-uvU2Qonqik .container {
    padding: 0 16px;
  }
}
.cid-uvU2Qonqik .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvU2Qonqik .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU2Qonqik .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvU2Qonqik .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU2Qonqik .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvU2Qonqik .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvU2Qonqik .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvU2Qonqik .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvU2Qonqik .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvU2Qonqik .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-uvU2Qonqik .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvU2Qonqik .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvU2Qonqik .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvU2Qonqik .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvU2Qonqik .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvU2Qonqik .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvU2Qonqik .dragArea.row .form-group .form-control:hover,
.cid-uvU2Qonqik .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvU2Qonqik .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvU2Qonqik .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvU2Qonqik .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvU2Qonqik .mbr-title {
  color: #ffffff;
}
.cid-uvU2Qonqik .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvU2Qonqik .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvU2Qonqik .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvU2Qonqik .list {
  color: #08323C;
}
.cid-uvU2Qonqik label {
  color: #08323C;
}
.cid-uvU2Qonqik H3 {
  color: #000000;
}
.cid-uvU2Qonqik P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvU33OdIZ2 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU33OdIZ2 H1 {
  text-align: center;
}
.cid-uDmAKIjQSH {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmAKIjQSH .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmAKIjQSH .video-block {
    width: 100% !important;
  }
}
.cid-uvU33OHmyE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU33P2XEC {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvU33P2XEC .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU33P2XEC .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU33P2XEC .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU33P2XEC .box {
  left: 20%;
}
.cid-uvU33P2XEC .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvU33P2XEC .mbr-section-text,
.cid-uvU33P2XEC .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvU33P2XEC .text-box {
    display: none;
  }
  .cid-uvU33P2XEC .mbr-section-title,
  .cid-uvU33P2XEC .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU33P2XEC .box {
    display: none;
  }
  .cid-uvU33P2XEC .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU33P2XEC .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU33P2XEC .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU33P2XEC .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU33P2XEC .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU33P2XEC .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU33Pnogj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU33Pnogj H1 {
  text-align: center;
}
.cid-uvU33PKiXw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU33Q2Ld0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU33Q2Ld0 h2 {
  text-align: left;
}
.cid-uvU33Q2Ld0 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU33Q2Ld0 p {
  color: #767676;
  text-align: left;
}
.cid-uvU33Q2Ld0 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU33Q2Ld0 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU33Q2Ld0 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU33Q2Ld0 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU33Q2Ld0 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU33Q2Ld0 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU33Q2Ld0 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU33Q2Ld0 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU33Q2Ld0 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU33Q2Ld0 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvU33Q2Ld0 P {
  color: #ffffff;
  text-align: left;
}
.cid-uvU33Q2Ld0 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvUng8U4e5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvUng8U4e5 H1 {
  color: #000000;
}
.cid-uzkxhs7YFV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzkxhs7YFV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzkxhs7YFV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzkxhs7YFV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzkxhs7YFV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzkxhs7YFV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzkxhs7YFV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzkxhs7YFV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzkxhs7YFV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzkxhs7YFV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzkxhs7YFV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzkxhs7YFV .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-uzkxhs7YFV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzkxhs7YFV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzkxhs7YFV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzkxhs7YFV .mbr-text,
.cid-uzkxhs7YFV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU33Rgesk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU33Rgesk H1 {
  color: #000000;
}
.cid-uxglw8Acz3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxglw8Acz3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxglw8Acz3 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxglw8Acz3 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxglw8Acz3 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxglw8Acz3 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxglw8Acz3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxglw8Acz3 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxglw8Acz3 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxglw8Acz3 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxglw8Acz3 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxglw8Acz3 .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-uxglw8Acz3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxglw8Acz3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxglw8Acz3 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxglw8Acz3 .mbr-text,
.cid-uxglw8Acz3 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxglwTqe2s {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxglwTqe2s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxglwTqe2s .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxglwTqe2s .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxglwTqe2s .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxglwTqe2s .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxglwTqe2s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxglwTqe2s .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxglwTqe2s .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxglwTqe2s .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxglwTqe2s .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxglwTqe2s .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-uxglwTqe2s .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxglwTqe2s .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxglwTqe2s .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxglwTqe2s .mbr-text,
.cid-uxglwTqe2s .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvUnfbFWzR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvUnfbFWzR H1 {
  color: #000000;
}
.cid-uvU33T8RtI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvU33T8RtI h2 {
  text-align: left;
}
.cid-uvU33T8RtI h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU33T8RtI p {
  color: #767676;
  text-align: left;
}
.cid-uvU33T8RtI .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU33T8RtI .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU33T8RtI .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU33T8RtI .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU33T8RtI .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU33T8RtI .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU33T8RtI .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvU33T8RtI .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvU33T8RtI .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvU33T8RtI .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvU33T8RtI .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU33Ty3Eh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU33Ty3Eh H1 {
  color: #000000;
}
.cid-uvU33TSKip {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvU33TSKip .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU33TSKip .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU33TSKip .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU33TSKip .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvU33TSKip .box {
  right: 20%;
}
.cid-uvU33TSKip .text-box {
  right: 0;
}
.cid-uvU33TSKip .mbr-section-title,
.cid-uvU33TSKip .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvU33TSKip .text-box {
    display: none;
  }
  .cid-uvU33TSKip .mbr-section-title,
  .cid-uvU33TSKip .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU33TSKip .box {
    display: none;
  }
  .cid-uvU33TSKip .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU33TSKip .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU33TSKip .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU33TSKip .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU33TSKip .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU33TSKip .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU33UenfE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU33UFyuF {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvU33UFyuF h2 {
  text-align: left;
}
.cid-uvU33UFyuF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU33UFyuF p {
  color: #767676;
  text-align: left;
}
.cid-uvU33UFyuF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU33UFyuF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU33UFyuF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU33UFyuF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU33UFyuF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU33UFyuF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU33UFyuF .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU33UFyuF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU33UFyuF .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU33UFyuF .mbr-text {
  color: #232323;
}
.cid-uvU33V5CmH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvU33V5CmH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU33V5CmH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU33V5CmH .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvU33V5CmH .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvU33V5CmH .container {
    padding: 0 26px;
  }
}
.cid-uvU33V5CmH .row {
  justify-content: center;
}
.cid-uvU33V5CmH .item {
  margin-bottom: 32px;
}
.cid-uvU33V5CmH .item a {
  display: block;
}
.cid-uvU33V5CmH .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvU33V5CmH .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvU33V5CmH .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvU33V5CmH .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-uvU33V5CmH .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvU33V5CmH .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvU33V5CmH .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-uvU33V5CmH .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvU33V5CmH .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvU33V5CmH .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvU33V5CmH .item-title {
  color: #ffffff;
}
.cid-uvU33V5CmH .mbr-date {
  color: #cacaca;
}
.cid-uvU33V5CmH .mbr-desc {
  color: #cacaca;
}
.cid-uvU33VsXJS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvU33VsXJS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU33VsXJS .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-uvU33VsXJS .container {
    padding: 0 16px;
  }
}
.cid-uvU33VsXJS .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvU33VsXJS .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU33VsXJS .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvU33VsXJS .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU33VsXJS .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvU33VsXJS .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvU33VsXJS .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvU33VsXJS .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvU33VsXJS .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvU33VsXJS .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-uvU33VsXJS .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvU33VsXJS .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvU33VsXJS .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvU33VsXJS .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvU33VsXJS .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvU33VsXJS .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvU33VsXJS .dragArea.row .form-group .form-control:hover,
.cid-uvU33VsXJS .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvU33VsXJS .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvU33VsXJS .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvU33VsXJS .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvU33VsXJS .mbr-title {
  color: #ffffff;
}
.cid-uvU33VsXJS .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvU33VsXJS .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvU33VsXJS .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvU33VsXJS .list {
  color: #08323C;
}
.cid-uvU33VsXJS label {
  color: #08323C;
}
.cid-uvU33VsXJS H3 {
  color: #000000;
}
.cid-uvU33VsXJS P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvU3r9XLkD {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU3r9XLkD H1 {
  text-align: center;
}
.cid-uDmANiFVzp {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmANiFVzp .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmANiFVzp .video-block {
    width: 100% !important;
  }
}
.cid-uvU3rao8ni {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU3raJbrJ {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvU3raJbrJ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU3raJbrJ .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU3raJbrJ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU3raJbrJ .box {
  left: 20%;
}
.cid-uvU3raJbrJ .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvU3raJbrJ .mbr-section-text,
.cid-uvU3raJbrJ .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvU3raJbrJ .text-box {
    display: none;
  }
  .cid-uvU3raJbrJ .mbr-section-title,
  .cid-uvU3raJbrJ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU3raJbrJ .box {
    display: none;
  }
  .cid-uvU3raJbrJ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU3raJbrJ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU3raJbrJ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU3raJbrJ .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU3raJbrJ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU3raJbrJ .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU3rbamad {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU3rbamad H1 {
  text-align: center;
}
.cid-uvU3rbug14 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU3rbOREN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU3rbOREN h2 {
  text-align: left;
}
.cid-uvU3rbOREN h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU3rbOREN p {
  color: #767676;
  text-align: left;
}
.cid-uvU3rbOREN .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU3rbOREN .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU3rbOREN .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU3rbOREN .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU3rbOREN .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU3rbOREN .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU3rbOREN .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU3rbOREN .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU3rbOREN .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU3rbOREN H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvU3rbOREN P {
  color: #ffffff;
  text-align: left;
}
.cid-uvU3rbOREN H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvUnoinjrv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvUnoinjrv H1 {
  color: #000000;
}
.cid-uzkxkK66QV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzkxkK66QV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzkxkK66QV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzkxkK66QV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzkxkK66QV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzkxkK66QV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzkxkK66QV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzkxkK66QV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzkxkK66QV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzkxkK66QV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzkxkK66QV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzkxkK66QV .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-uzkxkK66QV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzkxkK66QV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzkxkK66QV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzkxkK66QV .mbr-text,
.cid-uzkxkK66QV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU3rdkRzR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU3rdkRzR H1 {
  color: #000000;
}
.cid-uxgjpIrobq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgjpIrobq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgjpIrobq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgjpIrobq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgjpIrobq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgjpIrobq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgjpIrobq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgjpIrobq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgjpIrobq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgjpIrobq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgjpIrobq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgjpIrobq .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-uxgjpIrobq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgjpIrobq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgjpIrobq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgjpIrobq .mbr-text,
.cid-uxgjpIrobq .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgjqoYdL3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgjqoYdL3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgjqoYdL3 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgjqoYdL3 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgjqoYdL3 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgjqoYdL3 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgjqoYdL3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgjqoYdL3 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgjqoYdL3 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgjqoYdL3 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgjqoYdL3 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgjqoYdL3 .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-uxgjqoYdL3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgjqoYdL3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgjqoYdL3 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgjqoYdL3 .mbr-text,
.cid-uxgjqoYdL3 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvUnncdthb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvUnncdthb H1 {
  color: #000000;
}
.cid-uvU3rf78Mp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvU3rf78Mp h2 {
  text-align: left;
}
.cid-uvU3rf78Mp h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU3rf78Mp p {
  color: #767676;
  text-align: left;
}
.cid-uvU3rf78Mp .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU3rf78Mp .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU3rf78Mp .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU3rf78Mp .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU3rf78Mp .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU3rf78Mp .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU3rf78Mp .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvU3rf78Mp .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvU3rf78Mp .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvU3rf78Mp .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvU3rf78Mp .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU3rfwTAr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU3rfwTAr H1 {
  color: #000000;
}
.cid-uvU3rfTYda {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvU3rfTYda .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU3rfTYda .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU3rfTYda .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU3rfTYda .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvU3rfTYda .box {
  right: 20%;
}
.cid-uvU3rfTYda .text-box {
  right: 0;
}
.cid-uvU3rfTYda .mbr-section-title,
.cid-uvU3rfTYda .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvU3rfTYda .text-box {
    display: none;
  }
  .cid-uvU3rfTYda .mbr-section-title,
  .cid-uvU3rfTYda .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU3rfTYda .box {
    display: none;
  }
  .cid-uvU3rfTYda .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU3rfTYda .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU3rfTYda .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU3rfTYda .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU3rfTYda .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU3rfTYda .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU3rgk9Ny {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU3rgFsxg {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvU3rgFsxg h2 {
  text-align: left;
}
.cid-uvU3rgFsxg h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU3rgFsxg p {
  color: #767676;
  text-align: left;
}
.cid-uvU3rgFsxg .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU3rgFsxg .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU3rgFsxg .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU3rgFsxg .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU3rgFsxg .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU3rgFsxg .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU3rgFsxg .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU3rgFsxg .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU3rgFsxg .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU3rgFsxg .mbr-text {
  color: #232323;
}
.cid-uvU3rh2H8M {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvU3rh2H8M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU3rh2H8M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU3rh2H8M .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvU3rh2H8M .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvU3rh2H8M .container {
    padding: 0 26px;
  }
}
.cid-uvU3rh2H8M .row {
  justify-content: center;
}
.cid-uvU3rh2H8M .item {
  margin-bottom: 32px;
}
.cid-uvU3rh2H8M .item a {
  display: block;
}
.cid-uvU3rh2H8M .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvU3rh2H8M .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvU3rh2H8M .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvU3rh2H8M .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-uvU3rh2H8M .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvU3rh2H8M .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvU3rh2H8M .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-uvU3rh2H8M .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvU3rh2H8M .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvU3rh2H8M .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvU3rh2H8M .item-title {
  color: #ffffff;
}
.cid-uvU3rh2H8M .mbr-date {
  color: #cacaca;
}
.cid-uvU3rh2H8M .mbr-desc {
  color: #cacaca;
}
.cid-uvU3rhAaIz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvU3rhAaIz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU3rhAaIz .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-uvU3rhAaIz .container {
    padding: 0 16px;
  }
}
.cid-uvU3rhAaIz .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvU3rhAaIz .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU3rhAaIz .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvU3rhAaIz .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU3rhAaIz .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvU3rhAaIz .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvU3rhAaIz .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvU3rhAaIz .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvU3rhAaIz .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvU3rhAaIz .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-uvU3rhAaIz .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvU3rhAaIz .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvU3rhAaIz .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvU3rhAaIz .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvU3rhAaIz .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvU3rhAaIz .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvU3rhAaIz .dragArea.row .form-group .form-control:hover,
.cid-uvU3rhAaIz .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvU3rhAaIz .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvU3rhAaIz .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvU3rhAaIz .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvU3rhAaIz .mbr-title {
  color: #ffffff;
}
.cid-uvU3rhAaIz .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvU3rhAaIz .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvU3rhAaIz .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvU3rhAaIz .list {
  color: #08323C;
}
.cid-uvU3rhAaIz label {
  color: #08323C;
}
.cid-uvU3rhAaIz H3 {
  color: #000000;
}
.cid-uvU3rhAaIz P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvVI7mG4H3 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvVI7mG4H3 H1 {
  text-align: center;
}
.cid-uDmzNeeMvU {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmzNeeMvU .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmzNeeMvU .video-block {
    width: 100% !important;
  }
}
.cid-uvVI7ncVSO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvVI7nAFwB {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvVI7nAFwB .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvVI7nAFwB .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvVI7nAFwB .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvVI7nAFwB .box {
  left: 20%;
}
.cid-uvVI7nAFwB .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvVI7nAFwB .mbr-section-text,
.cid-uvVI7nAFwB .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvVI7nAFwB .text-box {
    display: none;
  }
  .cid-uvVI7nAFwB .mbr-section-title,
  .cid-uvVI7nAFwB .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvVI7nAFwB .box {
    display: none;
  }
  .cid-uvVI7nAFwB .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvVI7nAFwB .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVI7nAFwB .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvVI7nAFwB .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvVI7nAFwB .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvVI7nAFwB .mbr-section-text DIV {
  text-align: center;
}
.cid-uvVI7nY4kf {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvVI7nY4kf H1 {
  text-align: center;
}
.cid-uvVI7oiEo5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvVI7oFjRW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvVI7oFjRW h2 {
  text-align: left;
}
.cid-uvVI7oFjRW h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVI7oFjRW p {
  color: #767676;
  text-align: left;
}
.cid-uvVI7oFjRW .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVI7oFjRW .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVI7oFjRW .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVI7oFjRW .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVI7oFjRW .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVI7oFjRW .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVI7oFjRW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVI7oFjRW .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvVI7oFjRW .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVI7oFjRW H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvVI7oFjRW P {
  color: #ffffff;
  text-align: left;
}
.cid-uvVI7oFjRW H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvVI7p78xz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvVI7p78xz H1 {
  color: #000000;
}
.cid-uxfItZYFXm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfItZYFXm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfItZYFXm .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfItZYFXm .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfItZYFXm .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfItZYFXm .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfItZYFXm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfItZYFXm .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfItZYFXm .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfItZYFXm .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfItZYFXm .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfItZYFXm .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-uxfItZYFXm .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfItZYFXm .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfItZYFXm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfItZYFXm .mbr-text,
.cid-uxfItZYFXm .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvVI7q1l9F {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvVI7q1l9F H1 {
  color: #000000;
}
.cid-uxfIuFGqLs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfIuFGqLs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfIuFGqLs .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfIuFGqLs .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfIuFGqLs .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfIuFGqLs .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfIuFGqLs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfIuFGqLs .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfIuFGqLs .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfIuFGqLs .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfIuFGqLs .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfIuFGqLs .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-uxfIuFGqLs .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfIuFGqLs .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfIuFGqLs .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfIuFGqLs .mbr-text,
.cid-uxfIuFGqLs .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfIvpU2fs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfIvpU2fs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfIvpU2fs .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfIvpU2fs .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfIvpU2fs .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfIvpU2fs .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfIvpU2fs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfIvpU2fs .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfIvpU2fs .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfIvpU2fs .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfIvpU2fs .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfIvpU2fs .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-uxfIvpU2fs .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfIvpU2fs .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfIvpU2fs .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfIvpU2fs .mbr-text,
.cid-uxfIvpU2fs .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvVI7rC3Za {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvVI7rC3Za H1 {
  color: #000000;
}
.cid-uvVI7s2xIq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvVI7s2xIq h2 {
  text-align: left;
}
.cid-uvVI7s2xIq h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVI7s2xIq p {
  color: #767676;
  text-align: left;
}
.cid-uvVI7s2xIq .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVI7s2xIq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVI7s2xIq .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVI7s2xIq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVI7s2xIq .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVI7s2xIq .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVI7s2xIq .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvVI7s2xIq .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvVI7s2xIq .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvVI7s2xIq .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvVI7s2xIq .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVI7sub47 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvVI7sub47 H1 {
  color: #000000;
}
.cid-uvVI7sVN4L {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvVI7sVN4L .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvVI7sVN4L .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvVI7sVN4L .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvVI7sVN4L .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvVI7sVN4L .box {
  right: 20%;
}
.cid-uvVI7sVN4L .text-box {
  right: 0;
}
.cid-uvVI7sVN4L .mbr-section-title,
.cid-uvVI7sVN4L .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvVI7sVN4L .text-box {
    display: none;
  }
  .cid-uvVI7sVN4L .mbr-section-title,
  .cid-uvVI7sVN4L .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvVI7sVN4L .box {
    display: none;
  }
  .cid-uvVI7sVN4L .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvVI7sVN4L .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVI7sVN4L .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvVI7sVN4L .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvVI7sVN4L .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvVI7sVN4L .mbr-section-text DIV {
  text-align: center;
}
.cid-uvVI7tjLdI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvVI7tIxRX {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvVI7tIxRX h2 {
  text-align: left;
}
.cid-uvVI7tIxRX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVI7tIxRX p {
  color: #767676;
  text-align: left;
}
.cid-uvVI7tIxRX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVI7tIxRX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVI7tIxRX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVI7tIxRX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVI7tIxRX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVI7tIxRX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVI7tIxRX .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVI7tIxRX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvVI7tIxRX .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVI7tIxRX .mbr-text {
  color: #232323;
}
.cid-uvVI7u7uaX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvVI7u7uaX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVI7u7uaX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVI7u7uaX .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvVI7u7uaX .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvVI7u7uaX .container {
    padding: 0 26px;
  }
}
.cid-uvVI7u7uaX .row {
  justify-content: center;
}
.cid-uvVI7u7uaX .item {
  margin-bottom: 32px;
}
.cid-uvVI7u7uaX .item a {
  display: block;
}
.cid-uvVI7u7uaX .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvVI7u7uaX .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvVI7u7uaX .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvVI7u7uaX .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-uvVI7u7uaX .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvVI7u7uaX .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvVI7u7uaX .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-uvVI7u7uaX .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvVI7u7uaX .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvVI7u7uaX .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvVI7u7uaX .item-title {
  color: #ffffff;
}
.cid-uvVI7u7uaX .mbr-date {
  color: #cacaca;
}
.cid-uvVI7u7uaX .mbr-desc {
  color: #cacaca;
}
.cid-uvVI7uwSct {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvVI7uwSct .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVI7uwSct .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-uvVI7uwSct .container {
    padding: 0 16px;
  }
}
.cid-uvVI7uwSct .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvVI7uwSct .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvVI7uwSct .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvVI7uwSct .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvVI7uwSct .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvVI7uwSct .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvVI7uwSct .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvVI7uwSct .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvVI7uwSct .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvVI7uwSct .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-uvVI7uwSct .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvVI7uwSct .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvVI7uwSct .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvVI7uwSct .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvVI7uwSct .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvVI7uwSct .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvVI7uwSct .dragArea.row .form-group .form-control:hover,
.cid-uvVI7uwSct .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvVI7uwSct .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvVI7uwSct .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvVI7uwSct .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvVI7uwSct .mbr-title {
  color: #ffffff;
}
.cid-uvVI7uwSct .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvVI7uwSct .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvVI7uwSct .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvVI7uwSct .list {
  color: #08323C;
}
.cid-uvVI7uwSct label {
  color: #08323C;
}
.cid-uvVI7uwSct H3 {
  color: #000000;
}
.cid-uvVI7uwSct P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvVIFAAk93 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvVIFAAk93 H1 {
  text-align: center;
}
.cid-uDmzP8O35y {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmzP8O35y .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmzP8O35y .video-block {
    width: 100% !important;
  }
}
.cid-uvVIFB12hA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvVIFBr6u2 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvVIFBr6u2 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvVIFBr6u2 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvVIFBr6u2 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvVIFBr6u2 .box {
  left: 20%;
}
.cid-uvVIFBr6u2 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvVIFBr6u2 .mbr-section-text,
.cid-uvVIFBr6u2 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvVIFBr6u2 .text-box {
    display: none;
  }
  .cid-uvVIFBr6u2 .mbr-section-title,
  .cid-uvVIFBr6u2 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvVIFBr6u2 .box {
    display: none;
  }
  .cid-uvVIFBr6u2 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvVIFBr6u2 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVIFBr6u2 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvVIFBr6u2 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvVIFBr6u2 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvVIFBr6u2 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvVIFBNIhz {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvVIFBNIhz H1 {
  text-align: center;
}
.cid-uvVIFC8mHd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvVIFCzoyo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvVIFCzoyo h2 {
  text-align: left;
}
.cid-uvVIFCzoyo h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVIFCzoyo p {
  color: #767676;
  text-align: left;
}
.cid-uvVIFCzoyo .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVIFCzoyo .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVIFCzoyo .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVIFCzoyo .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVIFCzoyo .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVIFCzoyo .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVIFCzoyo .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVIFCzoyo .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvVIFCzoyo .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVIFCzoyo H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvVIFCzoyo P {
  color: #ffffff;
  text-align: left;
}
.cid-uvVIFCzoyo H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvVIFD2LlT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvVIFD2LlT H1 {
  color: #000000;
}
.cid-uxfIZKFJsq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfIZKFJsq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfIZKFJsq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfIZKFJsq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfIZKFJsq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfIZKFJsq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfIZKFJsq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfIZKFJsq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfIZKFJsq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfIZKFJsq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfIZKFJsq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfIZKFJsq .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-uxfIZKFJsq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfIZKFJsq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfIZKFJsq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfIZKFJsq .mbr-text,
.cid-uxfIZKFJsq .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvVIFEoNsF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvVIFEoNsF H1 {
  color: #000000;
}
.cid-uxfJ0qY1Na {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfJ0qY1Na .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfJ0qY1Na .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfJ0qY1Na .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfJ0qY1Na .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfJ0qY1Na .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfJ0qY1Na .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfJ0qY1Na .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfJ0qY1Na .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfJ0qY1Na .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfJ0qY1Na .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfJ0qY1Na .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-uxfJ0qY1Na .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfJ0qY1Na .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfJ0qY1Na .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfJ0qY1Na .mbr-text,
.cid-uxfJ0qY1Na .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfJ16jtlS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfJ16jtlS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfJ16jtlS .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfJ16jtlS .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfJ16jtlS .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfJ16jtlS .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfJ16jtlS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfJ16jtlS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfJ16jtlS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfJ16jtlS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfJ16jtlS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfJ16jtlS .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-uxfJ16jtlS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfJ16jtlS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfJ16jtlS .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfJ16jtlS .mbr-text,
.cid-uxfJ16jtlS .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvVIFFWLll {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvVIFFWLll H1 {
  color: #000000;
}
.cid-uvVIFGievZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvVIFGievZ h2 {
  text-align: left;
}
.cid-uvVIFGievZ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVIFGievZ p {
  color: #767676;
  text-align: left;
}
.cid-uvVIFGievZ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVIFGievZ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVIFGievZ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVIFGievZ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVIFGievZ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVIFGievZ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVIFGievZ .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvVIFGievZ .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvVIFGievZ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvVIFGievZ .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvVIFGievZ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVIFGLaJg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvVIFGLaJg H1 {
  color: #000000;
}
.cid-uvVIFH8QY7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvVIFH8QY7 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvVIFH8QY7 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvVIFH8QY7 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvVIFH8QY7 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvVIFH8QY7 .box {
  right: 20%;
}
.cid-uvVIFH8QY7 .text-box {
  right: 0;
}
.cid-uvVIFH8QY7 .mbr-section-title,
.cid-uvVIFH8QY7 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvVIFH8QY7 .text-box {
    display: none;
  }
  .cid-uvVIFH8QY7 .mbr-section-title,
  .cid-uvVIFH8QY7 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvVIFH8QY7 .box {
    display: none;
  }
  .cid-uvVIFH8QY7 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvVIFH8QY7 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVIFH8QY7 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvVIFH8QY7 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvVIFH8QY7 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvVIFH8QY7 .mbr-section-text DIV {
  text-align: center;
}
.cid-uvVIFHx5hn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvVIFI0bje {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvVIFI0bje h2 {
  text-align: left;
}
.cid-uvVIFI0bje h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVIFI0bje p {
  color: #767676;
  text-align: left;
}
.cid-uvVIFI0bje .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVIFI0bje .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVIFI0bje .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVIFI0bje .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVIFI0bje .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVIFI0bje .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVIFI0bje .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVIFI0bje .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvVIFI0bje .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVIFI0bje .mbr-text {
  color: #232323;
}
.cid-uvVIFIqYYg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvVIFIqYYg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVIFIqYYg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVIFIqYYg .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvVIFIqYYg .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvVIFIqYYg .container {
    padding: 0 26px;
  }
}
.cid-uvVIFIqYYg .row {
  justify-content: center;
}
.cid-uvVIFIqYYg .item {
  margin-bottom: 32px;
}
.cid-uvVIFIqYYg .item a {
  display: block;
}
.cid-uvVIFIqYYg .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvVIFIqYYg .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvVIFIqYYg .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvVIFIqYYg .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-uvVIFIqYYg .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvVIFIqYYg .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvVIFIqYYg .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-uvVIFIqYYg .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvVIFIqYYg .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvVIFIqYYg .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvVIFIqYYg .item-title {
  color: #ffffff;
}
.cid-uvVIFIqYYg .mbr-date {
  color: #cacaca;
}
.cid-uvVIFIqYYg .mbr-desc {
  color: #cacaca;
}
.cid-uvVIFIQz8x {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvVIFIQz8x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVIFIQz8x .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-uvVIFIQz8x .container {
    padding: 0 16px;
  }
}
.cid-uvVIFIQz8x .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvVIFIQz8x .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvVIFIQz8x .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvVIFIQz8x .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvVIFIQz8x .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvVIFIQz8x .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvVIFIQz8x .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvVIFIQz8x .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvVIFIQz8x .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvVIFIQz8x .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-uvVIFIQz8x .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvVIFIQz8x .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvVIFIQz8x .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvVIFIQz8x .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvVIFIQz8x .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvVIFIQz8x .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvVIFIQz8x .dragArea.row .form-group .form-control:hover,
.cid-uvVIFIQz8x .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvVIFIQz8x .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvVIFIQz8x .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvVIFIQz8x .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvVIFIQz8x .mbr-title {
  color: #ffffff;
}
.cid-uvVIFIQz8x .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvVIFIQz8x .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvVIFIQz8x .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvVIFIQz8x .list {
  color: #08323C;
}
.cid-uvVIFIQz8x label {
  color: #08323C;
}
.cid-uvVIFIQz8x H3 {
  color: #000000;
}
.cid-uvVIFIQz8x P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvVJezwy4h {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvVJezwy4h H1 {
  text-align: center;
}
.cid-uDmzS6rXxn {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmzS6rXxn .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmzS6rXxn .video-block {
    width: 100% !important;
  }
}
.cid-uvVJezZmCD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvVJeAmLwC {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvVJeAmLwC .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvVJeAmLwC .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvVJeAmLwC .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvVJeAmLwC .box {
  left: 20%;
}
.cid-uvVJeAmLwC .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvVJeAmLwC .mbr-section-text,
.cid-uvVJeAmLwC .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvVJeAmLwC .text-box {
    display: none;
  }
  .cid-uvVJeAmLwC .mbr-section-title,
  .cid-uvVJeAmLwC .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvVJeAmLwC .box {
    display: none;
  }
  .cid-uvVJeAmLwC .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvVJeAmLwC .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVJeAmLwC .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvVJeAmLwC .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvVJeAmLwC .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvVJeAmLwC .mbr-section-text DIV {
  text-align: center;
}
.cid-uvVJeAKfnD {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvVJeAKfnD H1 {
  text-align: center;
}
.cid-uvVJeB4tCR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvVJeBo2eT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvVJeBo2eT h2 {
  text-align: left;
}
.cid-uvVJeBo2eT h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVJeBo2eT p {
  color: #767676;
  text-align: left;
}
.cid-uvVJeBo2eT .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVJeBo2eT .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVJeBo2eT .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVJeBo2eT .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVJeBo2eT .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVJeBo2eT .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVJeBo2eT .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVJeBo2eT .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvVJeBo2eT .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVJeBo2eT H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvVJeBo2eT P {
  color: #ffffff;
  text-align: left;
}
.cid-uvVJeBo2eT H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvVJeBUM8t {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvVJeBUM8t H1 {
  color: #000000;
}
.cid-uxfJcr1cg8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfJcr1cg8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfJcr1cg8 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfJcr1cg8 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfJcr1cg8 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfJcr1cg8 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfJcr1cg8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfJcr1cg8 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfJcr1cg8 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfJcr1cg8 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfJcr1cg8 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfJcr1cg8 .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-uxfJcr1cg8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfJcr1cg8 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfJcr1cg8 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfJcr1cg8 .mbr-text,
.cid-uxfJcr1cg8 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvVJeCNZIU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvVJeCNZIU H1 {
  color: #000000;
}
.cid-uxfJd6cThQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfJd6cThQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfJd6cThQ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfJd6cThQ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfJd6cThQ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfJd6cThQ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfJd6cThQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfJd6cThQ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfJd6cThQ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfJd6cThQ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfJd6cThQ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfJd6cThQ .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-uxfJd6cThQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfJd6cThQ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfJd6cThQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfJd6cThQ .mbr-text,
.cid-uxfJd6cThQ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfJdNF7EV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfJdNF7EV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfJdNF7EV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfJdNF7EV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfJdNF7EV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfJdNF7EV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfJdNF7EV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfJdNF7EV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfJdNF7EV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfJdNF7EV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfJdNF7EV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfJdNF7EV .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-uxfJdNF7EV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfJdNF7EV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfJdNF7EV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfJdNF7EV .mbr-text,
.cid-uxfJdNF7EV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvVJeEjJQ0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvVJeEjJQ0 H1 {
  color: #000000;
}
.cid-uvVJeEJkYt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvVJeEJkYt h2 {
  text-align: left;
}
.cid-uvVJeEJkYt h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVJeEJkYt p {
  color: #767676;
  text-align: left;
}
.cid-uvVJeEJkYt .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVJeEJkYt .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVJeEJkYt .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVJeEJkYt .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVJeEJkYt .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVJeEJkYt .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVJeEJkYt .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvVJeEJkYt .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvVJeEJkYt .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvVJeEJkYt .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvVJeEJkYt .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVJeF9GxQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvVJeF9GxQ H1 {
  color: #000000;
}
.cid-uvVJeFAvsS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvVJeFAvsS .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvVJeFAvsS .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvVJeFAvsS .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvVJeFAvsS .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvVJeFAvsS .box {
  right: 20%;
}
.cid-uvVJeFAvsS .text-box {
  right: 0;
}
.cid-uvVJeFAvsS .mbr-section-title,
.cid-uvVJeFAvsS .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvVJeFAvsS .text-box {
    display: none;
  }
  .cid-uvVJeFAvsS .mbr-section-title,
  .cid-uvVJeFAvsS .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvVJeFAvsS .box {
    display: none;
  }
  .cid-uvVJeFAvsS .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvVJeFAvsS .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVJeFAvsS .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvVJeFAvsS .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvVJeFAvsS .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvVJeFAvsS .mbr-section-text DIV {
  text-align: center;
}
.cid-uvVJeG0PuX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvVJeGor31 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvVJeGor31 h2 {
  text-align: left;
}
.cid-uvVJeGor31 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVJeGor31 p {
  color: #767676;
  text-align: left;
}
.cid-uvVJeGor31 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVJeGor31 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVJeGor31 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVJeGor31 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVJeGor31 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVJeGor31 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVJeGor31 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVJeGor31 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvVJeGor31 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVJeGor31 .mbr-text {
  color: #232323;
}
.cid-uvVJeGRxsh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvVJeGRxsh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVJeGRxsh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVJeGRxsh .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvVJeGRxsh .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvVJeGRxsh .container {
    padding: 0 26px;
  }
}
.cid-uvVJeGRxsh .row {
  justify-content: center;
}
.cid-uvVJeGRxsh .item {
  margin-bottom: 32px;
}
.cid-uvVJeGRxsh .item a {
  display: block;
}
.cid-uvVJeGRxsh .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvVJeGRxsh .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvVJeGRxsh .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvVJeGRxsh .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-uvVJeGRxsh .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvVJeGRxsh .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvVJeGRxsh .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-uvVJeGRxsh .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvVJeGRxsh .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvVJeGRxsh .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvVJeGRxsh .item-title {
  color: #ffffff;
}
.cid-uvVJeGRxsh .mbr-date {
  color: #cacaca;
}
.cid-uvVJeGRxsh .mbr-desc {
  color: #cacaca;
}
.cid-uvVJeHkxLp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvVJeHkxLp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVJeHkxLp .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-uvVJeHkxLp .container {
    padding: 0 16px;
  }
}
.cid-uvVJeHkxLp .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvVJeHkxLp .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvVJeHkxLp .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvVJeHkxLp .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvVJeHkxLp .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvVJeHkxLp .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvVJeHkxLp .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvVJeHkxLp .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvVJeHkxLp .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvVJeHkxLp .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-uvVJeHkxLp .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvVJeHkxLp .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvVJeHkxLp .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvVJeHkxLp .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvVJeHkxLp .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvVJeHkxLp .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvVJeHkxLp .dragArea.row .form-group .form-control:hover,
.cid-uvVJeHkxLp .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvVJeHkxLp .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvVJeHkxLp .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvVJeHkxLp .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvVJeHkxLp .mbr-title {
  color: #ffffff;
}
.cid-uvVJeHkxLp .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvVJeHkxLp .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvVJeHkxLp .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvVJeHkxLp .list {
  color: #08323C;
}
.cid-uvVJeHkxLp label {
  color: #08323C;
}
.cid-uvVJeHkxLp H3 {
  color: #000000;
}
.cid-uvVJeHkxLp P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvVKOYtR1q {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvVKOYtR1q H1 {
  text-align: center;
}
.cid-uDmzU8MP3a {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmzU8MP3a .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmzU8MP3a .video-block {
    width: 100% !important;
  }
}
.cid-uvVKOZ0e2D {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvVKOZmMOZ {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvVKOZmMOZ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvVKOZmMOZ .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvVKOZmMOZ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvVKOZmMOZ .box {
  left: 20%;
}
.cid-uvVKOZmMOZ .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvVKOZmMOZ .mbr-section-text,
.cid-uvVKOZmMOZ .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvVKOZmMOZ .text-box {
    display: none;
  }
  .cid-uvVKOZmMOZ .mbr-section-title,
  .cid-uvVKOZmMOZ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvVKOZmMOZ .box {
    display: none;
  }
  .cid-uvVKOZmMOZ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvVKOZmMOZ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVKOZmMOZ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvVKOZmMOZ .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvVKOZmMOZ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvVKOZmMOZ .mbr-section-text DIV {
  text-align: center;
}
.cid-uvVKOZITJs {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvVKOZITJs H1 {
  text-align: center;
}
.cid-uvVKP07wSA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvVKP0rHpk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvVKP0rHpk h2 {
  text-align: left;
}
.cid-uvVKP0rHpk h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVKP0rHpk p {
  color: #767676;
  text-align: left;
}
.cid-uvVKP0rHpk .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVKP0rHpk .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVKP0rHpk .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVKP0rHpk .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVKP0rHpk .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVKP0rHpk .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVKP0rHpk .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVKP0rHpk .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvVKP0rHpk .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVKP0rHpk H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvVKP0rHpk P {
  color: #ffffff;
  text-align: left;
}
.cid-uvVKP0rHpk H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvVKP0UrDA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvVKP0UrDA H1 {
  color: #000000;
}
.cid-uxfJnfzVvQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfJnfzVvQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfJnfzVvQ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfJnfzVvQ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfJnfzVvQ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfJnfzVvQ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfJnfzVvQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfJnfzVvQ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfJnfzVvQ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfJnfzVvQ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfJnfzVvQ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfJnfzVvQ .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-uxfJnfzVvQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfJnfzVvQ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfJnfzVvQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfJnfzVvQ .mbr-text,
.cid-uxfJnfzVvQ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvVKP1PCbX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvVKP1PCbX H1 {
  color: #000000;
}
.cid-uxfJo7PmsD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfJo7PmsD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfJo7PmsD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfJo7PmsD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfJo7PmsD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfJo7PmsD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfJo7PmsD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfJo7PmsD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfJo7PmsD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfJo7PmsD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfJo7PmsD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfJo7PmsD .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-uxfJo7PmsD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfJo7PmsD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfJo7PmsD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfJo7PmsD .mbr-text,
.cid-uxfJo7PmsD .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfJoM96ff {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfJoM96ff .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfJoM96ff .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfJoM96ff .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfJoM96ff .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfJoM96ff .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfJoM96ff .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfJoM96ff .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfJoM96ff .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfJoM96ff .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfJoM96ff .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfJoM96ff .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-uxfJoM96ff .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfJoM96ff .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfJoM96ff .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfJoM96ff .mbr-text,
.cid-uxfJoM96ff .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvVKP3zjVs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvVKP3zjVs H1 {
  color: #000000;
}
.cid-uvVKP42WJR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvVKP42WJR h2 {
  text-align: left;
}
.cid-uvVKP42WJR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVKP42WJR p {
  color: #767676;
  text-align: left;
}
.cid-uvVKP42WJR .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVKP42WJR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVKP42WJR .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVKP42WJR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVKP42WJR .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVKP42WJR .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVKP42WJR .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvVKP42WJR .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvVKP42WJR .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvVKP42WJR .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvVKP42WJR .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVKP4vqp5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvVKP4vqp5 H1 {
  color: #000000;
}
.cid-uvVKP4TWfV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvVKP4TWfV .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvVKP4TWfV .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvVKP4TWfV .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvVKP4TWfV .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvVKP4TWfV .box {
  right: 20%;
}
.cid-uvVKP4TWfV .text-box {
  right: 0;
}
.cid-uvVKP4TWfV .mbr-section-title,
.cid-uvVKP4TWfV .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvVKP4TWfV .text-box {
    display: none;
  }
  .cid-uvVKP4TWfV .mbr-section-title,
  .cid-uvVKP4TWfV .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvVKP4TWfV .box {
    display: none;
  }
  .cid-uvVKP4TWfV .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvVKP4TWfV .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVKP4TWfV .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvVKP4TWfV .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvVKP4TWfV .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvVKP4TWfV .mbr-section-text DIV {
  text-align: center;
}
.cid-uvVKP5lgyY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvVKP5ImDO {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvVKP5ImDO h2 {
  text-align: left;
}
.cid-uvVKP5ImDO h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVKP5ImDO p {
  color: #767676;
  text-align: left;
}
.cid-uvVKP5ImDO .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVKP5ImDO .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVKP5ImDO .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVKP5ImDO .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVKP5ImDO .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVKP5ImDO .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVKP5ImDO .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVKP5ImDO .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvVKP5ImDO .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVKP5ImDO .mbr-text {
  color: #232323;
}
.cid-uvVKP67q8Q {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvVKP67q8Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVKP67q8Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVKP67q8Q .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvVKP67q8Q .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvVKP67q8Q .container {
    padding: 0 26px;
  }
}
.cid-uvVKP67q8Q .row {
  justify-content: center;
}
.cid-uvVKP67q8Q .item {
  margin-bottom: 32px;
}
.cid-uvVKP67q8Q .item a {
  display: block;
}
.cid-uvVKP67q8Q .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvVKP67q8Q .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvVKP67q8Q .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvVKP67q8Q .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-uvVKP67q8Q .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvVKP67q8Q .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvVKP67q8Q .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-uvVKP67q8Q .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvVKP67q8Q .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvVKP67q8Q .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvVKP67q8Q .item-title {
  color: #ffffff;
}
.cid-uvVKP67q8Q .mbr-date {
  color: #cacaca;
}
.cid-uvVKP67q8Q .mbr-desc {
  color: #cacaca;
}
.cid-uvVKP6AJrR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvVKP6AJrR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVKP6AJrR .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-uvVKP6AJrR .container {
    padding: 0 16px;
  }
}
.cid-uvVKP6AJrR .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvVKP6AJrR .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvVKP6AJrR .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvVKP6AJrR .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvVKP6AJrR .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvVKP6AJrR .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvVKP6AJrR .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvVKP6AJrR .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvVKP6AJrR .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvVKP6AJrR .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-uvVKP6AJrR .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvVKP6AJrR .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvVKP6AJrR .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvVKP6AJrR .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvVKP6AJrR .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvVKP6AJrR .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvVKP6AJrR .dragArea.row .form-group .form-control:hover,
.cid-uvVKP6AJrR .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvVKP6AJrR .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvVKP6AJrR .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvVKP6AJrR .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvVKP6AJrR .mbr-title {
  color: #ffffff;
}
.cid-uvVKP6AJrR .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvVKP6AJrR .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvVKP6AJrR .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvVKP6AJrR .list {
  color: #08323C;
}
.cid-uvVKP6AJrR label {
  color: #08323C;
}
.cid-uvVKP6AJrR H3 {
  color: #000000;
}
.cid-uvVKP6AJrR P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvVWCTRDfT {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvVWCTRDfT H1 {
  text-align: center;
}
.cid-uDmzW3VOCT {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmzW3VOCT .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmzW3VOCT .video-block {
    width: 100% !important;
  }
}
.cid-uvVWCU3P1t {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvVWCUcteQ {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvVWCUcteQ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvVWCUcteQ .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvVWCUcteQ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvVWCUcteQ .box {
  left: 20%;
}
.cid-uvVWCUcteQ .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvVWCUcteQ .mbr-section-text,
.cid-uvVWCUcteQ .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvVWCUcteQ .text-box {
    display: none;
  }
  .cid-uvVWCUcteQ .mbr-section-title,
  .cid-uvVWCUcteQ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvVWCUcteQ .box {
    display: none;
  }
  .cid-uvVWCUcteQ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvVWCUcteQ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVWCUcteQ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvVWCUcteQ .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvVWCUcteQ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvVWCUcteQ .mbr-section-text DIV {
  text-align: center;
}
.cid-uvVWCUmDMe {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvVWCUmDMe H1 {
  text-align: center;
}
.cid-uvVWCUvrNg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvVWCUCyle {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvVWCUCyle h2 {
  text-align: left;
}
.cid-uvVWCUCyle h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVWCUCyle p {
  color: #767676;
  text-align: left;
}
.cid-uvVWCUCyle .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVWCUCyle .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVWCUCyle .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVWCUCyle .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVWCUCyle .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVWCUCyle .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVWCUCyle .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVWCUCyle .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvVWCUCyle .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVWCUCyle H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvVWCUCyle P {
  color: #ffffff;
  text-align: left;
}
.cid-uvVWCUCyle H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvVWCUROiq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvVWCUROiq H1 {
  color: #000000;
}
.cid-uxfJwSukJA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfJwSukJA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfJwSukJA .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfJwSukJA .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfJwSukJA .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfJwSukJA .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfJwSukJA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfJwSukJA .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfJwSukJA .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfJwSukJA .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfJwSukJA .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfJwSukJA .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-uxfJwSukJA .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfJwSukJA .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfJwSukJA .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfJwSukJA .mbr-text,
.cid-uxfJwSukJA .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvVWCVnrxw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvVWCVnrxw H1 {
  color: #000000;
}
.cid-uxfJxCQiLy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfJxCQiLy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfJxCQiLy .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfJxCQiLy .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfJxCQiLy .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfJxCQiLy .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfJxCQiLy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfJxCQiLy .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfJxCQiLy .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfJxCQiLy .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfJxCQiLy .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfJxCQiLy .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-uxfJxCQiLy .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfJxCQiLy .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfJxCQiLy .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfJxCQiLy .mbr-text,
.cid-uxfJxCQiLy .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfJymUTbu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfJymUTbu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfJymUTbu .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfJymUTbu .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfJymUTbu .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfJymUTbu .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfJymUTbu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfJymUTbu .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfJymUTbu .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfJymUTbu .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfJymUTbu .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfJymUTbu .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-uxfJymUTbu .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfJymUTbu .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfJymUTbu .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfJymUTbu .mbr-text,
.cid-uxfJymUTbu .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvVWCWnFCi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvVWCWnFCi H1 {
  color: #000000;
}
.cid-uvVWCWBnSd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvVWCWBnSd h2 {
  text-align: left;
}
.cid-uvVWCWBnSd h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVWCWBnSd p {
  color: #767676;
  text-align: left;
}
.cid-uvVWCWBnSd .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVWCWBnSd .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVWCWBnSd .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVWCWBnSd .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVWCWBnSd .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVWCWBnSd .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVWCWBnSd .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvVWCWBnSd .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvVWCWBnSd .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvVWCWBnSd .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvVWCWBnSd .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVWCWP429 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvVWCWP429 H1 {
  color: #000000;
}
.cid-uvVWCX0y0e {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvVWCX0y0e .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvVWCX0y0e .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvVWCX0y0e .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvVWCX0y0e .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvVWCX0y0e .box {
  right: 20%;
}
.cid-uvVWCX0y0e .text-box {
  right: 0;
}
.cid-uvVWCX0y0e .mbr-section-title,
.cid-uvVWCX0y0e .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvVWCX0y0e .text-box {
    display: none;
  }
  .cid-uvVWCX0y0e .mbr-section-title,
  .cid-uvVWCX0y0e .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvVWCX0y0e .box {
    display: none;
  }
  .cid-uvVWCX0y0e .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvVWCX0y0e .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVWCX0y0e .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvVWCX0y0e .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvVWCX0y0e .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvVWCX0y0e .mbr-section-text DIV {
  text-align: center;
}
.cid-uvVWCXcWwe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvVWCXpOuQ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvVWCXpOuQ h2 {
  text-align: left;
}
.cid-uvVWCXpOuQ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVWCXpOuQ p {
  color: #767676;
  text-align: left;
}
.cid-uvVWCXpOuQ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVWCXpOuQ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVWCXpOuQ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVWCXpOuQ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVWCXpOuQ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVWCXpOuQ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVWCXpOuQ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVWCXpOuQ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvVWCXpOuQ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVWCXpOuQ .mbr-text {
  color: #232323;
}
.cid-uvVWCXEeVP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvVWCXEeVP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVWCXEeVP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVWCXEeVP .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvVWCXEeVP .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvVWCXEeVP .container {
    padding: 0 26px;
  }
}
.cid-uvVWCXEeVP .row {
  justify-content: center;
}
.cid-uvVWCXEeVP .item {
  margin-bottom: 32px;
}
.cid-uvVWCXEeVP .item a {
  display: block;
}
.cid-uvVWCXEeVP .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvVWCXEeVP .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvVWCXEeVP .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvVWCXEeVP .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-uvVWCXEeVP .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvVWCXEeVP .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvVWCXEeVP .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-uvVWCXEeVP .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvVWCXEeVP .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvVWCXEeVP .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvVWCXEeVP .item-title {
  color: #ffffff;
}
.cid-uvVWCXEeVP .mbr-date {
  color: #cacaca;
}
.cid-uvVWCXEeVP .mbr-desc {
  color: #cacaca;
}
.cid-uvVWCXS7AH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvVWCXS7AH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVWCXS7AH .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-uvVWCXS7AH .container {
    padding: 0 16px;
  }
}
.cid-uvVWCXS7AH .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvVWCXS7AH .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvVWCXS7AH .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvVWCXS7AH .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvVWCXS7AH .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvVWCXS7AH .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvVWCXS7AH .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvVWCXS7AH .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvVWCXS7AH .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvVWCXS7AH .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-uvVWCXS7AH .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvVWCXS7AH .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvVWCXS7AH .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvVWCXS7AH .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvVWCXS7AH .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvVWCXS7AH .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvVWCXS7AH .dragArea.row .form-group .form-control:hover,
.cid-uvVWCXS7AH .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvVWCXS7AH .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvVWCXS7AH .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvVWCXS7AH .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvVWCXS7AH .mbr-title {
  color: #ffffff;
}
.cid-uvVWCXS7AH .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvVWCXS7AH .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvVWCXS7AH .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvVWCXS7AH .list {
  color: #08323C;
}
.cid-uvVWCXS7AH label {
  color: #08323C;
}
.cid-uvVWCXS7AH H3 {
  color: #000000;
}
.cid-uvVWCXS7AH P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvVWXKK22l {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvVWXKK22l H1 {
  text-align: center;
}
.cid-uDmzXUHXjA {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmzXUHXjA .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmzXUHXjA .video-block {
    width: 100% !important;
  }
}
.cid-uvVWXL1F1q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvVWXLedCE {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvVWXLedCE .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvVWXLedCE .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvVWXLedCE .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvVWXLedCE .box {
  left: 20%;
}
.cid-uvVWXLedCE .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvVWXLedCE .mbr-section-text,
.cid-uvVWXLedCE .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvVWXLedCE .text-box {
    display: none;
  }
  .cid-uvVWXLedCE .mbr-section-title,
  .cid-uvVWXLedCE .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvVWXLedCE .box {
    display: none;
  }
  .cid-uvVWXLedCE .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvVWXLedCE .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVWXLedCE .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvVWXLedCE .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvVWXLedCE .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvVWXLedCE .mbr-section-text DIV {
  text-align: center;
}
.cid-uvVWXLsYOh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvVWXLsYOh H1 {
  text-align: center;
}
.cid-uvVWXLEUfM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvVWXLObIP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvVWXLObIP h2 {
  text-align: left;
}
.cid-uvVWXLObIP h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVWXLObIP p {
  color: #767676;
  text-align: left;
}
.cid-uvVWXLObIP .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVWXLObIP .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVWXLObIP .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVWXLObIP .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVWXLObIP .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVWXLObIP .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVWXLObIP .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVWXLObIP .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvVWXLObIP .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVWXLObIP H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvVWXLObIP P {
  color: #ffffff;
  text-align: left;
}
.cid-uvVWXLObIP H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvVWXM3lqr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvVWXM3lqr H1 {
  color: #000000;
}
.cid-uxfJSAkW9e {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfJSAkW9e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfJSAkW9e .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfJSAkW9e .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfJSAkW9e .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfJSAkW9e .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfJSAkW9e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfJSAkW9e .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfJSAkW9e .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfJSAkW9e .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfJSAkW9e .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfJSAkW9e .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-uxfJSAkW9e .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfJSAkW9e .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfJSAkW9e .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfJSAkW9e .mbr-text,
.cid-uxfJSAkW9e .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvVWXMA7Wi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvVWXMA7Wi H1 {
  color: #000000;
}
.cid-uxfJToq8XD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfJToq8XD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfJToq8XD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfJToq8XD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfJToq8XD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfJToq8XD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfJToq8XD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfJToq8XD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfJToq8XD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfJToq8XD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfJToq8XD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfJToq8XD .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-uxfJToq8XD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfJToq8XD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfJToq8XD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfJToq8XD .mbr-text,
.cid-uxfJToq8XD .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfJUezxIs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfJUezxIs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfJUezxIs .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfJUezxIs .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfJUezxIs .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfJUezxIs .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfJUezxIs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfJUezxIs .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfJUezxIs .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfJUezxIs .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfJUezxIs .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfJUezxIs .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-uxfJUezxIs .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfJUezxIs .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfJUezxIs .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfJUezxIs .mbr-text,
.cid-uxfJUezxIs .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvVWXNJgob {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvVWXNJgob H1 {
  color: #000000;
}
.cid-uvVWXO1Smn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvVWXO1Smn h2 {
  text-align: left;
}
.cid-uvVWXO1Smn h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVWXO1Smn p {
  color: #767676;
  text-align: left;
}
.cid-uvVWXO1Smn .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVWXO1Smn .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVWXO1Smn .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVWXO1Smn .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVWXO1Smn .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVWXO1Smn .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVWXO1Smn .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvVWXO1Smn .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvVWXO1Smn .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvVWXO1Smn .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvVWXO1Smn .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVWXOhhX3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvVWXOhhX3 H1 {
  color: #000000;
}
.cid-uvVWXOteLI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvVWXOteLI .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvVWXOteLI .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvVWXOteLI .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvVWXOteLI .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvVWXOteLI .box {
  right: 20%;
}
.cid-uvVWXOteLI .text-box {
  right: 0;
}
.cid-uvVWXOteLI .mbr-section-title,
.cid-uvVWXOteLI .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvVWXOteLI .text-box {
    display: none;
  }
  .cid-uvVWXOteLI .mbr-section-title,
  .cid-uvVWXOteLI .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvVWXOteLI .box {
    display: none;
  }
  .cid-uvVWXOteLI .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvVWXOteLI .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVWXOteLI .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvVWXOteLI .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvVWXOteLI .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvVWXOteLI .mbr-section-text DIV {
  text-align: center;
}
.cid-uvVWXOHrSj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvVWXOTGTq {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvVWXOTGTq h2 {
  text-align: left;
}
.cid-uvVWXOTGTq h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvVWXOTGTq p {
  color: #767676;
  text-align: left;
}
.cid-uvVWXOTGTq .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvVWXOTGTq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvVWXOTGTq .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvVWXOTGTq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvVWXOTGTq .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvVWXOTGTq .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvVWXOTGTq .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVWXOTGTq .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvVWXOTGTq .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvVWXOTGTq .mbr-text {
  color: #232323;
}
.cid-uvVWXPcPbC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvVWXPcPbC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVWXPcPbC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVWXPcPbC .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvVWXPcPbC .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvVWXPcPbC .container {
    padding: 0 26px;
  }
}
.cid-uvVWXPcPbC .row {
  justify-content: center;
}
.cid-uvVWXPcPbC .item {
  margin-bottom: 32px;
}
.cid-uvVWXPcPbC .item a {
  display: block;
}
.cid-uvVWXPcPbC .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvVWXPcPbC .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvVWXPcPbC .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvVWXPcPbC .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-uvVWXPcPbC .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvVWXPcPbC .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvVWXPcPbC .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-uvVWXPcPbC .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvVWXPcPbC .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvVWXPcPbC .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvVWXPcPbC .item-title {
  color: #ffffff;
}
.cid-uvVWXPcPbC .mbr-date {
  color: #cacaca;
}
.cid-uvVWXPcPbC .mbr-desc {
  color: #cacaca;
}
.cid-uvVWXPsGiU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvVWXPsGiU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVWXPsGiU .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-uvVWXPsGiU .container {
    padding: 0 16px;
  }
}
.cid-uvVWXPsGiU .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvVWXPsGiU .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvVWXPsGiU .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvVWXPsGiU .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvVWXPsGiU .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvVWXPsGiU .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvVWXPsGiU .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvVWXPsGiU .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvVWXPsGiU .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvVWXPsGiU .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-uvVWXPsGiU .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvVWXPsGiU .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvVWXPsGiU .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvVWXPsGiU .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvVWXPsGiU .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvVWXPsGiU .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvVWXPsGiU .dragArea.row .form-group .form-control:hover,
.cid-uvVWXPsGiU .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvVWXPsGiU .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvVWXPsGiU .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvVWXPsGiU .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvVWXPsGiU .mbr-title {
  color: #ffffff;
}
.cid-uvVWXPsGiU .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvVWXPsGiU .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvVWXPsGiU .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvVWXPsGiU .list {
  color: #08323C;
}
.cid-uvVWXPsGiU label {
  color: #08323C;
}
.cid-uvVWXPsGiU H3 {
  color: #000000;
}
.cid-uvVWXPsGiU P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uw0b1OQe7E {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0b1OQe7E H1 {
  text-align: center;
}
.cid-uDmyWKDnP3 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmyWKDnP3 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmyWKDnP3 .video-block {
    width: 100% !important;
  }
}
.cid-uw0b1PhAHd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0b1PyM9p {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uw0b1PyM9p .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0b1PyM9p .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0b1PyM9p .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0b1PyM9p .box {
  left: 20%;
}
.cid-uw0b1PyM9p .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uw0b1PyM9p .mbr-section-text,
.cid-uw0b1PyM9p .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uw0b1PyM9p .text-box {
    display: none;
  }
  .cid-uw0b1PyM9p .mbr-section-title,
  .cid-uw0b1PyM9p .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0b1PyM9p .box {
    display: none;
  }
  .cid-uw0b1PyM9p .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0b1PyM9p .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0b1PyM9p .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0b1PyM9p .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0b1PyM9p .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0b1PyM9p .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0b1POyEo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0b1POyEo H1 {
  text-align: center;
}
.cid-uw0b1Q5J0l {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0b1QkIlC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0b1QkIlC h2 {
  text-align: left;
}
.cid-uw0b1QkIlC h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0b1QkIlC p {
  color: #767676;
  text-align: left;
}
.cid-uw0b1QkIlC .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0b1QkIlC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0b1QkIlC .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0b1QkIlC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0b1QkIlC .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0b1QkIlC .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0b1QkIlC .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0b1QkIlC .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0b1QkIlC .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0b1QkIlC H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uw0b1QkIlC P {
  color: #ffffff;
  text-align: left;
}
.cid-uw0b1QkIlC H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uw0b1QErdj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0b1QErdj H1 {
  color: #000000;
}
.cid-uxfu4FuHUQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfu4FuHUQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfu4FuHUQ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfu4FuHUQ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfu4FuHUQ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfu4FuHUQ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfu4FuHUQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfu4FuHUQ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfu4FuHUQ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfu4FuHUQ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfu4FuHUQ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfu4FuHUQ .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-uxfu4FuHUQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfu4FuHUQ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfu4FuHUQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfu4FuHUQ .mbr-text,
.cid-uxfu4FuHUQ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0b1RoBVI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0b1RoBVI H1 {
  color: #000000;
}
.cid-uxfu5j7Lqr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfu5j7Lqr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfu5j7Lqr .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfu5j7Lqr .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfu5j7Lqr .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfu5j7Lqr .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfu5j7Lqr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfu5j7Lqr .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfu5j7Lqr .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfu5j7Lqr .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfu5j7Lqr .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfu5j7Lqr .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-uxfu5j7Lqr .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfu5j7Lqr .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfu5j7Lqr .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfu5j7Lqr .mbr-text,
.cid-uxfu5j7Lqr .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfu5VPiP6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfu5VPiP6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfu5VPiP6 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfu5VPiP6 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfu5VPiP6 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfu5VPiP6 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfu5VPiP6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfu5VPiP6 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfu5VPiP6 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfu5VPiP6 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfu5VPiP6 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfu5VPiP6 .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-uxfu5VPiP6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfu5VPiP6 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfu5VPiP6 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfu5VPiP6 .mbr-text,
.cid-uxfu5VPiP6 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0b1SCsmg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0b1SCsmg H1 {
  color: #000000;
}
.cid-uw0b1T1LfX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uw0b1T1LfX h2 {
  text-align: left;
}
.cid-uw0b1T1LfX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0b1T1LfX p {
  color: #767676;
  text-align: left;
}
.cid-uw0b1T1LfX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0b1T1LfX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0b1T1LfX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0b1T1LfX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0b1T1LfX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0b1T1LfX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0b1T1LfX .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uw0b1T1LfX .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uw0b1T1LfX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uw0b1T1LfX .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uw0b1T1LfX .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0b1Toagu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0b1Toagu H1 {
  color: #000000;
}
.cid-uw0b1TH27C {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uw0b1TH27C .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0b1TH27C .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0b1TH27C .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0b1TH27C .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uw0b1TH27C .box {
  right: 20%;
}
.cid-uw0b1TH27C .text-box {
  right: 0;
}
.cid-uw0b1TH27C .mbr-section-title,
.cid-uw0b1TH27C .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uw0b1TH27C .text-box {
    display: none;
  }
  .cid-uw0b1TH27C .mbr-section-title,
  .cid-uw0b1TH27C .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0b1TH27C .box {
    display: none;
  }
  .cid-uw0b1TH27C .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0b1TH27C .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0b1TH27C .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0b1TH27C .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0b1TH27C .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0b1TH27C .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0b1U3gkv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0b1UmrU0 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uw0b1UmrU0 h2 {
  text-align: left;
}
.cid-uw0b1UmrU0 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0b1UmrU0 p {
  color: #767676;
  text-align: left;
}
.cid-uw0b1UmrU0 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0b1UmrU0 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0b1UmrU0 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0b1UmrU0 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0b1UmrU0 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0b1UmrU0 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0b1UmrU0 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0b1UmrU0 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0b1UmrU0 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0b1UmrU0 .mbr-text {
  color: #232323;
}
.cid-uw0b1UKZe8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uw0b1UKZe8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0b1UKZe8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0b1UKZe8 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uw0b1UKZe8 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uw0b1UKZe8 .container {
    padding: 0 26px;
  }
}
.cid-uw0b1UKZe8 .row {
  justify-content: center;
}
.cid-uw0b1UKZe8 .item {
  margin-bottom: 32px;
}
.cid-uw0b1UKZe8 .item a {
  display: block;
}
.cid-uw0b1UKZe8 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uw0b1UKZe8 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uw0b1UKZe8 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uw0b1UKZe8 .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-uw0b1UKZe8 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uw0b1UKZe8 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uw0b1UKZe8 .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-uw0b1UKZe8 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uw0b1UKZe8 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uw0b1UKZe8 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uw0b1UKZe8 .item-title {
  color: #ffffff;
}
.cid-uw0b1UKZe8 .mbr-date {
  color: #cacaca;
}
.cid-uw0b1UKZe8 .mbr-desc {
  color: #cacaca;
}
.cid-uw0b1V9ta1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw0b1V9ta1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0b1V9ta1 .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-uw0b1V9ta1 .container {
    padding: 0 16px;
  }
}
.cid-uw0b1V9ta1 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uw0b1V9ta1 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0b1V9ta1 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uw0b1V9ta1 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0b1V9ta1 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uw0b1V9ta1 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uw0b1V9ta1 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uw0b1V9ta1 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uw0b1V9ta1 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uw0b1V9ta1 .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-uw0b1V9ta1 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uw0b1V9ta1 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uw0b1V9ta1 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uw0b1V9ta1 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uw0b1V9ta1 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uw0b1V9ta1 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uw0b1V9ta1 .dragArea.row .form-group .form-control:hover,
.cid-uw0b1V9ta1 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uw0b1V9ta1 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uw0b1V9ta1 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uw0b1V9ta1 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uw0b1V9ta1 .mbr-title {
  color: #ffffff;
}
.cid-uw0b1V9ta1 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uw0b1V9ta1 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uw0b1V9ta1 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uw0b1V9ta1 .list {
  color: #08323C;
}
.cid-uw0b1V9ta1 label {
  color: #08323C;
}
.cid-uw0b1V9ta1 H3 {
  color: #000000;
}
.cid-uw0b1V9ta1 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uw0beO6BuU {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0beO6BuU H1 {
  text-align: center;
}
.cid-uDmyZvSdjV {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmyZvSdjV .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmyZvSdjV .video-block {
    width: 100% !important;
  }
}
.cid-uw0beOso9r {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0beOHZio {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uw0beOHZio .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0beOHZio .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0beOHZio .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0beOHZio .box {
  left: 20%;
}
.cid-uw0beOHZio .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uw0beOHZio .mbr-section-text,
.cid-uw0beOHZio .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uw0beOHZio .text-box {
    display: none;
  }
  .cid-uw0beOHZio .mbr-section-title,
  .cid-uw0beOHZio .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0beOHZio .box {
    display: none;
  }
  .cid-uw0beOHZio .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0beOHZio .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0beOHZio .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0beOHZio .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0beOHZio .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0beOHZio .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0beOXA0x {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0beOXA0x H1 {
  text-align: center;
}
.cid-uw0bePdQmG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0bePufcg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0bePufcg h2 {
  text-align: left;
}
.cid-uw0bePufcg h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0bePufcg p {
  color: #767676;
  text-align: left;
}
.cid-uw0bePufcg .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0bePufcg .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0bePufcg .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0bePufcg .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0bePufcg .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0bePufcg .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0bePufcg .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0bePufcg .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0bePufcg .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0bePufcg H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uw0bePufcg P {
  color: #ffffff;
  text-align: left;
}
.cid-uw0bePufcg H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uw0bePOM2f {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0bePOM2f H1 {
  color: #000000;
}
.cid-uxfuhwBkJw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfuhwBkJw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfuhwBkJw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfuhwBkJw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfuhwBkJw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfuhwBkJw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfuhwBkJw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfuhwBkJw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfuhwBkJw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfuhwBkJw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfuhwBkJw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfuhwBkJw .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-uxfuhwBkJw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfuhwBkJw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfuhwBkJw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfuhwBkJw .mbr-text,
.cid-uxfuhwBkJw .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0beQuM3Y {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0beQuM3Y H1 {
  color: #000000;
}
.cid-uxfuiiBpfw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfuiiBpfw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfuiiBpfw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfuiiBpfw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfuiiBpfw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfuiiBpfw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfuiiBpfw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfuiiBpfw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfuiiBpfw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfuiiBpfw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfuiiBpfw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfuiiBpfw .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-uxfuiiBpfw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfuiiBpfw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfuiiBpfw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfuiiBpfw .mbr-text,
.cid-uxfuiiBpfw .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfujhfNMl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfujhfNMl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfujhfNMl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfujhfNMl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfujhfNMl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfujhfNMl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfujhfNMl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfujhfNMl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfujhfNMl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfujhfNMl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfujhfNMl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfujhfNMl .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-uxfujhfNMl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfujhfNMl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfujhfNMl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfujhfNMl .mbr-text,
.cid-uxfujhfNMl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0beRCmBN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0beRCmBN H1 {
  color: #000000;
}
.cid-uw0beRVIsv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uw0beRVIsv h2 {
  text-align: left;
}
.cid-uw0beRVIsv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0beRVIsv p {
  color: #767676;
  text-align: left;
}
.cid-uw0beRVIsv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0beRVIsv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0beRVIsv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0beRVIsv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0beRVIsv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0beRVIsv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0beRVIsv .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uw0beRVIsv .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uw0beRVIsv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uw0beRVIsv .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uw0beRVIsv .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0beSgg3c {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0beSgg3c H1 {
  color: #000000;
}
.cid-uw0beSytJm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uw0beSytJm .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0beSytJm .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0beSytJm .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0beSytJm .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uw0beSytJm .box {
  right: 20%;
}
.cid-uw0beSytJm .text-box {
  right: 0;
}
.cid-uw0beSytJm .mbr-section-title,
.cid-uw0beSytJm .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uw0beSytJm .text-box {
    display: none;
  }
  .cid-uw0beSytJm .mbr-section-title,
  .cid-uw0beSytJm .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0beSytJm .box {
    display: none;
  }
  .cid-uw0beSytJm .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0beSytJm .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0beSytJm .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0beSytJm .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0beSytJm .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0beSytJm .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0beST7RH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0beTctq2 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uw0beTctq2 h2 {
  text-align: left;
}
.cid-uw0beTctq2 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0beTctq2 p {
  color: #767676;
  text-align: left;
}
.cid-uw0beTctq2 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0beTctq2 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0beTctq2 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0beTctq2 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0beTctq2 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0beTctq2 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0beTctq2 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0beTctq2 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0beTctq2 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0beTctq2 .mbr-text {
  color: #232323;
}
.cid-uw0beTxWFh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uw0beTxWFh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0beTxWFh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0beTxWFh .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uw0beTxWFh .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uw0beTxWFh .container {
    padding: 0 26px;
  }
}
.cid-uw0beTxWFh .row {
  justify-content: center;
}
.cid-uw0beTxWFh .item {
  margin-bottom: 32px;
}
.cid-uw0beTxWFh .item a {
  display: block;
}
.cid-uw0beTxWFh .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uw0beTxWFh .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uw0beTxWFh .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uw0beTxWFh .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-uw0beTxWFh .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uw0beTxWFh .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uw0beTxWFh .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-uw0beTxWFh .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uw0beTxWFh .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uw0beTxWFh .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uw0beTxWFh .item-title {
  color: #ffffff;
}
.cid-uw0beTxWFh .mbr-date {
  color: #cacaca;
}
.cid-uw0beTxWFh .mbr-desc {
  color: #cacaca;
}
.cid-uw0beTSrHV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw0beTSrHV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0beTSrHV .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-uw0beTSrHV .container {
    padding: 0 16px;
  }
}
.cid-uw0beTSrHV .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uw0beTSrHV .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0beTSrHV .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uw0beTSrHV .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0beTSrHV .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uw0beTSrHV .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uw0beTSrHV .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uw0beTSrHV .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uw0beTSrHV .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uw0beTSrHV .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-uw0beTSrHV .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uw0beTSrHV .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uw0beTSrHV .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uw0beTSrHV .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uw0beTSrHV .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uw0beTSrHV .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uw0beTSrHV .dragArea.row .form-group .form-control:hover,
.cid-uw0beTSrHV .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uw0beTSrHV .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uw0beTSrHV .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uw0beTSrHV .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uw0beTSrHV .mbr-title {
  color: #ffffff;
}
.cid-uw0beTSrHV .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uw0beTSrHV .mbr-section-subtitle {
  color: #08323C;
}
.cid-uw0beTSrHV .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uw0beTSrHV .list {
  color: #08323C;
}
.cid-uw0beTSrHV label {
  color: #08323C;
}
.cid-uw0beTSrHV H3 {
  color: #000000;
}
.cid-uw0beTSrHV P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uw0brrBp8S {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0brrBp8S H1 {
  text-align: center;
}
.cid-uDmz26gIvc {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmz26gIvc .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmz26gIvc .video-block {
    width: 100% !important;
  }
}
.cid-uw0brrXwtr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0brsczY3 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uw0brsczY3 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0brsczY3 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0brsczY3 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0brsczY3 .box {
  left: 20%;
}
.cid-uw0brsczY3 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uw0brsczY3 .mbr-section-text,
.cid-uw0brsczY3 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uw0brsczY3 .text-box {
    display: none;
  }
  .cid-uw0brsczY3 .mbr-section-title,
  .cid-uw0brsczY3 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0brsczY3 .box {
    display: none;
  }
  .cid-uw0brsczY3 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0brsczY3 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0brsczY3 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0brsczY3 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0brsczY3 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0brsczY3 .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0brsvwkL {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0brsvwkL H1 {
  text-align: center;
}
.cid-uw0brsMRBv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0brt1nbn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0brt1nbn h2 {
  text-align: left;
}
.cid-uw0brt1nbn h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0brt1nbn p {
  color: #767676;
  text-align: left;
}
.cid-uw0brt1nbn .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0brt1nbn .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0brt1nbn .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0brt1nbn .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0brt1nbn .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0brt1nbn .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0brt1nbn .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0brt1nbn .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0brt1nbn .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0brt1nbn H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uw0brt1nbn P {
  color: #ffffff;
  text-align: left;
}
.cid-uw0brt1nbn H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uw0brtmEV8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0brtmEV8 H1 {
  color: #000000;
}
.cid-uxfuroi49b {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfuroi49b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfuroi49b .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfuroi49b .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfuroi49b .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfuroi49b .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfuroi49b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfuroi49b .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfuroi49b .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfuroi49b .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfuroi49b .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfuroi49b .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-uxfuroi49b .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfuroi49b .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfuroi49b .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfuroi49b .mbr-text,
.cid-uxfuroi49b .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0bru5LtX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0bru5LtX H1 {
  color: #000000;
}
.cid-uxfus4oILz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfus4oILz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfus4oILz .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfus4oILz .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfus4oILz .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfus4oILz .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfus4oILz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfus4oILz .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfus4oILz .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfus4oILz .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfus4oILz .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfus4oILz .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-uxfus4oILz .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfus4oILz .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfus4oILz .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfus4oILz .mbr-text,
.cid-uxfus4oILz .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfusNHLVT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfusNHLVT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfusNHLVT .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfusNHLVT .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfusNHLVT .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfusNHLVT .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfusNHLVT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfusNHLVT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfusNHLVT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfusNHLVT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfusNHLVT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfusNHLVT .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-uxfusNHLVT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfusNHLVT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfusNHLVT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfusNHLVT .mbr-text,
.cid-uxfusNHLVT .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0brvhVzO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0brvhVzO H1 {
  color: #000000;
}
.cid-uw0brvzAWg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uw0brvzAWg h2 {
  text-align: left;
}
.cid-uw0brvzAWg h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0brvzAWg p {
  color: #767676;
  text-align: left;
}
.cid-uw0brvzAWg .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0brvzAWg .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0brvzAWg .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0brvzAWg .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0brvzAWg .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0brvzAWg .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0brvzAWg .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uw0brvzAWg .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uw0brvzAWg .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uw0brvzAWg .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uw0brvzAWg .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0brvUvev {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0brvUvev H1 {
  color: #000000;
}
.cid-uw0brwfk4u {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uw0brwfk4u .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0brwfk4u .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0brwfk4u .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0brwfk4u .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uw0brwfk4u .box {
  right: 20%;
}
.cid-uw0brwfk4u .text-box {
  right: 0;
}
.cid-uw0brwfk4u .mbr-section-title,
.cid-uw0brwfk4u .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uw0brwfk4u .text-box {
    display: none;
  }
  .cid-uw0brwfk4u .mbr-section-title,
  .cid-uw0brwfk4u .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0brwfk4u .box {
    display: none;
  }
  .cid-uw0brwfk4u .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0brwfk4u .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0brwfk4u .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0brwfk4u .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0brwfk4u .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0brwfk4u .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0brwAPBS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0brwTXmD {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uw0brwTXmD h2 {
  text-align: left;
}
.cid-uw0brwTXmD h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0brwTXmD p {
  color: #767676;
  text-align: left;
}
.cid-uw0brwTXmD .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0brwTXmD .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0brwTXmD .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0brwTXmD .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0brwTXmD .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0brwTXmD .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0brwTXmD .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0brwTXmD .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0brwTXmD .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0brwTXmD .mbr-text {
  color: #232323;
}
.cid-uw0brxgRML {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uw0brxgRML .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0brxgRML .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0brxgRML .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uw0brxgRML .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uw0brxgRML .container {
    padding: 0 26px;
  }
}
.cid-uw0brxgRML .row {
  justify-content: center;
}
.cid-uw0brxgRML .item {
  margin-bottom: 32px;
}
.cid-uw0brxgRML .item a {
  display: block;
}
.cid-uw0brxgRML .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uw0brxgRML .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uw0brxgRML .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uw0brxgRML .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-uw0brxgRML .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uw0brxgRML .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uw0brxgRML .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-uw0brxgRML .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uw0brxgRML .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uw0brxgRML .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uw0brxgRML .item-title {
  color: #ffffff;
}
.cid-uw0brxgRML .mbr-date {
  color: #cacaca;
}
.cid-uw0brxgRML .mbr-desc {
  color: #cacaca;
}
.cid-uw0brxBuKP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw0brxBuKP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0brxBuKP .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-uw0brxBuKP .container {
    padding: 0 16px;
  }
}
.cid-uw0brxBuKP .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uw0brxBuKP .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0brxBuKP .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uw0brxBuKP .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0brxBuKP .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uw0brxBuKP .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uw0brxBuKP .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uw0brxBuKP .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uw0brxBuKP .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uw0brxBuKP .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-uw0brxBuKP .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uw0brxBuKP .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uw0brxBuKP .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uw0brxBuKP .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uw0brxBuKP .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uw0brxBuKP .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uw0brxBuKP .dragArea.row .form-group .form-control:hover,
.cid-uw0brxBuKP .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uw0brxBuKP .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uw0brxBuKP .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uw0brxBuKP .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uw0brxBuKP .mbr-title {
  color: #ffffff;
}
.cid-uw0brxBuKP .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uw0brxBuKP .mbr-section-subtitle {
  color: #08323C;
}
.cid-uw0brxBuKP .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uw0brxBuKP .list {
  color: #08323C;
}
.cid-uw0brxBuKP label {
  color: #08323C;
}
.cid-uw0brxBuKP H3 {
  color: #000000;
}
.cid-uw0brxBuKP P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uw0bWrDpBx {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0bWrDpBx H1 {
  text-align: center;
}
.cid-uDmz4JFHfh {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmz4JFHfh .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmz4JFHfh .video-block {
    width: 100% !important;
  }
}
.cid-uw0bWrXDLz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0bWs66lF {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uw0bWs66lF .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0bWs66lF .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0bWs66lF .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0bWs66lF .box {
  left: 20%;
}
.cid-uw0bWs66lF .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uw0bWs66lF .mbr-section-text,
.cid-uw0bWs66lF .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uw0bWs66lF .text-box {
    display: none;
  }
  .cid-uw0bWs66lF .mbr-section-title,
  .cid-uw0bWs66lF .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0bWs66lF .box {
    display: none;
  }
  .cid-uw0bWs66lF .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0bWs66lF .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0bWs66lF .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0bWs66lF .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0bWs66lF .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0bWs66lF .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0bWsgfZJ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0bWsgfZJ H1 {
  text-align: center;
}
.cid-uw0bWsopqU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0bWsxENk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0bWsxENk h2 {
  text-align: left;
}
.cid-uw0bWsxENk h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0bWsxENk p {
  color: #767676;
  text-align: left;
}
.cid-uw0bWsxENk .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0bWsxENk .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0bWsxENk .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0bWsxENk .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0bWsxENk .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0bWsxENk .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0bWsxENk .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0bWsxENk .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0bWsxENk .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0bWsxENk H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uw0bWsxENk P {
  color: #ffffff;
  text-align: left;
}
.cid-uw0bWsxENk H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uw0bWsJiX6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0bWsJiX6 H1 {
  color: #000000;
}
.cid-uxfuDu3V2G {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfuDu3V2G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfuDu3V2G .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfuDu3V2G .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfuDu3V2G .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfuDu3V2G .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfuDu3V2G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfuDu3V2G .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfuDu3V2G .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfuDu3V2G .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfuDu3V2G .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfuDu3V2G .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-uxfuDu3V2G .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfuDu3V2G .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfuDu3V2G .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfuDu3V2G .mbr-text,
.cid-uxfuDu3V2G .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0bWtnWgE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0bWtnWgE H1 {
  color: #000000;
}
.cid-uxfuEaLYBK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfuEaLYBK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfuEaLYBK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfuEaLYBK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfuEaLYBK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfuEaLYBK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfuEaLYBK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfuEaLYBK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfuEaLYBK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfuEaLYBK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfuEaLYBK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfuEaLYBK .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-uxfuEaLYBK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfuEaLYBK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfuEaLYBK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfuEaLYBK .mbr-text,
.cid-uxfuEaLYBK .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfuEP6NGI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfuEP6NGI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfuEP6NGI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfuEP6NGI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfuEP6NGI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfuEP6NGI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfuEP6NGI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfuEP6NGI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfuEP6NGI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfuEP6NGI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfuEP6NGI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfuEP6NGI .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-uxfuEP6NGI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfuEP6NGI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfuEP6NGI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfuEP6NGI .mbr-text,
.cid-uxfuEP6NGI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0bWulFwA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0bWulFwA H1 {
  color: #000000;
}
.cid-uw0bWuy4Zy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uw0bWuy4Zy h2 {
  text-align: left;
}
.cid-uw0bWuy4Zy h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0bWuy4Zy p {
  color: #767676;
  text-align: left;
}
.cid-uw0bWuy4Zy .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0bWuy4Zy .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0bWuy4Zy .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0bWuy4Zy .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0bWuy4Zy .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0bWuy4Zy .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0bWuy4Zy .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uw0bWuy4Zy .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uw0bWuy4Zy .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uw0bWuy4Zy .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uw0bWuy4Zy .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0bWuTrMd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0bWuTrMd H1 {
  color: #000000;
}
.cid-uw0bWv6YxJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uw0bWv6YxJ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0bWv6YxJ .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0bWv6YxJ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0bWv6YxJ .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uw0bWv6YxJ .box {
  right: 20%;
}
.cid-uw0bWv6YxJ .text-box {
  right: 0;
}
.cid-uw0bWv6YxJ .mbr-section-title,
.cid-uw0bWv6YxJ .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uw0bWv6YxJ .text-box {
    display: none;
  }
  .cid-uw0bWv6YxJ .mbr-section-title,
  .cid-uw0bWv6YxJ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0bWv6YxJ .box {
    display: none;
  }
  .cid-uw0bWv6YxJ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0bWv6YxJ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0bWv6YxJ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0bWv6YxJ .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0bWv6YxJ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0bWv6YxJ .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0bWvj4Xt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0bWvwkyV {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uw0bWvwkyV h2 {
  text-align: left;
}
.cid-uw0bWvwkyV h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0bWvwkyV p {
  color: #767676;
  text-align: left;
}
.cid-uw0bWvwkyV .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0bWvwkyV .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0bWvwkyV .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0bWvwkyV .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0bWvwkyV .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0bWvwkyV .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0bWvwkyV .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0bWvwkyV .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0bWvwkyV .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0bWvwkyV .mbr-text {
  color: #232323;
}
.cid-uw0bWvQRwr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uw0bWvQRwr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0bWvQRwr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0bWvQRwr .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uw0bWvQRwr .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uw0bWvQRwr .container {
    padding: 0 26px;
  }
}
.cid-uw0bWvQRwr .row {
  justify-content: center;
}
.cid-uw0bWvQRwr .item {
  margin-bottom: 32px;
}
.cid-uw0bWvQRwr .item a {
  display: block;
}
.cid-uw0bWvQRwr .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uw0bWvQRwr .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uw0bWvQRwr .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uw0bWvQRwr .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-uw0bWvQRwr .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uw0bWvQRwr .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uw0bWvQRwr .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-uw0bWvQRwr .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uw0bWvQRwr .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uw0bWvQRwr .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uw0bWvQRwr .item-title {
  color: #ffffff;
}
.cid-uw0bWvQRwr .mbr-date {
  color: #cacaca;
}
.cid-uw0bWvQRwr .mbr-desc {
  color: #cacaca;
}
.cid-uw0bWw4m7b {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw0bWw4m7b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0bWw4m7b .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-uw0bWw4m7b .container {
    padding: 0 16px;
  }
}
.cid-uw0bWw4m7b .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uw0bWw4m7b .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0bWw4m7b .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uw0bWw4m7b .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0bWw4m7b .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uw0bWw4m7b .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uw0bWw4m7b .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uw0bWw4m7b .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uw0bWw4m7b .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uw0bWw4m7b .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-uw0bWw4m7b .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uw0bWw4m7b .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uw0bWw4m7b .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uw0bWw4m7b .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uw0bWw4m7b .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uw0bWw4m7b .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uw0bWw4m7b .dragArea.row .form-group .form-control:hover,
.cid-uw0bWw4m7b .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uw0bWw4m7b .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uw0bWw4m7b .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uw0bWw4m7b .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uw0bWw4m7b .mbr-title {
  color: #ffffff;
}
.cid-uw0bWw4m7b .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uw0bWw4m7b .mbr-section-subtitle {
  color: #08323C;
}
.cid-uw0bWw4m7b .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uw0bWw4m7b .list {
  color: #08323C;
}
.cid-uw0bWw4m7b label {
  color: #08323C;
}
.cid-uw0bWw4m7b H3 {
  color: #000000;
}
.cid-uw0bWw4m7b P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uw0cdMOdSd {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0cdMOdSd H1 {
  text-align: center;
}
.cid-uDmz82Dnpy {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmz82Dnpy .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmz82Dnpy .video-block {
    width: 100% !important;
  }
}
.cid-uw0cdN6Bno {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0cdNm6eY {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uw0cdNm6eY .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0cdNm6eY .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0cdNm6eY .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0cdNm6eY .box {
  left: 20%;
}
.cid-uw0cdNm6eY .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uw0cdNm6eY .mbr-section-text,
.cid-uw0cdNm6eY .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uw0cdNm6eY .text-box {
    display: none;
  }
  .cid-uw0cdNm6eY .mbr-section-title,
  .cid-uw0cdNm6eY .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0cdNm6eY .box {
    display: none;
  }
  .cid-uw0cdNm6eY .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0cdNm6eY .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0cdNm6eY .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0cdNm6eY .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0cdNm6eY .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0cdNm6eY .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0cdNzesj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0cdNzesj H1 {
  text-align: center;
}
.cid-uw0cdNLObr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0cdNVHWh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0cdNVHWh h2 {
  text-align: left;
}
.cid-uw0cdNVHWh h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0cdNVHWh p {
  color: #767676;
  text-align: left;
}
.cid-uw0cdNVHWh .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0cdNVHWh .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0cdNVHWh .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0cdNVHWh .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0cdNVHWh .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0cdNVHWh .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0cdNVHWh .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0cdNVHWh .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0cdNVHWh .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0cdNVHWh H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uw0cdNVHWh P {
  color: #ffffff;
  text-align: left;
}
.cid-uw0cdNVHWh H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uw0cdOfJxv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0cdOfJxv H1 {
  color: #000000;
}
.cid-uxfuMKLJTO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfuMKLJTO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfuMKLJTO .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfuMKLJTO .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfuMKLJTO .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfuMKLJTO .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfuMKLJTO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfuMKLJTO .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfuMKLJTO .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfuMKLJTO .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfuMKLJTO .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfuMKLJTO .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-uxfuMKLJTO .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfuMKLJTO .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfuMKLJTO .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfuMKLJTO .mbr-text,
.cid-uxfuMKLJTO .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0cdOMldW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0cdOMldW H1 {
  color: #000000;
}
.cid-uxfuNCpUBp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfuNCpUBp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfuNCpUBp .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfuNCpUBp .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfuNCpUBp .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfuNCpUBp .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfuNCpUBp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfuNCpUBp .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfuNCpUBp .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfuNCpUBp .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfuNCpUBp .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfuNCpUBp .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-uxfuNCpUBp .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfuNCpUBp .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfuNCpUBp .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfuNCpUBp .mbr-text,
.cid-uxfuNCpUBp .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfuOvoca3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfuOvoca3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfuOvoca3 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfuOvoca3 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfuOvoca3 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfuOvoca3 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfuOvoca3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfuOvoca3 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfuOvoca3 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfuOvoca3 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfuOvoca3 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfuOvoca3 .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-uxfuOvoca3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfuOvoca3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfuOvoca3 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfuOvoca3 .mbr-text,
.cid-uxfuOvoca3 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0cdQ7S4i {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0cdQ7S4i H1 {
  color: #000000;
}
.cid-uw0cdQq7BZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uw0cdQq7BZ h2 {
  text-align: left;
}
.cid-uw0cdQq7BZ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0cdQq7BZ p {
  color: #767676;
  text-align: left;
}
.cid-uw0cdQq7BZ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0cdQq7BZ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0cdQq7BZ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0cdQq7BZ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0cdQq7BZ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0cdQq7BZ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0cdQq7BZ .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uw0cdQq7BZ .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uw0cdQq7BZ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uw0cdQq7BZ .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uw0cdQq7BZ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0cdQFFqh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0cdQFFqh H1 {
  color: #000000;
}
.cid-uw0cdQRXXD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uw0cdQRXXD .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0cdQRXXD .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0cdQRXXD .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0cdQRXXD .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uw0cdQRXXD .box {
  right: 20%;
}
.cid-uw0cdQRXXD .text-box {
  right: 0;
}
.cid-uw0cdQRXXD .mbr-section-title,
.cid-uw0cdQRXXD .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uw0cdQRXXD .text-box {
    display: none;
  }
  .cid-uw0cdQRXXD .mbr-section-title,
  .cid-uw0cdQRXXD .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0cdQRXXD .box {
    display: none;
  }
  .cid-uw0cdQRXXD .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0cdQRXXD .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0cdQRXXD .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0cdQRXXD .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0cdQRXXD .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0cdQRXXD .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0cdRa5gP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0cdRtf7Q {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uw0cdRtf7Q h2 {
  text-align: left;
}
.cid-uw0cdRtf7Q h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0cdRtf7Q p {
  color: #767676;
  text-align: left;
}
.cid-uw0cdRtf7Q .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0cdRtf7Q .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0cdRtf7Q .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0cdRtf7Q .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0cdRtf7Q .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0cdRtf7Q .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0cdRtf7Q .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0cdRtf7Q .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0cdRtf7Q .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0cdRtf7Q .mbr-text {
  color: #232323;
}
.cid-uw0cdRQfPG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uw0cdRQfPG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0cdRQfPG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0cdRQfPG .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uw0cdRQfPG .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uw0cdRQfPG .container {
    padding: 0 26px;
  }
}
.cid-uw0cdRQfPG .row {
  justify-content: center;
}
.cid-uw0cdRQfPG .item {
  margin-bottom: 32px;
}
.cid-uw0cdRQfPG .item a {
  display: block;
}
.cid-uw0cdRQfPG .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uw0cdRQfPG .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uw0cdRQfPG .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uw0cdRQfPG .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-uw0cdRQfPG .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uw0cdRQfPG .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uw0cdRQfPG .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-uw0cdRQfPG .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uw0cdRQfPG .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uw0cdRQfPG .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uw0cdRQfPG .item-title {
  color: #ffffff;
}
.cid-uw0cdRQfPG .mbr-date {
  color: #cacaca;
}
.cid-uw0cdRQfPG .mbr-desc {
  color: #cacaca;
}
.cid-uw0cdS7GGm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw0cdS7GGm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0cdS7GGm .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-uw0cdS7GGm .container {
    padding: 0 16px;
  }
}
.cid-uw0cdS7GGm .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uw0cdS7GGm .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0cdS7GGm .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uw0cdS7GGm .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0cdS7GGm .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uw0cdS7GGm .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uw0cdS7GGm .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uw0cdS7GGm .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uw0cdS7GGm .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uw0cdS7GGm .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-uw0cdS7GGm .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uw0cdS7GGm .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uw0cdS7GGm .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uw0cdS7GGm .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uw0cdS7GGm .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uw0cdS7GGm .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uw0cdS7GGm .dragArea.row .form-group .form-control:hover,
.cid-uw0cdS7GGm .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uw0cdS7GGm .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uw0cdS7GGm .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uw0cdS7GGm .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uw0cdS7GGm .mbr-title {
  color: #ffffff;
}
.cid-uw0cdS7GGm .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uw0cdS7GGm .mbr-section-subtitle {
  color: #08323C;
}
.cid-uw0cdS7GGm .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uw0cdS7GGm .list {
  color: #08323C;
}
.cid-uw0cdS7GGm label {
  color: #08323C;
}
.cid-uw0cdS7GGm H3 {
  color: #000000;
}
.cid-uw0cdS7GGm P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uw0csZyc4H {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0csZyc4H H1 {
  text-align: center;
}
.cid-uDmzbg7SU7 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmzbg7SU7 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmzbg7SU7 .video-block {
    width: 100% !important;
  }
}
.cid-uw0ct0G3q3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0ct0WTDO {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uw0ct0WTDO .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0ct0WTDO .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0ct0WTDO .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0ct0WTDO .box {
  left: 20%;
}
.cid-uw0ct0WTDO .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uw0ct0WTDO .mbr-section-text,
.cid-uw0ct0WTDO .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uw0ct0WTDO .text-box {
    display: none;
  }
  .cid-uw0ct0WTDO .mbr-section-title,
  .cid-uw0ct0WTDO .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0ct0WTDO .box {
    display: none;
  }
  .cid-uw0ct0WTDO .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0ct0WTDO .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0ct0WTDO .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0ct0WTDO .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0ct0WTDO .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0ct0WTDO .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0ct17mrC {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0ct17mrC H1 {
  text-align: center;
}
.cid-uw0ct1gyUX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0ct1owrQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0ct1owrQ h2 {
  text-align: left;
}
.cid-uw0ct1owrQ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0ct1owrQ p {
  color: #767676;
  text-align: left;
}
.cid-uw0ct1owrQ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0ct1owrQ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0ct1owrQ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0ct1owrQ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0ct1owrQ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0ct1owrQ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0ct1owrQ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0ct1owrQ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0ct1owrQ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0ct1owrQ H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uw0ct1owrQ P {
  color: #ffffff;
  text-align: left;
}
.cid-uw0ct1owrQ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uw0ct1Cgz4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0ct1Cgz4 H1 {
  color: #000000;
}
.cid-uxfv0z2fXb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfv0z2fXb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfv0z2fXb .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfv0z2fXb .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfv0z2fXb .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfv0z2fXb .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfv0z2fXb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfv0z2fXb .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfv0z2fXb .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfv0z2fXb .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfv0z2fXb .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfv0z2fXb .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-uxfv0z2fXb .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfv0z2fXb .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfv0z2fXb .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfv0z2fXb .mbr-text,
.cid-uxfv0z2fXb .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0ct31MjQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0ct31MjQ H1 {
  color: #000000;
}
.cid-uxfv19Rxuc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfv19Rxuc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfv19Rxuc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfv19Rxuc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfv19Rxuc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfv19Rxuc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfv19Rxuc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfv19Rxuc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfv19Rxuc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfv19Rxuc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfv19Rxuc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfv19Rxuc .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-uxfv19Rxuc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfv19Rxuc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfv19Rxuc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfv19Rxuc .mbr-text,
.cid-uxfv19Rxuc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfv7o2ou9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfv7o2ou9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfv7o2ou9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfv7o2ou9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfv7o2ou9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfv7o2ou9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfv7o2ou9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfv7o2ou9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfv7o2ou9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfv7o2ou9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfv7o2ou9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfv7o2ou9 .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-uxfv7o2ou9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfv7o2ou9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfv7o2ou9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfv7o2ou9 .mbr-text,
.cid-uxfv7o2ou9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0ct4a5mI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0ct4a5mI H1 {
  color: #000000;
}
.cid-uw0ct4qyQL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uw0ct4qyQL h2 {
  text-align: left;
}
.cid-uw0ct4qyQL h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0ct4qyQL p {
  color: #767676;
  text-align: left;
}
.cid-uw0ct4qyQL .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0ct4qyQL .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0ct4qyQL .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0ct4qyQL .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0ct4qyQL .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0ct4qyQL .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0ct4qyQL .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uw0ct4qyQL .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uw0ct4qyQL .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uw0ct4qyQL .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uw0ct4qyQL .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0ct4KIdq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0ct4KIdq H1 {
  color: #000000;
}
.cid-uw0ct4XTxX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uw0ct4XTxX .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0ct4XTxX .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0ct4XTxX .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0ct4XTxX .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uw0ct4XTxX .box {
  right: 20%;
}
.cid-uw0ct4XTxX .text-box {
  right: 0;
}
.cid-uw0ct4XTxX .mbr-section-title,
.cid-uw0ct4XTxX .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uw0ct4XTxX .text-box {
    display: none;
  }
  .cid-uw0ct4XTxX .mbr-section-title,
  .cid-uw0ct4XTxX .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0ct4XTxX .box {
    display: none;
  }
  .cid-uw0ct4XTxX .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0ct4XTxX .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0ct4XTxX .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0ct4XTxX .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0ct4XTxX .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0ct4XTxX .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0ct5d2wn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0ct5XGlC {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uw0ct5XGlC h2 {
  text-align: left;
}
.cid-uw0ct5XGlC h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0ct5XGlC p {
  color: #767676;
  text-align: left;
}
.cid-uw0ct5XGlC .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0ct5XGlC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0ct5XGlC .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0ct5XGlC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0ct5XGlC .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0ct5XGlC .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0ct5XGlC .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0ct5XGlC .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0ct5XGlC .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0ct5XGlC .mbr-text {
  color: #232323;
}
.cid-uw0ct6TmKQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uw0ct6TmKQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0ct6TmKQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0ct6TmKQ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uw0ct6TmKQ .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uw0ct6TmKQ .container {
    padding: 0 26px;
  }
}
.cid-uw0ct6TmKQ .row {
  justify-content: center;
}
.cid-uw0ct6TmKQ .item {
  margin-bottom: 32px;
}
.cid-uw0ct6TmKQ .item a {
  display: block;
}
.cid-uw0ct6TmKQ .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uw0ct6TmKQ .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uw0ct6TmKQ .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uw0ct6TmKQ .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-uw0ct6TmKQ .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uw0ct6TmKQ .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uw0ct6TmKQ .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-uw0ct6TmKQ .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uw0ct6TmKQ .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uw0ct6TmKQ .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uw0ct6TmKQ .item-title {
  color: #ffffff;
}
.cid-uw0ct6TmKQ .mbr-date {
  color: #cacaca;
}
.cid-uw0ct6TmKQ .mbr-desc {
  color: #cacaca;
}
.cid-uw0ct7mGCC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw0ct7mGCC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0ct7mGCC .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-uw0ct7mGCC .container {
    padding: 0 16px;
  }
}
.cid-uw0ct7mGCC .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uw0ct7mGCC .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0ct7mGCC .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uw0ct7mGCC .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0ct7mGCC .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uw0ct7mGCC .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uw0ct7mGCC .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uw0ct7mGCC .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uw0ct7mGCC .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uw0ct7mGCC .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-uw0ct7mGCC .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uw0ct7mGCC .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uw0ct7mGCC .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uw0ct7mGCC .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uw0ct7mGCC .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uw0ct7mGCC .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uw0ct7mGCC .dragArea.row .form-group .form-control:hover,
.cid-uw0ct7mGCC .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uw0ct7mGCC .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uw0ct7mGCC .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uw0ct7mGCC .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uw0ct7mGCC .mbr-title {
  color: #ffffff;
}
.cid-uw0ct7mGCC .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uw0ct7mGCC .mbr-section-subtitle {
  color: #08323C;
}
.cid-uw0ct7mGCC .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uw0ct7mGCC .list {
  color: #08323C;
}
.cid-uw0ct7mGCC label {
  color: #08323C;
}
.cid-uw0ct7mGCC H3 {
  color: #000000;
}
.cid-uw0ct7mGCC P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uw0dOQTQuv {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0dOQTQuv H1 {
  text-align: center;
}
.cid-uDmzemw7gA {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmzemw7gA .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmzemw7gA .video-block {
    width: 100% !important;
  }
}
.cid-uw0dORbKzE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0dORom5y {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uw0dORom5y .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0dORom5y .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0dORom5y .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0dORom5y .box {
  left: 20%;
}
.cid-uw0dORom5y .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uw0dORom5y .mbr-section-text,
.cid-uw0dORom5y .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uw0dORom5y .text-box {
    display: none;
  }
  .cid-uw0dORom5y .mbr-section-title,
  .cid-uw0dORom5y .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0dORom5y .box {
    display: none;
  }
  .cid-uw0dORom5y .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0dORom5y .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0dORom5y .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0dORom5y .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0dORom5y .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0dORom5y .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0dORzpc2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0dORzpc2 H1 {
  text-align: center;
}
.cid-uw0dORK8rw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0dORXtd9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0dORXtd9 h2 {
  text-align: left;
}
.cid-uw0dORXtd9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0dORXtd9 p {
  color: #767676;
  text-align: left;
}
.cid-uw0dORXtd9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0dORXtd9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0dORXtd9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0dORXtd9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0dORXtd9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0dORXtd9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0dORXtd9 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0dORXtd9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0dORXtd9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0dORXtd9 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uw0dORXtd9 P {
  color: #ffffff;
  text-align: left;
}
.cid-uw0dORXtd9 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uw0dOSc9gX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0dOSc9gX H1 {
  color: #000000;
}
.cid-uxfvjaASZR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfvjaASZR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfvjaASZR .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfvjaASZR .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfvjaASZR .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfvjaASZR .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfvjaASZR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfvjaASZR .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfvjaASZR .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfvjaASZR .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfvjaASZR .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfvjaASZR .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-uxfvjaASZR .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfvjaASZR .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfvjaASZR .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfvjaASZR .mbr-text,
.cid-uxfvjaASZR .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0dOSNyzL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0dOSNyzL H1 {
  color: #000000;
}
.cid-uxfvjZPW4B {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfvjZPW4B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfvjZPW4B .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfvjZPW4B .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfvjZPW4B .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfvjZPW4B .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfvjZPW4B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfvjZPW4B .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfvjZPW4B .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfvjZPW4B .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfvjZPW4B .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfvjZPW4B .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-uxfvjZPW4B .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfvjZPW4B .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfvjZPW4B .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfvjZPW4B .mbr-text,
.cid-uxfvjZPW4B .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfvkQfX8V {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfvkQfX8V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfvkQfX8V .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfvkQfX8V .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfvkQfX8V .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfvkQfX8V .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfvkQfX8V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfvkQfX8V .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfvkQfX8V .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfvkQfX8V .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfvkQfX8V .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfvkQfX8V .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-uxfvkQfX8V .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfvkQfX8V .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfvkQfX8V .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfvkQfX8V .mbr-text,
.cid-uxfvkQfX8V .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0dOTWjA6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0dOTWjA6 H1 {
  color: #000000;
}
.cid-uw0dOUduFJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uw0dOUduFJ h2 {
  text-align: left;
}
.cid-uw0dOUduFJ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0dOUduFJ p {
  color: #767676;
  text-align: left;
}
.cid-uw0dOUduFJ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0dOUduFJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0dOUduFJ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0dOUduFJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0dOUduFJ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0dOUduFJ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0dOUduFJ .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uw0dOUduFJ .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uw0dOUduFJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uw0dOUduFJ .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uw0dOUduFJ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0dOUtw8i {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0dOUtw8i H1 {
  color: #000000;
}
.cid-uw0dOUIR69 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uw0dOUIR69 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0dOUIR69 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0dOUIR69 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0dOUIR69 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uw0dOUIR69 .box {
  right: 20%;
}
.cid-uw0dOUIR69 .text-box {
  right: 0;
}
.cid-uw0dOUIR69 .mbr-section-title,
.cid-uw0dOUIR69 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uw0dOUIR69 .text-box {
    display: none;
  }
  .cid-uw0dOUIR69 .mbr-section-title,
  .cid-uw0dOUIR69 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0dOUIR69 .box {
    display: none;
  }
  .cid-uw0dOUIR69 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0dOUIR69 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0dOUIR69 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0dOUIR69 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0dOUIR69 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0dOUIR69 .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0dOV0Qqs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0dOVeGpb {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uw0dOVeGpb h2 {
  text-align: left;
}
.cid-uw0dOVeGpb h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0dOVeGpb p {
  color: #767676;
  text-align: left;
}
.cid-uw0dOVeGpb .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0dOVeGpb .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0dOVeGpb .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0dOVeGpb .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0dOVeGpb .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0dOVeGpb .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0dOVeGpb .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0dOVeGpb .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0dOVeGpb .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0dOVeGpb .mbr-text {
  color: #232323;
}
.cid-uw0dOVyvqm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uw0dOVyvqm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0dOVyvqm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0dOVyvqm .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uw0dOVyvqm .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uw0dOVyvqm .container {
    padding: 0 26px;
  }
}
.cid-uw0dOVyvqm .row {
  justify-content: center;
}
.cid-uw0dOVyvqm .item {
  margin-bottom: 32px;
}
.cid-uw0dOVyvqm .item a {
  display: block;
}
.cid-uw0dOVyvqm .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uw0dOVyvqm .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uw0dOVyvqm .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uw0dOVyvqm .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-uw0dOVyvqm .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uw0dOVyvqm .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uw0dOVyvqm .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-uw0dOVyvqm .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uw0dOVyvqm .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uw0dOVyvqm .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uw0dOVyvqm .item-title {
  color: #ffffff;
}
.cid-uw0dOVyvqm .mbr-date {
  color: #cacaca;
}
.cid-uw0dOVyvqm .mbr-desc {
  color: #cacaca;
}
.cid-uw0dOVP4Pj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw0dOVP4Pj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0dOVP4Pj .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-uw0dOVP4Pj .container {
    padding: 0 16px;
  }
}
.cid-uw0dOVP4Pj .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uw0dOVP4Pj .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0dOVP4Pj .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uw0dOVP4Pj .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0dOVP4Pj .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uw0dOVP4Pj .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uw0dOVP4Pj .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uw0dOVP4Pj .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uw0dOVP4Pj .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uw0dOVP4Pj .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-uw0dOVP4Pj .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uw0dOVP4Pj .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uw0dOVP4Pj .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uw0dOVP4Pj .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uw0dOVP4Pj .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uw0dOVP4Pj .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uw0dOVP4Pj .dragArea.row .form-group .form-control:hover,
.cid-uw0dOVP4Pj .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uw0dOVP4Pj .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uw0dOVP4Pj .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uw0dOVP4Pj .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uw0dOVP4Pj .mbr-title {
  color: #ffffff;
}
.cid-uw0dOVP4Pj .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uw0dOVP4Pj .mbr-section-subtitle {
  color: #08323C;
}
.cid-uw0dOVP4Pj .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uw0dOVP4Pj .list {
  color: #08323C;
}
.cid-uw0dOVP4Pj label {
  color: #08323C;
}
.cid-uw0dOVP4Pj H3 {
  color: #000000;
}
.cid-uw0dOVP4Pj P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uw0e1opEvK {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0e1opEvK H1 {
  text-align: center;
}
.cid-uDmzxqK2zk {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmzxqK2zk .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmzxqK2zk .video-block {
    width: 100% !important;
  }
}
.cid-uw0e1oEJde {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0e1oPBIt {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uw0e1oPBIt .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0e1oPBIt .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0e1oPBIt .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0e1oPBIt .box {
  left: 20%;
}
.cid-uw0e1oPBIt .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uw0e1oPBIt .mbr-section-text,
.cid-uw0e1oPBIt .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uw0e1oPBIt .text-box {
    display: none;
  }
  .cid-uw0e1oPBIt .mbr-section-title,
  .cid-uw0e1oPBIt .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0e1oPBIt .box {
    display: none;
  }
  .cid-uw0e1oPBIt .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0e1oPBIt .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0e1oPBIt .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0e1oPBIt .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0e1oPBIt .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0e1oPBIt .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0e1oZBhA {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0e1oZBhA H1 {
  text-align: center;
}
.cid-uw0e1p8sbV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0e1pkAEb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0e1pkAEb h2 {
  text-align: left;
}
.cid-uw0e1pkAEb h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0e1pkAEb p {
  color: #767676;
  text-align: left;
}
.cid-uw0e1pkAEb .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0e1pkAEb .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0e1pkAEb .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0e1pkAEb .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0e1pkAEb .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0e1pkAEb .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0e1pkAEb .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0e1pkAEb .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0e1pkAEb .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0e1pkAEb H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uw0e1pkAEb P {
  color: #ffffff;
  text-align: left;
}
.cid-uw0e1pkAEb H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uw0e1pCSVe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0e1pCSVe H1 {
  color: #000000;
}
.cid-uxfvuowWQd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfvuowWQd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfvuowWQd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfvuowWQd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfvuowWQd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfvuowWQd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfvuowWQd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfvuowWQd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfvuowWQd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfvuowWQd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfvuowWQd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfvuowWQd .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-uxfvuowWQd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfvuowWQd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfvuowWQd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfvuowWQd .mbr-text,
.cid-uxfvuowWQd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0e1q7cYA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0e1q7cYA H1 {
  color: #000000;
}
.cid-uxfvv6il2U {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfvv6il2U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfvv6il2U .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfvv6il2U .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfvv6il2U .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfvv6il2U .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfvv6il2U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfvv6il2U .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfvv6il2U .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfvv6il2U .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfvv6il2U .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfvv6il2U .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-uxfvv6il2U .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfvv6il2U .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfvv6il2U .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfvv6il2U .mbr-text,
.cid-uxfvv6il2U .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfvvTW3UX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfvvTW3UX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfvvTW3UX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfvvTW3UX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfvvTW3UX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfvvTW3UX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfvvTW3UX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfvvTW3UX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfvvTW3UX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfvvTW3UX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfvvTW3UX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfvvTW3UX .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-uxfvvTW3UX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfvvTW3UX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfvvTW3UX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfvvTW3UX .mbr-text,
.cid-uxfvvTW3UX .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0e1r6C3Z {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0e1r6C3Z H1 {
  color: #000000;
}
.cid-uw0e1rknI0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uw0e1rknI0 h2 {
  text-align: left;
}
.cid-uw0e1rknI0 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0e1rknI0 p {
  color: #767676;
  text-align: left;
}
.cid-uw0e1rknI0 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0e1rknI0 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0e1rknI0 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0e1rknI0 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0e1rknI0 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0e1rknI0 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0e1rknI0 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uw0e1rknI0 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uw0e1rknI0 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uw0e1rknI0 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uw0e1rknI0 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0e1rA0UJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0e1rA0UJ H1 {
  color: #000000;
}
.cid-uw0e1rPnha {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uw0e1rPnha .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0e1rPnha .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0e1rPnha .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0e1rPnha .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uw0e1rPnha .box {
  right: 20%;
}
.cid-uw0e1rPnha .text-box {
  right: 0;
}
.cid-uw0e1rPnha .mbr-section-title,
.cid-uw0e1rPnha .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uw0e1rPnha .text-box {
    display: none;
  }
  .cid-uw0e1rPnha .mbr-section-title,
  .cid-uw0e1rPnha .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0e1rPnha .box {
    display: none;
  }
  .cid-uw0e1rPnha .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0e1rPnha .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0e1rPnha .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0e1rPnha .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0e1rPnha .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0e1rPnha .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0e1s5kZx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0e1shynX {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uw0e1shynX h2 {
  text-align: left;
}
.cid-uw0e1shynX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0e1shynX p {
  color: #767676;
  text-align: left;
}
.cid-uw0e1shynX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0e1shynX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0e1shynX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0e1shynX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0e1shynX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0e1shynX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0e1shynX .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0e1shynX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0e1shynX .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0e1shynX .mbr-text {
  color: #232323;
}
.cid-uw0e1swRkH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uw0e1swRkH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0e1swRkH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0e1swRkH .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uw0e1swRkH .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uw0e1swRkH .container {
    padding: 0 26px;
  }
}
.cid-uw0e1swRkH .row {
  justify-content: center;
}
.cid-uw0e1swRkH .item {
  margin-bottom: 32px;
}
.cid-uw0e1swRkH .item a {
  display: block;
}
.cid-uw0e1swRkH .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uw0e1swRkH .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uw0e1swRkH .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uw0e1swRkH .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-uw0e1swRkH .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uw0e1swRkH .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uw0e1swRkH .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-uw0e1swRkH .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uw0e1swRkH .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uw0e1swRkH .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uw0e1swRkH .item-title {
  color: #ffffff;
}
.cid-uw0e1swRkH .mbr-date {
  color: #cacaca;
}
.cid-uw0e1swRkH .mbr-desc {
  color: #cacaca;
}
.cid-uw0e1sMg3x {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw0e1sMg3x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0e1sMg3x .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-uw0e1sMg3x .container {
    padding: 0 16px;
  }
}
.cid-uw0e1sMg3x .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uw0e1sMg3x .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0e1sMg3x .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uw0e1sMg3x .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0e1sMg3x .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uw0e1sMg3x .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uw0e1sMg3x .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uw0e1sMg3x .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uw0e1sMg3x .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uw0e1sMg3x .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-uw0e1sMg3x .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uw0e1sMg3x .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uw0e1sMg3x .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uw0e1sMg3x .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uw0e1sMg3x .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uw0e1sMg3x .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uw0e1sMg3x .dragArea.row .form-group .form-control:hover,
.cid-uw0e1sMg3x .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uw0e1sMg3x .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uw0e1sMg3x .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uw0e1sMg3x .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uw0e1sMg3x .mbr-title {
  color: #ffffff;
}
.cid-uw0e1sMg3x .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uw0e1sMg3x .mbr-section-subtitle {
  color: #08323C;
}
.cid-uw0e1sMg3x .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uw0e1sMg3x .list {
  color: #08323C;
}
.cid-uw0e1sMg3x label {
  color: #08323C;
}
.cid-uw0e1sMg3x H3 {
  color: #000000;
}
.cid-uw0e1sMg3x P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uw0eihQ8xK {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0eihQ8xK H1 {
  text-align: center;
}
.cid-uDmzA9y9Jz {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmzA9y9Jz .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmzA9y9Jz .video-block {
    width: 100% !important;
  }
}
.cid-uw0eii54yW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0eiig6oQ {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uw0eiig6oQ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0eiig6oQ .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0eiig6oQ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0eiig6oQ .box {
  left: 20%;
}
.cid-uw0eiig6oQ .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uw0eiig6oQ .mbr-section-text,
.cid-uw0eiig6oQ .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uw0eiig6oQ .text-box {
    display: none;
  }
  .cid-uw0eiig6oQ .mbr-section-title,
  .cid-uw0eiig6oQ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0eiig6oQ .box {
    display: none;
  }
  .cid-uw0eiig6oQ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0eiig6oQ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0eiig6oQ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0eiig6oQ .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0eiig6oQ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0eiig6oQ .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0eiiqYkE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0eiiqYkE H1 {
  text-align: center;
}
.cid-uw0eiiCSVR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0eiiLKFr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0eiiLKFr h2 {
  text-align: left;
}
.cid-uw0eiiLKFr h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0eiiLKFr p {
  color: #767676;
  text-align: left;
}
.cid-uw0eiiLKFr .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0eiiLKFr .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0eiiLKFr .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0eiiLKFr .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0eiiLKFr .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0eiiLKFr .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0eiiLKFr .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0eiiLKFr .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0eiiLKFr .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0eiiLKFr H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uw0eiiLKFr P {
  color: #ffffff;
  text-align: left;
}
.cid-uw0eiiLKFr H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uw0eij0YiJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0eij0YiJ H1 {
  color: #000000;
}
.cid-uxfvHkMeOC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfvHkMeOC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfvHkMeOC .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfvHkMeOC .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfvHkMeOC .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfvHkMeOC .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfvHkMeOC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfvHkMeOC .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfvHkMeOC .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfvHkMeOC .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfvHkMeOC .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfvHkMeOC .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-uxfvHkMeOC .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfvHkMeOC .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfvHkMeOC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfvHkMeOC .mbr-text,
.cid-uxfvHkMeOC .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0eijwAXB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0eijwAXB H1 {
  color: #000000;
}
.cid-uxfvI0jR43 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfvI0jR43 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfvI0jR43 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfvI0jR43 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfvI0jR43 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfvI0jR43 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfvI0jR43 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfvI0jR43 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfvI0jR43 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfvI0jR43 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfvI0jR43 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfvI0jR43 .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-uxfvI0jR43 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfvI0jR43 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfvI0jR43 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfvI0jR43 .mbr-text,
.cid-uxfvI0jR43 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfvIKYGja {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfvIKYGja .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfvIKYGja .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfvIKYGja .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfvIKYGja .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfvIKYGja .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfvIKYGja .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfvIKYGja .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfvIKYGja .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfvIKYGja .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfvIKYGja .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfvIKYGja .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-uxfvIKYGja .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfvIKYGja .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfvIKYGja .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfvIKYGja .mbr-text,
.cid-uxfvIKYGja .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0eikv1Z9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0eikv1Z9 H1 {
  color: #000000;
}
.cid-uw0eikJvbN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uw0eikJvbN h2 {
  text-align: left;
}
.cid-uw0eikJvbN h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0eikJvbN p {
  color: #767676;
  text-align: left;
}
.cid-uw0eikJvbN .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0eikJvbN .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0eikJvbN .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0eikJvbN .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0eikJvbN .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0eikJvbN .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0eikJvbN .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uw0eikJvbN .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uw0eikJvbN .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uw0eikJvbN .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uw0eikJvbN .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0eikYm66 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0eikYm66 H1 {
  color: #000000;
}
.cid-uw0eilhATI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uw0eilhATI .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0eilhATI .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0eilhATI .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0eilhATI .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uw0eilhATI .box {
  right: 20%;
}
.cid-uw0eilhATI .text-box {
  right: 0;
}
.cid-uw0eilhATI .mbr-section-title,
.cid-uw0eilhATI .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uw0eilhATI .text-box {
    display: none;
  }
  .cid-uw0eilhATI .mbr-section-title,
  .cid-uw0eilhATI .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0eilhATI .box {
    display: none;
  }
  .cid-uw0eilhATI .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0eilhATI .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0eilhATI .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0eilhATI .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0eilhATI .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0eilhATI .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0eilycDA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0eilOaDB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uw0eilOaDB h2 {
  text-align: left;
}
.cid-uw0eilOaDB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0eilOaDB p {
  color: #767676;
  text-align: left;
}
.cid-uw0eilOaDB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0eilOaDB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0eilOaDB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0eilOaDB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0eilOaDB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0eilOaDB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0eilOaDB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0eilOaDB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0eilOaDB .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0eilOaDB .mbr-text {
  color: #232323;
}
.cid-uw0eim4Bpg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uw0eim4Bpg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0eim4Bpg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0eim4Bpg .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uw0eim4Bpg .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uw0eim4Bpg .container {
    padding: 0 26px;
  }
}
.cid-uw0eim4Bpg .row {
  justify-content: center;
}
.cid-uw0eim4Bpg .item {
  margin-bottom: 32px;
}
.cid-uw0eim4Bpg .item a {
  display: block;
}
.cid-uw0eim4Bpg .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uw0eim4Bpg .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uw0eim4Bpg .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uw0eim4Bpg .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-uw0eim4Bpg .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uw0eim4Bpg .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uw0eim4Bpg .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-uw0eim4Bpg .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uw0eim4Bpg .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uw0eim4Bpg .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uw0eim4Bpg .item-title {
  color: #ffffff;
}
.cid-uw0eim4Bpg .mbr-date {
  color: #cacaca;
}
.cid-uw0eim4Bpg .mbr-desc {
  color: #cacaca;
}
.cid-uw0eimnOXn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw0eimnOXn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0eimnOXn .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-uw0eimnOXn .container {
    padding: 0 16px;
  }
}
.cid-uw0eimnOXn .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uw0eimnOXn .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0eimnOXn .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uw0eimnOXn .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0eimnOXn .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uw0eimnOXn .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uw0eimnOXn .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uw0eimnOXn .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uw0eimnOXn .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uw0eimnOXn .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-uw0eimnOXn .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uw0eimnOXn .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uw0eimnOXn .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uw0eimnOXn .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uw0eimnOXn .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uw0eimnOXn .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uw0eimnOXn .dragArea.row .form-group .form-control:hover,
.cid-uw0eimnOXn .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uw0eimnOXn .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uw0eimnOXn .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uw0eimnOXn .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uw0eimnOXn .mbr-title {
  color: #ffffff;
}
.cid-uw0eimnOXn .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uw0eimnOXn .mbr-section-subtitle {
  color: #08323C;
}
.cid-uw0eimnOXn .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uw0eimnOXn .list {
  color: #08323C;
}
.cid-uw0eimnOXn label {
  color: #08323C;
}
.cid-uw0eimnOXn H3 {
  color: #000000;
}
.cid-uw0eimnOXn P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uw0hf3MvQm {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0hf3MvQm H1 {
  text-align: center;
}
.cid-uDmzD5FiWZ {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmzD5FiWZ .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmzD5FiWZ .video-block {
    width: 100% !important;
  }
}
.cid-uw0hf47kzm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0hf4khxu {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uw0hf4khxu .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0hf4khxu .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0hf4khxu .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0hf4khxu .box {
  left: 20%;
}
.cid-uw0hf4khxu .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uw0hf4khxu .mbr-section-text,
.cid-uw0hf4khxu .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uw0hf4khxu .text-box {
    display: none;
  }
  .cid-uw0hf4khxu .mbr-section-title,
  .cid-uw0hf4khxu .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0hf4khxu .box {
    display: none;
  }
  .cid-uw0hf4khxu .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0hf4khxu .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0hf4khxu .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0hf4khxu .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0hf4khxu .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0hf4khxu .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0hf4wfCj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0hf4wfCj H1 {
  text-align: center;
}
.cid-uw0hf4Hn5b {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0hf4TlqR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0hf4TlqR h2 {
  text-align: left;
}
.cid-uw0hf4TlqR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0hf4TlqR p {
  color: #767676;
  text-align: left;
}
.cid-uw0hf4TlqR .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0hf4TlqR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0hf4TlqR .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0hf4TlqR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0hf4TlqR .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0hf4TlqR .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0hf4TlqR .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0hf4TlqR .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0hf4TlqR .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0hf4TlqR H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uw0hf4TlqR P {
  color: #ffffff;
  text-align: left;
}
.cid-uw0hf4TlqR H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uw0hf5bkM9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0hf5bkM9 H1 {
  color: #000000;
}
.cid-uxfw8Kb38e {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfw8Kb38e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfw8Kb38e .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfw8Kb38e .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfw8Kb38e .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfw8Kb38e .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfw8Kb38e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfw8Kb38e .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfw8Kb38e .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfw8Kb38e .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfw8Kb38e .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfw8Kb38e .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-uxfw8Kb38e .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfw8Kb38e .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfw8Kb38e .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfw8Kb38e .mbr-text,
.cid-uxfw8Kb38e .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0hf5JWTD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0hf5JWTD H1 {
  color: #000000;
}
.cid-uxfw9zr94l {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfw9zr94l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfw9zr94l .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfw9zr94l .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfw9zr94l .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfw9zr94l .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfw9zr94l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfw9zr94l .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfw9zr94l .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfw9zr94l .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfw9zr94l .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfw9zr94l .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-uxfw9zr94l .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfw9zr94l .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfw9zr94l .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfw9zr94l .mbr-text,
.cid-uxfw9zr94l .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfwahYDc6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfwahYDc6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfwahYDc6 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfwahYDc6 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfwahYDc6 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfwahYDc6 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfwahYDc6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfwahYDc6 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfwahYDc6 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfwahYDc6 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfwahYDc6 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfwahYDc6 .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-uxfwahYDc6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfwahYDc6 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfwahYDc6 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfwahYDc6 .mbr-text,
.cid-uxfwahYDc6 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0hf6XFdT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0hf6XFdT H1 {
  color: #000000;
}
.cid-uw0hf7eZMk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uw0hf7eZMk h2 {
  text-align: left;
}
.cid-uw0hf7eZMk h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0hf7eZMk p {
  color: #767676;
  text-align: left;
}
.cid-uw0hf7eZMk .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0hf7eZMk .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0hf7eZMk .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0hf7eZMk .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0hf7eZMk .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0hf7eZMk .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0hf7eZMk .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uw0hf7eZMk .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uw0hf7eZMk .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uw0hf7eZMk .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uw0hf7eZMk .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0hf7vQhA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0hf7vQhA H1 {
  color: #000000;
}
.cid-uw0hf7OYIm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uw0hf7OYIm .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0hf7OYIm .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0hf7OYIm .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0hf7OYIm .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uw0hf7OYIm .box {
  right: 20%;
}
.cid-uw0hf7OYIm .text-box {
  right: 0;
}
.cid-uw0hf7OYIm .mbr-section-title,
.cid-uw0hf7OYIm .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uw0hf7OYIm .text-box {
    display: none;
  }
  .cid-uw0hf7OYIm .mbr-section-title,
  .cid-uw0hf7OYIm .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0hf7OYIm .box {
    display: none;
  }
  .cid-uw0hf7OYIm .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0hf7OYIm .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0hf7OYIm .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0hf7OYIm .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0hf7OYIm .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0hf7OYIm .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0hf8aiqr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0hf8oBfd {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uw0hf8oBfd h2 {
  text-align: left;
}
.cid-uw0hf8oBfd h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0hf8oBfd p {
  color: #767676;
  text-align: left;
}
.cid-uw0hf8oBfd .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0hf8oBfd .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0hf8oBfd .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0hf8oBfd .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0hf8oBfd .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0hf8oBfd .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0hf8oBfd .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0hf8oBfd .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0hf8oBfd .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0hf8oBfd .mbr-text {
  color: #232323;
}
.cid-uw0hf8Gev5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uw0hf8Gev5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0hf8Gev5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0hf8Gev5 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uw0hf8Gev5 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uw0hf8Gev5 .container {
    padding: 0 26px;
  }
}
.cid-uw0hf8Gev5 .row {
  justify-content: center;
}
.cid-uw0hf8Gev5 .item {
  margin-bottom: 32px;
}
.cid-uw0hf8Gev5 .item a {
  display: block;
}
.cid-uw0hf8Gev5 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uw0hf8Gev5 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uw0hf8Gev5 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uw0hf8Gev5 .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-uw0hf8Gev5 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uw0hf8Gev5 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uw0hf8Gev5 .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-uw0hf8Gev5 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uw0hf8Gev5 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uw0hf8Gev5 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uw0hf8Gev5 .item-title {
  color: #ffffff;
}
.cid-uw0hf8Gev5 .mbr-date {
  color: #cacaca;
}
.cid-uw0hf8Gev5 .mbr-desc {
  color: #cacaca;
}
.cid-uw0hf90A0N {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw0hf90A0N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0hf90A0N .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-uw0hf90A0N .container {
    padding: 0 16px;
  }
}
.cid-uw0hf90A0N .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uw0hf90A0N .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0hf90A0N .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uw0hf90A0N .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0hf90A0N .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uw0hf90A0N .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uw0hf90A0N .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uw0hf90A0N .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uw0hf90A0N .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uw0hf90A0N .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-uw0hf90A0N .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uw0hf90A0N .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uw0hf90A0N .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uw0hf90A0N .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uw0hf90A0N .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uw0hf90A0N .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uw0hf90A0N .dragArea.row .form-group .form-control:hover,
.cid-uw0hf90A0N .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uw0hf90A0N .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uw0hf90A0N .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uw0hf90A0N .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uw0hf90A0N .mbr-title {
  color: #ffffff;
}
.cid-uw0hf90A0N .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uw0hf90A0N .mbr-section-subtitle {
  color: #08323C;
}
.cid-uw0hf90A0N .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uw0hf90A0N .list {
  color: #08323C;
}
.cid-uw0hf90A0N label {
  color: #08323C;
}
.cid-uw0hf90A0N H3 {
  color: #000000;
}
.cid-uw0hf90A0N P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uw0hOxkvlc {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0hOxkvlc H1 {
  text-align: center;
}
.cid-uDmzFtUCzF {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmzFtUCzF .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmzFtUCzF .video-block {
    width: 100% !important;
  }
}
.cid-uw0hOxA9jq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0hOxKGnH {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uw0hOxKGnH .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0hOxKGnH .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0hOxKGnH .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0hOxKGnH .box {
  left: 20%;
}
.cid-uw0hOxKGnH .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uw0hOxKGnH .mbr-section-text,
.cid-uw0hOxKGnH .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uw0hOxKGnH .text-box {
    display: none;
  }
  .cid-uw0hOxKGnH .mbr-section-title,
  .cid-uw0hOxKGnH .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0hOxKGnH .box {
    display: none;
  }
  .cid-uw0hOxKGnH .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0hOxKGnH .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0hOxKGnH .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0hOxKGnH .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0hOxKGnH .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0hOxKGnH .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0hOxYydm {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0hOxYydm H1 {
  text-align: center;
}
.cid-uw0hOy9Niz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0hOyjr3s {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0hOyjr3s h2 {
  text-align: left;
}
.cid-uw0hOyjr3s h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0hOyjr3s p {
  color: #767676;
  text-align: left;
}
.cid-uw0hOyjr3s .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0hOyjr3s .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0hOyjr3s .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0hOyjr3s .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0hOyjr3s .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0hOyjr3s .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0hOyjr3s .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0hOyjr3s .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0hOyjr3s .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0hOyjr3s H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uw0hOyjr3s P {
  color: #ffffff;
  text-align: left;
}
.cid-uw0hOyjr3s H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uw0hOyzGAU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0hOyzGAU H1 {
  color: #000000;
}
.cid-uxfHqKzIGp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfHqKzIGp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfHqKzIGp .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfHqKzIGp .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfHqKzIGp .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfHqKzIGp .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfHqKzIGp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfHqKzIGp .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfHqKzIGp .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfHqKzIGp .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfHqKzIGp .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfHqKzIGp .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-uxfHqKzIGp .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfHqKzIGp .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfHqKzIGp .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfHqKzIGp .mbr-text,
.cid-uxfHqKzIGp .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0hOz8WDg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0hOz8WDg H1 {
  color: #000000;
}
.cid-uxfHrs5S9Z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfHrs5S9Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfHrs5S9Z .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfHrs5S9Z .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfHrs5S9Z .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfHrs5S9Z .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfHrs5S9Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfHrs5S9Z .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfHrs5S9Z .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfHrs5S9Z .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfHrs5S9Z .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfHrs5S9Z .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-uxfHrs5S9Z .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfHrs5S9Z .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfHrs5S9Z .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfHrs5S9Z .mbr-text,
.cid-uxfHrs5S9Z .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfHs5IFRG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfHs5IFRG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfHs5IFRG .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfHs5IFRG .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfHs5IFRG .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfHs5IFRG .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfHs5IFRG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfHs5IFRG .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfHs5IFRG .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfHs5IFRG .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfHs5IFRG .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfHs5IFRG .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-uxfHs5IFRG .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfHs5IFRG .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfHs5IFRG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfHs5IFRG .mbr-text,
.cid-uxfHs5IFRG .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0hOA2ROm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0hOA2ROm H1 {
  color: #000000;
}
.cid-uw0hOAmaB9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uw0hOAmaB9 h2 {
  text-align: left;
}
.cid-uw0hOAmaB9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0hOAmaB9 p {
  color: #767676;
  text-align: left;
}
.cid-uw0hOAmaB9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0hOAmaB9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0hOAmaB9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0hOAmaB9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0hOAmaB9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0hOAmaB9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0hOAmaB9 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uw0hOAmaB9 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uw0hOAmaB9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uw0hOAmaB9 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uw0hOAmaB9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0hOADIwW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0hOADIwW H1 {
  color: #000000;
}
.cid-uw0hOAQxv6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uw0hOAQxv6 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0hOAQxv6 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0hOAQxv6 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0hOAQxv6 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uw0hOAQxv6 .box {
  right: 20%;
}
.cid-uw0hOAQxv6 .text-box {
  right: 0;
}
.cid-uw0hOAQxv6 .mbr-section-title,
.cid-uw0hOAQxv6 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uw0hOAQxv6 .text-box {
    display: none;
  }
  .cid-uw0hOAQxv6 .mbr-section-title,
  .cid-uw0hOAQxv6 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0hOAQxv6 .box {
    display: none;
  }
  .cid-uw0hOAQxv6 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0hOAQxv6 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0hOAQxv6 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0hOAQxv6 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0hOAQxv6 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0hOAQxv6 .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0hOB5bfX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0hOBjX49 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uw0hOBjX49 h2 {
  text-align: left;
}
.cid-uw0hOBjX49 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0hOBjX49 p {
  color: #767676;
  text-align: left;
}
.cid-uw0hOBjX49 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0hOBjX49 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0hOBjX49 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0hOBjX49 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0hOBjX49 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0hOBjX49 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0hOBjX49 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0hOBjX49 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0hOBjX49 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0hOBjX49 .mbr-text {
  color: #232323;
}
.cid-uw0hOBzoMS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uw0hOBzoMS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0hOBzoMS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0hOBzoMS .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uw0hOBzoMS .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uw0hOBzoMS .container {
    padding: 0 26px;
  }
}
.cid-uw0hOBzoMS .row {
  justify-content: center;
}
.cid-uw0hOBzoMS .item {
  margin-bottom: 32px;
}
.cid-uw0hOBzoMS .item a {
  display: block;
}
.cid-uw0hOBzoMS .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uw0hOBzoMS .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uw0hOBzoMS .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uw0hOBzoMS .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-uw0hOBzoMS .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uw0hOBzoMS .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uw0hOBzoMS .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-uw0hOBzoMS .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uw0hOBzoMS .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uw0hOBzoMS .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uw0hOBzoMS .item-title {
  color: #ffffff;
}
.cid-uw0hOBzoMS .mbr-date {
  color: #cacaca;
}
.cid-uw0hOBzoMS .mbr-desc {
  color: #cacaca;
}
.cid-uw0hOBQBiK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw0hOBQBiK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0hOBQBiK .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-uw0hOBQBiK .container {
    padding: 0 16px;
  }
}
.cid-uw0hOBQBiK .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uw0hOBQBiK .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0hOBQBiK .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uw0hOBQBiK .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0hOBQBiK .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uw0hOBQBiK .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uw0hOBQBiK .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uw0hOBQBiK .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uw0hOBQBiK .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uw0hOBQBiK .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-uw0hOBQBiK .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uw0hOBQBiK .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uw0hOBQBiK .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uw0hOBQBiK .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uw0hOBQBiK .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uw0hOBQBiK .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uw0hOBQBiK .dragArea.row .form-group .form-control:hover,
.cid-uw0hOBQBiK .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uw0hOBQBiK .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uw0hOBQBiK .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uw0hOBQBiK .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uw0hOBQBiK .mbr-title {
  color: #ffffff;
}
.cid-uw0hOBQBiK .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uw0hOBQBiK .mbr-section-subtitle {
  color: #08323C;
}
.cid-uw0hOBQBiK .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uw0hOBQBiK .list {
  color: #08323C;
}
.cid-uw0hOBQBiK label {
  color: #08323C;
}
.cid-uw0hOBQBiK H3 {
  color: #000000;
}
.cid-uw0hOBQBiK P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uw0i6yiik1 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0i6yiik1 H1 {
  text-align: center;
}
.cid-uDmzHpp8ze {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmzHpp8ze .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmzHpp8ze .video-block {
    width: 100% !important;
  }
}
.cid-uw0i6yAZP5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0i6yMZgS {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uw0i6yMZgS .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0i6yMZgS .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0i6yMZgS .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0i6yMZgS .box {
  left: 20%;
}
.cid-uw0i6yMZgS .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uw0i6yMZgS .mbr-section-text,
.cid-uw0i6yMZgS .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uw0i6yMZgS .text-box {
    display: none;
  }
  .cid-uw0i6yMZgS .mbr-section-title,
  .cid-uw0i6yMZgS .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0i6yMZgS .box {
    display: none;
  }
  .cid-uw0i6yMZgS .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0i6yMZgS .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0i6yMZgS .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0i6yMZgS .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0i6yMZgS .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0i6yMZgS .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0i6yXtfw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0i6yXtfw H1 {
  text-align: center;
}
.cid-uw0i6z8nUA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0i6ziAA6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0i6ziAA6 h2 {
  text-align: left;
}
.cid-uw0i6ziAA6 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0i6ziAA6 p {
  color: #767676;
  text-align: left;
}
.cid-uw0i6ziAA6 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0i6ziAA6 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0i6ziAA6 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0i6ziAA6 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0i6ziAA6 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0i6ziAA6 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0i6ziAA6 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0i6ziAA6 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0i6ziAA6 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0i6ziAA6 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uw0i6ziAA6 P {
  color: #ffffff;
  text-align: left;
}
.cid-uw0i6ziAA6 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uw0i6zArpD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0i6zArpD H1 {
  color: #000000;
}
.cid-uxfHAOAwP4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfHAOAwP4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfHAOAwP4 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfHAOAwP4 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfHAOAwP4 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfHAOAwP4 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfHAOAwP4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfHAOAwP4 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfHAOAwP4 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfHAOAwP4 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfHAOAwP4 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfHAOAwP4 .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-uxfHAOAwP4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfHAOAwP4 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfHAOAwP4 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfHAOAwP4 .mbr-text,
.cid-uxfHAOAwP4 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfHBw1q40 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfHBw1q40 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfHBw1q40 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfHBw1q40 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfHBw1q40 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfHBw1q40 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfHBw1q40 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfHBw1q40 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfHBw1q40 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfHBw1q40 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfHBw1q40 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfHBw1q40 .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-uxfHBw1q40 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfHBw1q40 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfHBw1q40 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfHBw1q40 .mbr-text,
.cid-uxfHBw1q40 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfHCcwN4W {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfHCcwN4W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfHCcwN4W .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfHCcwN4W .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfHCcwN4W .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfHCcwN4W .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfHCcwN4W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfHCcwN4W .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfHCcwN4W .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfHCcwN4W .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfHCcwN4W .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfHCcwN4W .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-uxfHCcwN4W .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfHCcwN4W .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfHCcwN4W .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfHCcwN4W .mbr-text,
.cid-uxfHCcwN4W .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0i6AaANq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0i6AaANq H1 {
  color: #000000;
}
.cid-uw0i6BeA9X {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0i6BeA9X H1 {
  color: #000000;
}
.cid-uw0i6BqACF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uw0i6BqACF h2 {
  text-align: left;
}
.cid-uw0i6BqACF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0i6BqACF p {
  color: #767676;
  text-align: left;
}
.cid-uw0i6BqACF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0i6BqACF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0i6BqACF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0i6BqACF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0i6BqACF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0i6BqACF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0i6BqACF .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uw0i6BqACF .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uw0i6BqACF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uw0i6BqACF .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uw0i6BqACF .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0i6BGfHJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0i6BGfHJ H1 {
  color: #000000;
}
.cid-uw0i6BTrRX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uw0i6BTrRX .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0i6BTrRX .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0i6BTrRX .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0i6BTrRX .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uw0i6BTrRX .box {
  right: 20%;
}
.cid-uw0i6BTrRX .text-box {
  right: 0;
}
.cid-uw0i6BTrRX .mbr-section-title,
.cid-uw0i6BTrRX .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uw0i6BTrRX .text-box {
    display: none;
  }
  .cid-uw0i6BTrRX .mbr-section-title,
  .cid-uw0i6BTrRX .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0i6BTrRX .box {
    display: none;
  }
  .cid-uw0i6BTrRX .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0i6BTrRX .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0i6BTrRX .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0i6BTrRX .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0i6BTrRX .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0i6BTrRX .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0i6CczqO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0i6Cspaf {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uw0i6Cspaf h2 {
  text-align: left;
}
.cid-uw0i6Cspaf h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0i6Cspaf p {
  color: #767676;
  text-align: left;
}
.cid-uw0i6Cspaf .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0i6Cspaf .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0i6Cspaf .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0i6Cspaf .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0i6Cspaf .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0i6Cspaf .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0i6Cspaf .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0i6Cspaf .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0i6Cspaf .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0i6Cspaf .mbr-text {
  color: #232323;
}
.cid-uw0i6CLe7D {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uw0i6CLe7D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0i6CLe7D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0i6CLe7D .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uw0i6CLe7D .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uw0i6CLe7D .container {
    padding: 0 26px;
  }
}
.cid-uw0i6CLe7D .row {
  justify-content: center;
}
.cid-uw0i6CLe7D .item {
  margin-bottom: 32px;
}
.cid-uw0i6CLe7D .item a {
  display: block;
}
.cid-uw0i6CLe7D .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uw0i6CLe7D .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uw0i6CLe7D .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uw0i6CLe7D .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-uw0i6CLe7D .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uw0i6CLe7D .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uw0i6CLe7D .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-uw0i6CLe7D .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uw0i6CLe7D .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uw0i6CLe7D .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uw0i6CLe7D .item-title {
  color: #ffffff;
}
.cid-uw0i6CLe7D .mbr-date {
  color: #cacaca;
}
.cid-uw0i6CLe7D .mbr-desc {
  color: #cacaca;
}
.cid-uw0i6D3H9X {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw0i6D3H9X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0i6D3H9X .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-uw0i6D3H9X .container {
    padding: 0 16px;
  }
}
.cid-uw0i6D3H9X .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uw0i6D3H9X .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0i6D3H9X .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uw0i6D3H9X .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0i6D3H9X .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uw0i6D3H9X .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uw0i6D3H9X .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uw0i6D3H9X .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uw0i6D3H9X .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uw0i6D3H9X .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-uw0i6D3H9X .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uw0i6D3H9X .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uw0i6D3H9X .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uw0i6D3H9X .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uw0i6D3H9X .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uw0i6D3H9X .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uw0i6D3H9X .dragArea.row .form-group .form-control:hover,
.cid-uw0i6D3H9X .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uw0i6D3H9X .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uw0i6D3H9X .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uw0i6D3H9X .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uw0i6D3H9X .mbr-title {
  color: #ffffff;
}
.cid-uw0i6D3H9X .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uw0i6D3H9X .mbr-section-subtitle {
  color: #08323C;
}
.cid-uw0i6D3H9X .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uw0i6D3H9X .list {
  color: #08323C;
}
.cid-uw0i6D3H9X label {
  color: #08323C;
}
.cid-uw0i6D3H9X H3 {
  color: #000000;
}
.cid-uw0i6D3H9X P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uw0imQJuql {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0imQJuql H1 {
  text-align: center;
}
.cid-uDmzJmPCWZ {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmzJmPCWZ .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmzJmPCWZ .video-block {
    width: 100% !important;
  }
}
.cid-uw0imR3Awa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0imRfghV {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uw0imRfghV .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0imRfghV .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0imRfghV .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0imRfghV .box {
  left: 20%;
}
.cid-uw0imRfghV .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uw0imRfghV .mbr-section-text,
.cid-uw0imRfghV .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uw0imRfghV .text-box {
    display: none;
  }
  .cid-uw0imRfghV .mbr-section-title,
  .cid-uw0imRfghV .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0imRfghV .box {
    display: none;
  }
  .cid-uw0imRfghV .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0imRfghV .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0imRfghV .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0imRfghV .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0imRfghV .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0imRfghV .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0imRsX8e {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0imRsX8e H1 {
  text-align: center;
}
.cid-uw0imRFdaJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0imRUqjA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uw0imRUqjA h2 {
  text-align: left;
}
.cid-uw0imRUqjA h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0imRUqjA p {
  color: #767676;
  text-align: left;
}
.cid-uw0imRUqjA .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0imRUqjA .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0imRUqjA .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0imRUqjA .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0imRUqjA .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0imRUqjA .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0imRUqjA .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0imRUqjA .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0imRUqjA .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0imRUqjA H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uw0imRUqjA P {
  color: #ffffff;
  text-align: left;
}
.cid-uw0imRUqjA H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uw0imScGYR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0imScGYR H1 {
  color: #000000;
}
.cid-uxfHKAnD8a {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfHKAnD8a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfHKAnD8a .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfHKAnD8a .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfHKAnD8a .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfHKAnD8a .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfHKAnD8a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfHKAnD8a .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfHKAnD8a .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfHKAnD8a .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfHKAnD8a .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfHKAnD8a .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-uxfHKAnD8a .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfHKAnD8a .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfHKAnD8a .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfHKAnD8a .mbr-text,
.cid-uxfHKAnD8a .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0imSJPp3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uw0imSJPp3 H1 {
  color: #000000;
}
.cid-uxfHLghn2b {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfHLghn2b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfHLghn2b .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfHLghn2b .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfHLghn2b .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfHLghn2b .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfHLghn2b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfHLghn2b .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfHLghn2b .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfHLghn2b .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfHLghn2b .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfHLghn2b .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-uxfHLghn2b .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfHLghn2b .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfHLghn2b .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfHLghn2b .mbr-text,
.cid-uxfHLghn2b .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfHLUZXCj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfHLUZXCj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfHLUZXCj .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfHLUZXCj .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfHLUZXCj .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfHLUZXCj .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfHLUZXCj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfHLUZXCj .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfHLUZXCj .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfHLUZXCj .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfHLUZXCj .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfHLUZXCj .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-uxfHLUZXCj .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfHLUZXCj .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfHLUZXCj .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfHLUZXCj .mbr-text,
.cid-uxfHLUZXCj .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uw0imTIfKA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0imTIfKA H1 {
  color: #000000;
}
.cid-uw0imTVsY2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uw0imTVsY2 h2 {
  text-align: left;
}
.cid-uw0imTVsY2 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0imTVsY2 p {
  color: #767676;
  text-align: left;
}
.cid-uw0imTVsY2 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0imTVsY2 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0imTVsY2 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0imTVsY2 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0imTVsY2 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0imTVsY2 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0imTVsY2 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uw0imTVsY2 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uw0imTVsY2 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uw0imTVsY2 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uw0imTVsY2 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0imUdRlV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uw0imUdRlV H1 {
  color: #000000;
}
.cid-uw0imUuiWn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uw0imUuiWn .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uw0imUuiWn .text-block {
  position: relative;
  z-index: 0;
}
.cid-uw0imUuiWn .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uw0imUuiWn .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uw0imUuiWn .box {
  right: 20%;
}
.cid-uw0imUuiWn .text-box {
  right: 0;
}
.cid-uw0imUuiWn .mbr-section-title,
.cid-uw0imUuiWn .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uw0imUuiWn .text-box {
    display: none;
  }
  .cid-uw0imUuiWn .mbr-section-title,
  .cid-uw0imUuiWn .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uw0imUuiWn .box {
    display: none;
  }
  .cid-uw0imUuiWn .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uw0imUuiWn .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0imUuiWn .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uw0imUuiWn .mbr-section-text {
  color: #c1c1c1;
}
.cid-uw0imUuiWn .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uw0imUuiWn .mbr-section-text DIV {
  text-align: center;
}
.cid-uw0imUKbAG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uw0imUXScS {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uw0imUXScS h2 {
  text-align: left;
}
.cid-uw0imUXScS h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uw0imUXScS p {
  color: #767676;
  text-align: left;
}
.cid-uw0imUXScS .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uw0imUXScS .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uw0imUXScS .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uw0imUXScS .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uw0imUXScS .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uw0imUXScS .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uw0imUXScS .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0imUXScS .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uw0imUXScS .card-img span {
    font-size: 40px !important;
  }
}
.cid-uw0imUXScS .mbr-text {
  color: #232323;
}
.cid-uw0imVdv3Y {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uw0imVdv3Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0imVdv3Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0imVdv3Y .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uw0imVdv3Y .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uw0imVdv3Y .container {
    padding: 0 26px;
  }
}
.cid-uw0imVdv3Y .row {
  justify-content: center;
}
.cid-uw0imVdv3Y .item {
  margin-bottom: 32px;
}
.cid-uw0imVdv3Y .item a {
  display: block;
}
.cid-uw0imVdv3Y .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uw0imVdv3Y .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uw0imVdv3Y .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uw0imVdv3Y .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-uw0imVdv3Y .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uw0imVdv3Y .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uw0imVdv3Y .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-uw0imVdv3Y .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uw0imVdv3Y .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uw0imVdv3Y .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uw0imVdv3Y .item-title {
  color: #ffffff;
}
.cid-uw0imVdv3Y .mbr-date {
  color: #cacaca;
}
.cid-uw0imVdv3Y .mbr-desc {
  color: #cacaca;
}
.cid-uw0imVv5AN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw0imVv5AN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0imVv5AN .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-uw0imVv5AN .container {
    padding: 0 16px;
  }
}
.cid-uw0imVv5AN .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uw0imVv5AN .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0imVv5AN .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uw0imVv5AN .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uw0imVv5AN .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uw0imVv5AN .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uw0imVv5AN .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uw0imVv5AN .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uw0imVv5AN .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uw0imVv5AN .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-uw0imVv5AN .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uw0imVv5AN .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uw0imVv5AN .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uw0imVv5AN .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uw0imVv5AN .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uw0imVv5AN .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uw0imVv5AN .dragArea.row .form-group .form-control:hover,
.cid-uw0imVv5AN .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uw0imVv5AN .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uw0imVv5AN .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uw0imVv5AN .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uw0imVv5AN .mbr-title {
  color: #ffffff;
}
.cid-uw0imVv5AN .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uw0imVv5AN .mbr-section-subtitle {
  color: #08323C;
}
.cid-uw0imVv5AN .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uw0imVv5AN .list {
  color: #08323C;
}
.cid-uw0imVv5AN label {
  color: #08323C;
}
.cid-uw0imVv5AN H3 {
  color: #000000;
}
.cid-uw0imVv5AN P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwbzEHVw0q {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbzEHVw0q H1 {
  text-align: center;
}
.cid-uDmxxR1hgF {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmxxR1hgF .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmxxR1hgF .video-block {
    width: 100% !important;
  }
}
.cid-uwbzEI9kZP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbzEIkrOX {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwbzEIkrOX .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwbzEIkrOX .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwbzEIkrOX .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwbzEIkrOX .box {
  left: 20%;
}
.cid-uwbzEIkrOX .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwbzEIkrOX .mbr-section-text,
.cid-uwbzEIkrOX .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwbzEIkrOX .text-box {
    display: none;
  }
  .cid-uwbzEIkrOX .mbr-section-title,
  .cid-uwbzEIkrOX .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwbzEIkrOX .box {
    display: none;
  }
  .cid-uwbzEIkrOX .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwbzEIkrOX .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwbzEIkrOX .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwbzEIkrOX .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwbzEIkrOX .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwbzEIkrOX .mbr-section-text DIV {
  text-align: center;
}
.cid-uwbzEIxUam {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbzEIxUam H1 {
  text-align: center;
}
.cid-uwbzEIHqoJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbzEIQFch {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbzEIQFch h2 {
  text-align: left;
}
.cid-uwbzEIQFch h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbzEIQFch p {
  color: #767676;
  text-align: left;
}
.cid-uwbzEIQFch .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbzEIQFch .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbzEIQFch .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbzEIQFch .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbzEIQFch .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbzEIQFch .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbzEIQFch .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwbzEIQFch .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwbzEIQFch .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbzEIQFch H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwbzEIQFch P {
  color: #ffffff;
  text-align: left;
}
.cid-uwbzEIQFch H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwbzEJbulI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwbzEJbulI H1 {
  color: #000000;
}
.cid-uxfiwtkZVm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfiwtkZVm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfiwtkZVm .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfiwtkZVm .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfiwtkZVm .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfiwtkZVm .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfiwtkZVm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfiwtkZVm .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfiwtkZVm .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfiwtkZVm .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfiwtkZVm .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfiwtkZVm .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-uxfiwtkZVm .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfiwtkZVm .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfiwtkZVm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfiwtkZVm .mbr-text,
.cid-uxfiwtkZVm .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwbzEJJW7x {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwbzEJJW7x H1 {
  color: #000000;
}
.cid-uxfizTraaC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfizTraaC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfizTraaC .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfizTraaC .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfizTraaC .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfizTraaC .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfizTraaC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfizTraaC .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfizTraaC .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfizTraaC .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfizTraaC .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfizTraaC .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-uxfizTraaC .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfizTraaC .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfizTraaC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfizTraaC .mbr-text,
.cid-uxfizTraaC .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfiAwfM4J {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfiAwfM4J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfiAwfM4J .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfiAwfM4J .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfiAwfM4J .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfiAwfM4J .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfiAwfM4J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfiAwfM4J .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfiAwfM4J .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfiAwfM4J .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfiAwfM4J .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfiAwfM4J .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-uxfiAwfM4J .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfiAwfM4J .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfiAwfM4J .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfiAwfM4J .mbr-text,
.cid-uxfiAwfM4J .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwbzEKI2nd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwbzEKI2nd H1 {
  color: #000000;
}
.cid-uwbzEL3rJU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwbzEL3rJU h2 {
  text-align: left;
}
.cid-uwbzEL3rJU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbzEL3rJU p {
  color: #767676;
  text-align: left;
}
.cid-uwbzEL3rJU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbzEL3rJU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbzEL3rJU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbzEL3rJU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbzEL3rJU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbzEL3rJU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbzEL3rJU .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwbzEL3rJU .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwbzEL3rJU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwbzEL3rJU .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwbzEL3rJU .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbzELgLsL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwbzELgLsL H1 {
  color: #000000;
}
.cid-uwbzELr7Dm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwbzELr7Dm .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwbzELr7Dm .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwbzELr7Dm .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwbzELr7Dm .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwbzELr7Dm .box {
  right: 20%;
}
.cid-uwbzELr7Dm .text-box {
  right: 0;
}
.cid-uwbzELr7Dm .mbr-section-title,
.cid-uwbzELr7Dm .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwbzELr7Dm .text-box {
    display: none;
  }
  .cid-uwbzELr7Dm .mbr-section-title,
  .cid-uwbzELr7Dm .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwbzELr7Dm .box {
    display: none;
  }
  .cid-uwbzELr7Dm .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwbzELr7Dm .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwbzELr7Dm .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwbzELr7Dm .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwbzELr7Dm .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwbzELr7Dm .mbr-section-text DIV {
  text-align: center;
}
.cid-uwbzELDJxb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbzELQCkh {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwbzELQCkh h2 {
  text-align: left;
}
.cid-uwbzELQCkh h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbzELQCkh p {
  color: #767676;
  text-align: left;
}
.cid-uwbzELQCkh .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbzELQCkh .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbzELQCkh .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbzELQCkh .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbzELQCkh .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbzELQCkh .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbzELQCkh .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwbzELQCkh .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwbzELQCkh .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbzELQCkh .mbr-text {
  color: #232323;
}
.cid-uwbzEM6fn9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwbzEM6fn9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwbzEM6fn9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwbzEM6fn9 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwbzEM6fn9 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwbzEM6fn9 .container {
    padding: 0 26px;
  }
}
.cid-uwbzEM6fn9 .row {
  justify-content: center;
}
.cid-uwbzEM6fn9 .item {
  margin-bottom: 32px;
}
.cid-uwbzEM6fn9 .item a {
  display: block;
}
.cid-uwbzEM6fn9 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwbzEM6fn9 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwbzEM6fn9 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwbzEM6fn9 .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-uwbzEM6fn9 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwbzEM6fn9 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwbzEM6fn9 .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-uwbzEM6fn9 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwbzEM6fn9 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwbzEM6fn9 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwbzEM6fn9 .item-title {
  color: #ffffff;
}
.cid-uwbzEM6fn9 .mbr-date {
  color: #cacaca;
}
.cid-uwbzEM6fn9 .mbr-desc {
  color: #cacaca;
}
.cid-uwbzEMmjju {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwbzEMmjju .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwbzEMmjju .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-uwbzEMmjju .container {
    padding: 0 16px;
  }
}
.cid-uwbzEMmjju .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwbzEMmjju .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwbzEMmjju .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwbzEMmjju .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwbzEMmjju .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwbzEMmjju .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwbzEMmjju .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwbzEMmjju .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwbzEMmjju .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwbzEMmjju .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-uwbzEMmjju .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwbzEMmjju .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwbzEMmjju .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwbzEMmjju .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwbzEMmjju .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwbzEMmjju .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwbzEMmjju .dragArea.row .form-group .form-control:hover,
.cid-uwbzEMmjju .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwbzEMmjju .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwbzEMmjju .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwbzEMmjju .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwbzEMmjju .mbr-title {
  color: #ffffff;
}
.cid-uwbzEMmjju .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwbzEMmjju .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwbzEMmjju .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwbzEMmjju .list {
  color: #08323C;
}
.cid-uwbzEMmjju label {
  color: #08323C;
}
.cid-uwbzEMmjju H3 {
  color: #000000;
}
.cid-uwbzEMmjju P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwbzZkYCfc {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbzZkYCfc H1 {
  text-align: center;
}
.cid-uDmxA5DyEw {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmxA5DyEw .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmxA5DyEw .video-block {
    width: 100% !important;
  }
}
.cid-uwbzZlcFeW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbzZlmnnl {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwbzZlmnnl .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwbzZlmnnl .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwbzZlmnnl .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwbzZlmnnl .box {
  left: 20%;
}
.cid-uwbzZlmnnl .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwbzZlmnnl .mbr-section-text,
.cid-uwbzZlmnnl .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwbzZlmnnl .text-box {
    display: none;
  }
  .cid-uwbzZlmnnl .mbr-section-title,
  .cid-uwbzZlmnnl .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwbzZlmnnl .box {
    display: none;
  }
  .cid-uwbzZlmnnl .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwbzZlmnnl .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwbzZlmnnl .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwbzZlmnnl .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwbzZlmnnl .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwbzZlmnnl .mbr-section-text DIV {
  text-align: center;
}
.cid-uwbzZlvQQV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbzZlvQQV H1 {
  text-align: center;
}
.cid-uwbzZlEFGi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbzZlQWwI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbzZlQWwI h2 {
  text-align: left;
}
.cid-uwbzZlQWwI h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbzZlQWwI p {
  color: #767676;
  text-align: left;
}
.cid-uwbzZlQWwI .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbzZlQWwI .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbzZlQWwI .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbzZlQWwI .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbzZlQWwI .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbzZlQWwI .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbzZlQWwI .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwbzZlQWwI .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwbzZlQWwI .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbzZlQWwI H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwbzZlQWwI P {
  color: #ffffff;
  text-align: left;
}
.cid-uwbzZlQWwI H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwbzZm5ucR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwbzZm5ucR H1 {
  color: #000000;
}
.cid-uxfiNGBYns {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfiNGBYns .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfiNGBYns .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfiNGBYns .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfiNGBYns .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfiNGBYns .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfiNGBYns .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfiNGBYns .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfiNGBYns .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfiNGBYns .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfiNGBYns .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfiNGBYns .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-uxfiNGBYns .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfiNGBYns .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfiNGBYns .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfiNGBYns .mbr-text,
.cid-uxfiNGBYns .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwbzZmCn5N {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwbzZmCn5N H1 {
  color: #000000;
}
.cid-uxfiOjTuer {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfiOjTuer .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfiOjTuer .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfiOjTuer .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfiOjTuer .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfiOjTuer .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfiOjTuer .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfiOjTuer .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfiOjTuer .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfiOjTuer .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfiOjTuer .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfiOjTuer .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-uxfiOjTuer .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfiOjTuer .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfiOjTuer .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfiOjTuer .mbr-text,
.cid-uxfiOjTuer .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfiOUcWon {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfiOUcWon .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfiOUcWon .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfiOUcWon .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfiOUcWon .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfiOUcWon .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfiOUcWon .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfiOUcWon .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfiOUcWon .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfiOUcWon .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfiOUcWon .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfiOUcWon .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-uxfiOUcWon .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfiOUcWon .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfiOUcWon .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfiOUcWon .mbr-text,
.cid-uxfiOUcWon .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwbzZnDAFa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwbzZnDAFa H1 {
  color: #000000;
}
.cid-uwbzZnQ7yG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwbzZnQ7yG h2 {
  text-align: left;
}
.cid-uwbzZnQ7yG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbzZnQ7yG p {
  color: #767676;
  text-align: left;
}
.cid-uwbzZnQ7yG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbzZnQ7yG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbzZnQ7yG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbzZnQ7yG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbzZnQ7yG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbzZnQ7yG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbzZnQ7yG .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwbzZnQ7yG .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwbzZnQ7yG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwbzZnQ7yG .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwbzZnQ7yG .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbzZo3rzH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwbzZo3rzH H1 {
  color: #000000;
}
.cid-uwbzZoePQ5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwbzZoePQ5 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwbzZoePQ5 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwbzZoePQ5 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwbzZoePQ5 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwbzZoePQ5 .box {
  right: 20%;
}
.cid-uwbzZoePQ5 .text-box {
  right: 0;
}
.cid-uwbzZoePQ5 .mbr-section-title,
.cid-uwbzZoePQ5 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwbzZoePQ5 .text-box {
    display: none;
  }
  .cid-uwbzZoePQ5 .mbr-section-title,
  .cid-uwbzZoePQ5 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwbzZoePQ5 .box {
    display: none;
  }
  .cid-uwbzZoePQ5 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwbzZoePQ5 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwbzZoePQ5 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwbzZoePQ5 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwbzZoePQ5 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwbzZoePQ5 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwbzZou2a4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbzZoJPtx {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwbzZoJPtx h2 {
  text-align: left;
}
.cid-uwbzZoJPtx h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbzZoJPtx p {
  color: #767676;
  text-align: left;
}
.cid-uwbzZoJPtx .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbzZoJPtx .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbzZoJPtx .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbzZoJPtx .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbzZoJPtx .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbzZoJPtx .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbzZoJPtx .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwbzZoJPtx .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwbzZoJPtx .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbzZoJPtx .mbr-text {
  color: #232323;
}
.cid-uwbzZoZO76 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwbzZoZO76 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwbzZoZO76 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwbzZoZO76 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwbzZoZO76 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwbzZoZO76 .container {
    padding: 0 26px;
  }
}
.cid-uwbzZoZO76 .row {
  justify-content: center;
}
.cid-uwbzZoZO76 .item {
  margin-bottom: 32px;
}
.cid-uwbzZoZO76 .item a {
  display: block;
}
.cid-uwbzZoZO76 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwbzZoZO76 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwbzZoZO76 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwbzZoZO76 .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-uwbzZoZO76 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwbzZoZO76 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwbzZoZO76 .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-uwbzZoZO76 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwbzZoZO76 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwbzZoZO76 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwbzZoZO76 .item-title {
  color: #ffffff;
}
.cid-uwbzZoZO76 .mbr-date {
  color: #cacaca;
}
.cid-uwbzZoZO76 .mbr-desc {
  color: #cacaca;
}
.cid-uwbzZpdzym {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwbzZpdzym .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwbzZpdzym .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-uwbzZpdzym .container {
    padding: 0 16px;
  }
}
.cid-uwbzZpdzym .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwbzZpdzym .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwbzZpdzym .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwbzZpdzym .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwbzZpdzym .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwbzZpdzym .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwbzZpdzym .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwbzZpdzym .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwbzZpdzym .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwbzZpdzym .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-uwbzZpdzym .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwbzZpdzym .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwbzZpdzym .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwbzZpdzym .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwbzZpdzym .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwbzZpdzym .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwbzZpdzym .dragArea.row .form-group .form-control:hover,
.cid-uwbzZpdzym .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwbzZpdzym .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwbzZpdzym .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwbzZpdzym .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwbzZpdzym .mbr-title {
  color: #ffffff;
}
.cid-uwbzZpdzym .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwbzZpdzym .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwbzZpdzym .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwbzZpdzym .list {
  color: #08323C;
}
.cid-uwbzZpdzym label {
  color: #08323C;
}
.cid-uwbzZpdzym H3 {
  color: #000000;
}
.cid-uwbzZpdzym P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwbAdIQQEb {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbAdIQQEb H1 {
  text-align: center;
}
.cid-uDmxCidk8r {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmxCidk8r .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmxCidk8r .video-block {
    width: 100% !important;
  }
}
.cid-uwbAdJ7YFL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbAdJgUZO {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwbAdJgUZO .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwbAdJgUZO .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwbAdJgUZO .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwbAdJgUZO .box {
  left: 20%;
}
.cid-uwbAdJgUZO .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwbAdJgUZO .mbr-section-text,
.cid-uwbAdJgUZO .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwbAdJgUZO .text-box {
    display: none;
  }
  .cid-uwbAdJgUZO .mbr-section-title,
  .cid-uwbAdJgUZO .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwbAdJgUZO .box {
    display: none;
  }
  .cid-uwbAdJgUZO .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwbAdJgUZO .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwbAdJgUZO .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwbAdJgUZO .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwbAdJgUZO .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwbAdJgUZO .mbr-section-text DIV {
  text-align: center;
}
.cid-uwbAdJqB3e {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbAdJqB3e H1 {
  text-align: center;
}
.cid-uwbAdJzFFY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbAdJHRjE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbAdJHRjE h2 {
  text-align: left;
}
.cid-uwbAdJHRjE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbAdJHRjE p {
  color: #767676;
  text-align: left;
}
.cid-uwbAdJHRjE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbAdJHRjE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbAdJHRjE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbAdJHRjE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbAdJHRjE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbAdJHRjE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbAdJHRjE .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwbAdJHRjE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwbAdJHRjE .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbAdJHRjE H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwbAdJHRjE P {
  color: #ffffff;
  text-align: left;
}
.cid-uwbAdJHRjE H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwbAdJW4xc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwbAdJW4xc H1 {
  color: #000000;
}
.cid-uxfiZKAHky {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfiZKAHky .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfiZKAHky .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfiZKAHky .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfiZKAHky .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfiZKAHky .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfiZKAHky .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfiZKAHky .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfiZKAHky .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfiZKAHky .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfiZKAHky .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfiZKAHky .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-uxfiZKAHky .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfiZKAHky .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfiZKAHky .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfiZKAHky .mbr-text,
.cid-uxfiZKAHky .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwbAdKw2hj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwbAdKw2hj H1 {
  color: #000000;
}
.cid-uxfj0yZoiK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfj0yZoiK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfj0yZoiK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfj0yZoiK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfj0yZoiK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfj0yZoiK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfj0yZoiK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfj0yZoiK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfj0yZoiK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfj0yZoiK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfj0yZoiK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfj0yZoiK .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-uxfj0yZoiK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfj0yZoiK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfj0yZoiK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfj0yZoiK .mbr-text,
.cid-uxfj0yZoiK .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfj1gdr3r {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfj1gdr3r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfj1gdr3r .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfj1gdr3r .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfj1gdr3r .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfj1gdr3r .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfj1gdr3r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfj1gdr3r .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfj1gdr3r .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfj1gdr3r .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfj1gdr3r .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfj1gdr3r .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-uxfj1gdr3r .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfj1gdr3r .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfj1gdr3r .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfj1gdr3r .mbr-text,
.cid-uxfj1gdr3r .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwbAdLr8DP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwbAdLr8DP H1 {
  color: #000000;
}
.cid-uwbAdLCgB4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwbAdLCgB4 h2 {
  text-align: left;
}
.cid-uwbAdLCgB4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbAdLCgB4 p {
  color: #767676;
  text-align: left;
}
.cid-uwbAdLCgB4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbAdLCgB4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbAdLCgB4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbAdLCgB4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbAdLCgB4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbAdLCgB4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbAdLCgB4 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwbAdLCgB4 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwbAdLCgB4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwbAdLCgB4 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwbAdLCgB4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbAdLTT2v {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwbAdLTT2v H1 {
  color: #000000;
}
.cid-uwbAdM5QtP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwbAdM5QtP .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwbAdM5QtP .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwbAdM5QtP .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwbAdM5QtP .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwbAdM5QtP .box {
  right: 20%;
}
.cid-uwbAdM5QtP .text-box {
  right: 0;
}
.cid-uwbAdM5QtP .mbr-section-title,
.cid-uwbAdM5QtP .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwbAdM5QtP .text-box {
    display: none;
  }
  .cid-uwbAdM5QtP .mbr-section-title,
  .cid-uwbAdM5QtP .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwbAdM5QtP .box {
    display: none;
  }
  .cid-uwbAdM5QtP .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwbAdM5QtP .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwbAdM5QtP .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwbAdM5QtP .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwbAdM5QtP .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwbAdM5QtP .mbr-section-text DIV {
  text-align: center;
}
.cid-uwbAdMicBG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbAdMtJ2L {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwbAdMtJ2L h2 {
  text-align: left;
}
.cid-uwbAdMtJ2L h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbAdMtJ2L p {
  color: #767676;
  text-align: left;
}
.cid-uwbAdMtJ2L .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbAdMtJ2L .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbAdMtJ2L .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbAdMtJ2L .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbAdMtJ2L .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbAdMtJ2L .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbAdMtJ2L .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwbAdMtJ2L .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwbAdMtJ2L .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbAdMtJ2L .mbr-text {
  color: #232323;
}
.cid-uwbAdMJ3IM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwbAdMJ3IM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwbAdMJ3IM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwbAdMJ3IM .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwbAdMJ3IM .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwbAdMJ3IM .container {
    padding: 0 26px;
  }
}
.cid-uwbAdMJ3IM .row {
  justify-content: center;
}
.cid-uwbAdMJ3IM .item {
  margin-bottom: 32px;
}
.cid-uwbAdMJ3IM .item a {
  display: block;
}
.cid-uwbAdMJ3IM .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwbAdMJ3IM .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwbAdMJ3IM .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwbAdMJ3IM .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-uwbAdMJ3IM .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwbAdMJ3IM .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwbAdMJ3IM .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-uwbAdMJ3IM .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwbAdMJ3IM .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwbAdMJ3IM .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwbAdMJ3IM .item-title {
  color: #ffffff;
}
.cid-uwbAdMJ3IM .mbr-date {
  color: #cacaca;
}
.cid-uwbAdMJ3IM .mbr-desc {
  color: #cacaca;
}
.cid-uwbAdMXMN6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwbAdMXMN6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwbAdMXMN6 .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-uwbAdMXMN6 .container {
    padding: 0 16px;
  }
}
.cid-uwbAdMXMN6 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwbAdMXMN6 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwbAdMXMN6 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwbAdMXMN6 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwbAdMXMN6 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwbAdMXMN6 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwbAdMXMN6 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwbAdMXMN6 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwbAdMXMN6 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwbAdMXMN6 .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-uwbAdMXMN6 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwbAdMXMN6 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwbAdMXMN6 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwbAdMXMN6 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwbAdMXMN6 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwbAdMXMN6 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwbAdMXMN6 .dragArea.row .form-group .form-control:hover,
.cid-uwbAdMXMN6 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwbAdMXMN6 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwbAdMXMN6 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwbAdMXMN6 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwbAdMXMN6 .mbr-title {
  color: #ffffff;
}
.cid-uwbAdMXMN6 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwbAdMXMN6 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwbAdMXMN6 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwbAdMXMN6 .list {
  color: #08323C;
}
.cid-uwbAdMXMN6 label {
  color: #08323C;
}
.cid-uwbAdMXMN6 H3 {
  color: #000000;
}
.cid-uwbAdMXMN6 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwbAr6rcWf {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbAr6rcWf H1 {
  text-align: center;
}
.cid-uDmxEvzxWI {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmxEvzxWI .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmxEvzxWI .video-block {
    width: 100% !important;
  }
}
.cid-uwbAr6Hpqu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbAr6RgGz {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwbAr6RgGz .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwbAr6RgGz .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwbAr6RgGz .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwbAr6RgGz .box {
  left: 20%;
}
.cid-uwbAr6RgGz .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwbAr6RgGz .mbr-section-text,
.cid-uwbAr6RgGz .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwbAr6RgGz .text-box {
    display: none;
  }
  .cid-uwbAr6RgGz .mbr-section-title,
  .cid-uwbAr6RgGz .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwbAr6RgGz .box {
    display: none;
  }
  .cid-uwbAr6RgGz .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwbAr6RgGz .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwbAr6RgGz .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwbAr6RgGz .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwbAr6RgGz .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwbAr6RgGz .mbr-section-text DIV {
  text-align: center;
}
.cid-uwbAr71YHU {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbAr71YHU H1 {
  text-align: center;
}
.cid-uwbAr7cSC1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbAr7lXDv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbAr7lXDv h2 {
  text-align: left;
}
.cid-uwbAr7lXDv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbAr7lXDv p {
  color: #767676;
  text-align: left;
}
.cid-uwbAr7lXDv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbAr7lXDv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbAr7lXDv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbAr7lXDv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbAr7lXDv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbAr7lXDv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbAr7lXDv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwbAr7lXDv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwbAr7lXDv .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbAr7lXDv H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwbAr7lXDv P {
  color: #ffffff;
  text-align: left;
}
.cid-uwbAr7lXDv H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwbAr7AVXa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwbAr7AVXa H1 {
  color: #000000;
}
.cid-uxfj9x7UAJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfj9x7UAJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfj9x7UAJ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfj9x7UAJ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfj9x7UAJ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfj9x7UAJ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfj9x7UAJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfj9x7UAJ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfj9x7UAJ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfj9x7UAJ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfj9x7UAJ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfj9x7UAJ .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-uxfj9x7UAJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfj9x7UAJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfj9x7UAJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfj9x7UAJ .mbr-text,
.cid-uxfj9x7UAJ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwbAr85HnI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwbAr85HnI H1 {
  color: #000000;
}
.cid-uxfjaBpW2S {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfjaBpW2S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfjaBpW2S .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfjaBpW2S .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfjaBpW2S .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfjaBpW2S .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfjaBpW2S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfjaBpW2S .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfjaBpW2S .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfjaBpW2S .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfjaBpW2S .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfjaBpW2S .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-uxfjaBpW2S .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfjaBpW2S .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfjaBpW2S .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfjaBpW2S .mbr-text,
.cid-uxfjaBpW2S .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfjbt2MJu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfjbt2MJu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfjbt2MJu .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfjbt2MJu .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfjbt2MJu .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfjbt2MJu .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfjbt2MJu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfjbt2MJu .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfjbt2MJu .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfjbt2MJu .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfjbt2MJu .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfjbt2MJu .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-uxfjbt2MJu .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfjbt2MJu .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfjbt2MJu .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfjbt2MJu .mbr-text,
.cid-uxfjbt2MJu .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwbAr90Jg7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwbAr90Jg7 H1 {
  color: #000000;
}
.cid-uwbAr9b27d {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwbAr9b27d h2 {
  text-align: left;
}
.cid-uwbAr9b27d h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbAr9b27d p {
  color: #767676;
  text-align: left;
}
.cid-uwbAr9b27d .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbAr9b27d .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbAr9b27d .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbAr9b27d .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbAr9b27d .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbAr9b27d .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbAr9b27d .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwbAr9b27d .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwbAr9b27d .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwbAr9b27d .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwbAr9b27d .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbAr9qTlL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwbAr9qTlL H1 {
  color: #000000;
}
.cid-uwbAr9D8Rb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwbAr9D8Rb .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwbAr9D8Rb .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwbAr9D8Rb .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwbAr9D8Rb .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwbAr9D8Rb .box {
  right: 20%;
}
.cid-uwbAr9D8Rb .text-box {
  right: 0;
}
.cid-uwbAr9D8Rb .mbr-section-title,
.cid-uwbAr9D8Rb .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwbAr9D8Rb .text-box {
    display: none;
  }
  .cid-uwbAr9D8Rb .mbr-section-title,
  .cid-uwbAr9D8Rb .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwbAr9D8Rb .box {
    display: none;
  }
  .cid-uwbAr9D8Rb .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwbAr9D8Rb .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwbAr9D8Rb .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwbAr9D8Rb .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwbAr9D8Rb .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwbAr9D8Rb .mbr-section-text DIV {
  text-align: center;
}
.cid-uwbAr9RqkW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbAra3dfV {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwbAra3dfV h2 {
  text-align: left;
}
.cid-uwbAra3dfV h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbAra3dfV p {
  color: #767676;
  text-align: left;
}
.cid-uwbAra3dfV .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbAra3dfV .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbAra3dfV .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbAra3dfV .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbAra3dfV .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbAra3dfV .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbAra3dfV .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwbAra3dfV .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwbAra3dfV .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbAra3dfV .mbr-text {
  color: #232323;
}
.cid-uwbAraira4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwbAraira4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwbAraira4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwbAraira4 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwbAraira4 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwbAraira4 .container {
    padding: 0 26px;
  }
}
.cid-uwbAraira4 .row {
  justify-content: center;
}
.cid-uwbAraira4 .item {
  margin-bottom: 32px;
}
.cid-uwbAraira4 .item a {
  display: block;
}
.cid-uwbAraira4 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwbAraira4 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwbAraira4 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwbAraira4 .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-uwbAraira4 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwbAraira4 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwbAraira4 .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-uwbAraira4 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwbAraira4 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwbAraira4 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwbAraira4 .item-title {
  color: #ffffff;
}
.cid-uwbAraira4 .mbr-date {
  color: #cacaca;
}
.cid-uwbAraira4 .mbr-desc {
  color: #cacaca;
}
.cid-uwbArayynq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwbArayynq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwbArayynq .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-uwbArayynq .container {
    padding: 0 16px;
  }
}
.cid-uwbArayynq .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwbArayynq .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwbArayynq .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwbArayynq .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwbArayynq .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwbArayynq .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwbArayynq .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwbArayynq .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwbArayynq .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwbArayynq .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-uwbArayynq .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwbArayynq .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwbArayynq .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwbArayynq .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwbArayynq .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwbArayynq .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwbArayynq .dragArea.row .form-group .form-control:hover,
.cid-uwbArayynq .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwbArayynq .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwbArayynq .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwbArayynq .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwbArayynq .mbr-title {
  color: #ffffff;
}
.cid-uwbArayynq .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwbArayynq .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwbArayynq .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwbArayynq .list {
  color: #08323C;
}
.cid-uwbArayynq label {
  color: #08323C;
}
.cid-uwbArayynq H3 {
  color: #000000;
}
.cid-uwbArayynq P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwbNU6poNP {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbNU6poNP H1 {
  text-align: center;
}
.cid-uDmxHZNpQA {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmxHZNpQA .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmxHZNpQA .video-block {
    width: 100% !important;
  }
}
.cid-uwbNU6DkGs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbNU6RzzS {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwbNU6RzzS .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwbNU6RzzS .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwbNU6RzzS .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwbNU6RzzS .box {
  left: 20%;
}
.cid-uwbNU6RzzS .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwbNU6RzzS .mbr-section-text,
.cid-uwbNU6RzzS .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwbNU6RzzS .text-box {
    display: none;
  }
  .cid-uwbNU6RzzS .mbr-section-title,
  .cid-uwbNU6RzzS .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwbNU6RzzS .box {
    display: none;
  }
  .cid-uwbNU6RzzS .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwbNU6RzzS .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwbNU6RzzS .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwbNU6RzzS .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwbNU6RzzS .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwbNU6RzzS .mbr-section-text DIV {
  text-align: center;
}
.cid-uwbNU71NY8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbNU71NY8 H1 {
  text-align: center;
}
.cid-uwbNU7a2rH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbNU7j6O7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbNU7j6O7 h2 {
  text-align: left;
}
.cid-uwbNU7j6O7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbNU7j6O7 p {
  color: #767676;
  text-align: left;
}
.cid-uwbNU7j6O7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbNU7j6O7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbNU7j6O7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbNU7j6O7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbNU7j6O7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbNU7j6O7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbNU7j6O7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwbNU7j6O7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwbNU7j6O7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbNU7j6O7 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwbNU7j6O7 P {
  color: #ffffff;
  text-align: left;
}
.cid-uwbNU7j6O7 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwbNU7yUfw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwbNU7yUfw H1 {
  color: #000000;
}
.cid-uxfjkeTLul {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfjkeTLul .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfjkeTLul .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfjkeTLul .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfjkeTLul .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfjkeTLul .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfjkeTLul .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfjkeTLul .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfjkeTLul .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfjkeTLul .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfjkeTLul .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfjkeTLul .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-uxfjkeTLul .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfjkeTLul .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfjkeTLul .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfjkeTLul .mbr-text,
.cid-uxfjkeTLul .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwbNU83Hx7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwbNU83Hx7 H1 {
  color: #000000;
}
.cid-uxfjkWYL3a {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfjkWYL3a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfjkWYL3a .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfjkWYL3a .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfjkWYL3a .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfjkWYL3a .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfjkWYL3a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfjkWYL3a .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfjkWYL3a .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfjkWYL3a .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfjkWYL3a .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfjkWYL3a .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-uxfjkWYL3a .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfjkWYL3a .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfjkWYL3a .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfjkWYL3a .mbr-text,
.cid-uxfjkWYL3a .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfjlzJxd7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfjlzJxd7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfjlzJxd7 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfjlzJxd7 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfjlzJxd7 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfjlzJxd7 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfjlzJxd7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfjlzJxd7 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfjlzJxd7 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfjlzJxd7 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfjlzJxd7 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfjlzJxd7 .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-uxfjlzJxd7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfjlzJxd7 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfjlzJxd7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfjlzJxd7 .mbr-text,
.cid-uxfjlzJxd7 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwbNU8Zk4k {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwbNU8Zk4k H1 {
  color: #000000;
}
.cid-uwbNU9cElb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwbNU9cElb h2 {
  text-align: left;
}
.cid-uwbNU9cElb h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbNU9cElb p {
  color: #767676;
  text-align: left;
}
.cid-uwbNU9cElb .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbNU9cElb .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbNU9cElb .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbNU9cElb .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbNU9cElb .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbNU9cElb .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbNU9cElb .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwbNU9cElb .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwbNU9cElb .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwbNU9cElb .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwbNU9cElb .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbNU9ufOi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwbNU9ufOi H1 {
  color: #000000;
}
.cid-uwbNU9GZsT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwbNU9GZsT .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwbNU9GZsT .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwbNU9GZsT .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwbNU9GZsT .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwbNU9GZsT .box {
  right: 20%;
}
.cid-uwbNU9GZsT .text-box {
  right: 0;
}
.cid-uwbNU9GZsT .mbr-section-title,
.cid-uwbNU9GZsT .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwbNU9GZsT .text-box {
    display: none;
  }
  .cid-uwbNU9GZsT .mbr-section-title,
  .cid-uwbNU9GZsT .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwbNU9GZsT .box {
    display: none;
  }
  .cid-uwbNU9GZsT .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwbNU9GZsT .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwbNU9GZsT .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwbNU9GZsT .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwbNU9GZsT .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwbNU9GZsT .mbr-section-text DIV {
  text-align: center;
}
.cid-uwbNU9UFZ0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbNUa8ZRt {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwbNUa8ZRt h2 {
  text-align: left;
}
.cid-uwbNUa8ZRt h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbNUa8ZRt p {
  color: #767676;
  text-align: left;
}
.cid-uwbNUa8ZRt .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbNUa8ZRt .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbNUa8ZRt .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbNUa8ZRt .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbNUa8ZRt .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbNUa8ZRt .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbNUa8ZRt .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwbNUa8ZRt .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwbNUa8ZRt .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbNUa8ZRt .mbr-text {
  color: #232323;
}
.cid-uwbNUamS5t {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwbNUamS5t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwbNUamS5t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwbNUamS5t .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwbNUamS5t .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwbNUamS5t .container {
    padding: 0 26px;
  }
}
.cid-uwbNUamS5t .row {
  justify-content: center;
}
.cid-uwbNUamS5t .item {
  margin-bottom: 32px;
}
.cid-uwbNUamS5t .item a {
  display: block;
}
.cid-uwbNUamS5t .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwbNUamS5t .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwbNUamS5t .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwbNUamS5t .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-uwbNUamS5t .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwbNUamS5t .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwbNUamS5t .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-uwbNUamS5t .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwbNUamS5t .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwbNUamS5t .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwbNUamS5t .item-title {
  color: #ffffff;
}
.cid-uwbNUamS5t .mbr-date {
  color: #cacaca;
}
.cid-uwbNUamS5t .mbr-desc {
  color: #cacaca;
}
.cid-uwbNUaBFvy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwbNUaBFvy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwbNUaBFvy .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-uwbNUaBFvy .container {
    padding: 0 16px;
  }
}
.cid-uwbNUaBFvy .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwbNUaBFvy .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwbNUaBFvy .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwbNUaBFvy .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwbNUaBFvy .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwbNUaBFvy .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwbNUaBFvy .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwbNUaBFvy .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwbNUaBFvy .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwbNUaBFvy .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-uwbNUaBFvy .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwbNUaBFvy .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwbNUaBFvy .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwbNUaBFvy .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwbNUaBFvy .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwbNUaBFvy .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwbNUaBFvy .dragArea.row .form-group .form-control:hover,
.cid-uwbNUaBFvy .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwbNUaBFvy .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwbNUaBFvy .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwbNUaBFvy .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwbNUaBFvy .mbr-title {
  color: #ffffff;
}
.cid-uwbNUaBFvy .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwbNUaBFvy .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwbNUaBFvy .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwbNUaBFvy .list {
  color: #08323C;
}
.cid-uwbNUaBFvy label {
  color: #08323C;
}
.cid-uwbNUaBFvy H3 {
  color: #000000;
}
.cid-uwbNUaBFvy P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwbOk3Xy1c {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbOk3Xy1c H1 {
  text-align: center;
}
.cid-uDmxKyOSPQ {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmxKyOSPQ .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmxKyOSPQ .video-block {
    width: 100% !important;
  }
}
.cid-uwbOk4e34H {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbOk4rD3p {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwbOk4rD3p .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwbOk4rD3p .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwbOk4rD3p .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwbOk4rD3p .box {
  left: 20%;
}
.cid-uwbOk4rD3p .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwbOk4rD3p .mbr-section-text,
.cid-uwbOk4rD3p .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwbOk4rD3p .text-box {
    display: none;
  }
  .cid-uwbOk4rD3p .mbr-section-title,
  .cid-uwbOk4rD3p .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwbOk4rD3p .box {
    display: none;
  }
  .cid-uwbOk4rD3p .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwbOk4rD3p .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwbOk4rD3p .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwbOk4rD3p .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwbOk4rD3p .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwbOk4rD3p .mbr-section-text DIV {
  text-align: center;
}
.cid-uwbOk4DXKF {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbOk4DXKF H1 {
  text-align: center;
}
.cid-uwbOk4Ngen {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbOk4WCm9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbOk4WCm9 h2 {
  text-align: left;
}
.cid-uwbOk4WCm9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbOk4WCm9 p {
  color: #767676;
  text-align: left;
}
.cid-uwbOk4WCm9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbOk4WCm9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbOk4WCm9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbOk4WCm9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbOk4WCm9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbOk4WCm9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbOk4WCm9 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwbOk4WCm9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwbOk4WCm9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbOk4WCm9 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwbOk4WCm9 P {
  color: #ffffff;
  text-align: left;
}
.cid-uwbOk4WCm9 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwbOk5cMsC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwbOk5cMsC H1 {
  color: #000000;
}
.cid-uxfjvukAXn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfjvukAXn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfjvukAXn .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfjvukAXn .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfjvukAXn .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfjvukAXn .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfjvukAXn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfjvukAXn .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfjvukAXn .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfjvukAXn .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfjvukAXn .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfjvukAXn .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-uxfjvukAXn .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfjvukAXn .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfjvukAXn .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfjvukAXn .mbr-text,
.cid-uxfjvukAXn .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwbOk5JDDV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwbOk5JDDV H1 {
  color: #000000;
}
.cid-uxfjwbyHOj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfjwbyHOj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfjwbyHOj .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfjwbyHOj .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfjwbyHOj .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfjwbyHOj .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfjwbyHOj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfjwbyHOj .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfjwbyHOj .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfjwbyHOj .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfjwbyHOj .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfjwbyHOj .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-uxfjwbyHOj .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfjwbyHOj .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfjwbyHOj .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfjwbyHOj .mbr-text,
.cid-uxfjwbyHOj .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfjwOGBOl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfjwOGBOl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfjwOGBOl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfjwOGBOl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfjwOGBOl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfjwOGBOl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfjwOGBOl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfjwOGBOl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfjwOGBOl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfjwOGBOl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfjwOGBOl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfjwOGBOl .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-uxfjwOGBOl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfjwOGBOl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfjwOGBOl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfjwOGBOl .mbr-text,
.cid-uxfjwOGBOl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwbOk6I7Ej {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwbOk6I7Ej H1 {
  color: #000000;
}
.cid-uwbOk6W7Lb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwbOk6W7Lb h2 {
  text-align: left;
}
.cid-uwbOk6W7Lb h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbOk6W7Lb p {
  color: #767676;
  text-align: left;
}
.cid-uwbOk6W7Lb .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbOk6W7Lb .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbOk6W7Lb .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbOk6W7Lb .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbOk6W7Lb .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbOk6W7Lb .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbOk6W7Lb .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwbOk6W7Lb .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwbOk6W7Lb .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwbOk6W7Lb .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwbOk6W7Lb .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbOk7dFQk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwbOk7dFQk H1 {
  color: #000000;
}
.cid-uwbOk7s5Zq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwbOk7s5Zq .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwbOk7s5Zq .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwbOk7s5Zq .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwbOk7s5Zq .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwbOk7s5Zq .box {
  right: 20%;
}
.cid-uwbOk7s5Zq .text-box {
  right: 0;
}
.cid-uwbOk7s5Zq .mbr-section-title,
.cid-uwbOk7s5Zq .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwbOk7s5Zq .text-box {
    display: none;
  }
  .cid-uwbOk7s5Zq .mbr-section-title,
  .cid-uwbOk7s5Zq .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwbOk7s5Zq .box {
    display: none;
  }
  .cid-uwbOk7s5Zq .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwbOk7s5Zq .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwbOk7s5Zq .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwbOk7s5Zq .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwbOk7s5Zq .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwbOk7s5Zq .mbr-section-text DIV {
  text-align: center;
}
.cid-uwbOk7GLLC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbOk7SRZP {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwbOk7SRZP h2 {
  text-align: left;
}
.cid-uwbOk7SRZP h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbOk7SRZP p {
  color: #767676;
  text-align: left;
}
.cid-uwbOk7SRZP .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbOk7SRZP .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbOk7SRZP .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbOk7SRZP .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbOk7SRZP .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbOk7SRZP .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbOk7SRZP .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwbOk7SRZP .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwbOk7SRZP .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbOk7SRZP .mbr-text {
  color: #232323;
}
.cid-uwbOk8drAY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwbOk8drAY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwbOk8drAY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwbOk8drAY .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwbOk8drAY .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwbOk8drAY .container {
    padding: 0 26px;
  }
}
.cid-uwbOk8drAY .row {
  justify-content: center;
}
.cid-uwbOk8drAY .item {
  margin-bottom: 32px;
}
.cid-uwbOk8drAY .item a {
  display: block;
}
.cid-uwbOk8drAY .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwbOk8drAY .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwbOk8drAY .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwbOk8drAY .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-uwbOk8drAY .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwbOk8drAY .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwbOk8drAY .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-uwbOk8drAY .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwbOk8drAY .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwbOk8drAY .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwbOk8drAY .item-title {
  color: #ffffff;
}
.cid-uwbOk8drAY .mbr-date {
  color: #cacaca;
}
.cid-uwbOk8drAY .mbr-desc {
  color: #cacaca;
}
.cid-uwbOk8wsq5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwbOk8wsq5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwbOk8wsq5 .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-uwbOk8wsq5 .container {
    padding: 0 16px;
  }
}
.cid-uwbOk8wsq5 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwbOk8wsq5 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwbOk8wsq5 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwbOk8wsq5 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwbOk8wsq5 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwbOk8wsq5 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwbOk8wsq5 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwbOk8wsq5 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwbOk8wsq5 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwbOk8wsq5 .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-uwbOk8wsq5 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwbOk8wsq5 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwbOk8wsq5 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwbOk8wsq5 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwbOk8wsq5 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwbOk8wsq5 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwbOk8wsq5 .dragArea.row .form-group .form-control:hover,
.cid-uwbOk8wsq5 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwbOk8wsq5 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwbOk8wsq5 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwbOk8wsq5 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwbOk8wsq5 .mbr-title {
  color: #ffffff;
}
.cid-uwbOk8wsq5 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwbOk8wsq5 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwbOk8wsq5 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwbOk8wsq5 .list {
  color: #08323C;
}
.cid-uwbOk8wsq5 label {
  color: #08323C;
}
.cid-uwbOk8wsq5 H3 {
  color: #000000;
}
.cid-uwbOk8wsq5 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwbOIhCGZ3 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbOIhCGZ3 H1 {
  text-align: center;
}
.cid-uDmxQ864DW {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmxQ864DW .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmxQ864DW .video-block {
    width: 100% !important;
  }
}
.cid-uwbOIhSlzC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbOIi3sA4 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwbOIi3sA4 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwbOIi3sA4 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwbOIi3sA4 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwbOIi3sA4 .box {
  left: 20%;
}
.cid-uwbOIi3sA4 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwbOIi3sA4 .mbr-section-text,
.cid-uwbOIi3sA4 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwbOIi3sA4 .text-box {
    display: none;
  }
  .cid-uwbOIi3sA4 .mbr-section-title,
  .cid-uwbOIi3sA4 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwbOIi3sA4 .box {
    display: none;
  }
  .cid-uwbOIi3sA4 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwbOIi3sA4 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwbOIi3sA4 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwbOIi3sA4 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwbOIi3sA4 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwbOIi3sA4 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwbOIieZQ4 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbOIieZQ4 H1 {
  text-align: center;
}
.cid-uwbOIiou57 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbOIiz7wc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbOIiz7wc h2 {
  text-align: left;
}
.cid-uwbOIiz7wc h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbOIiz7wc p {
  color: #767676;
  text-align: left;
}
.cid-uwbOIiz7wc .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbOIiz7wc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbOIiz7wc .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbOIiz7wc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbOIiz7wc .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbOIiz7wc .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbOIiz7wc .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwbOIiz7wc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwbOIiz7wc .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbOIiz7wc H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwbOIiz7wc P {
  color: #ffffff;
  text-align: left;
}
.cid-uwbOIiz7wc H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwbOIiQgCG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwbOIiQgCG H1 {
  color: #000000;
}
.cid-uxfjEJvZlR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfjEJvZlR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfjEJvZlR .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfjEJvZlR .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfjEJvZlR .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfjEJvZlR .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfjEJvZlR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfjEJvZlR .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfjEJvZlR .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfjEJvZlR .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfjEJvZlR .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfjEJvZlR .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-uxfjEJvZlR .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfjEJvZlR .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfjEJvZlR .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfjEJvZlR .mbr-text,
.cid-uxfjEJvZlR .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwbOIjvefX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwbOIjvefX H1 {
  color: #000000;
}
.cid-uxfjFsPUOM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfjFsPUOM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfjFsPUOM .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfjFsPUOM .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfjFsPUOM .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfjFsPUOM .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfjFsPUOM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfjFsPUOM .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfjFsPUOM .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfjFsPUOM .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfjFsPUOM .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfjFsPUOM .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-uxfjFsPUOM .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfjFsPUOM .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfjFsPUOM .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfjFsPUOM .mbr-text,
.cid-uxfjFsPUOM .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfjG7NcUP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfjG7NcUP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfjG7NcUP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfjG7NcUP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfjG7NcUP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfjG7NcUP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfjG7NcUP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfjG7NcUP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfjG7NcUP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfjG7NcUP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfjG7NcUP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfjG7NcUP .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-uxfjG7NcUP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfjG7NcUP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfjG7NcUP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfjG7NcUP .mbr-text,
.cid-uxfjG7NcUP .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwbOIkzRZI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwbOIkzRZI H1 {
  color: #000000;
}
.cid-uwbOIkLLUR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwbOIkLLUR h2 {
  text-align: left;
}
.cid-uwbOIkLLUR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbOIkLLUR p {
  color: #767676;
  text-align: left;
}
.cid-uwbOIkLLUR .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbOIkLLUR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbOIkLLUR .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbOIkLLUR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbOIkLLUR .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbOIkLLUR .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbOIkLLUR .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwbOIkLLUR .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwbOIkLLUR .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwbOIkLLUR .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwbOIkLLUR .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbOIl1kOG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwbOIl1kOG H1 {
  color: #000000;
}
.cid-uwbOIlh9ic {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwbOIlh9ic .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwbOIlh9ic .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwbOIlh9ic .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwbOIlh9ic .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwbOIlh9ic .box {
  right: 20%;
}
.cid-uwbOIlh9ic .text-box {
  right: 0;
}
.cid-uwbOIlh9ic .mbr-section-title,
.cid-uwbOIlh9ic .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwbOIlh9ic .text-box {
    display: none;
  }
  .cid-uwbOIlh9ic .mbr-section-title,
  .cid-uwbOIlh9ic .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwbOIlh9ic .box {
    display: none;
  }
  .cid-uwbOIlh9ic .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwbOIlh9ic .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwbOIlh9ic .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwbOIlh9ic .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwbOIlh9ic .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwbOIlh9ic .mbr-section-text DIV {
  text-align: center;
}
.cid-uwbOIlDWil {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbOIlSbJA {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwbOIlSbJA h2 {
  text-align: left;
}
.cid-uwbOIlSbJA h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbOIlSbJA p {
  color: #767676;
  text-align: left;
}
.cid-uwbOIlSbJA .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbOIlSbJA .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbOIlSbJA .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbOIlSbJA .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbOIlSbJA .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbOIlSbJA .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbOIlSbJA .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwbOIlSbJA .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwbOIlSbJA .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbOIlSbJA .mbr-text {
  color: #232323;
}
.cid-uwbOIm9q5y {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwbOIm9q5y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwbOIm9q5y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwbOIm9q5y .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwbOIm9q5y .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwbOIm9q5y .container {
    padding: 0 26px;
  }
}
.cid-uwbOIm9q5y .row {
  justify-content: center;
}
.cid-uwbOIm9q5y .item {
  margin-bottom: 32px;
}
.cid-uwbOIm9q5y .item a {
  display: block;
}
.cid-uwbOIm9q5y .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwbOIm9q5y .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwbOIm9q5y .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwbOIm9q5y .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-uwbOIm9q5y .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwbOIm9q5y .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwbOIm9q5y .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-uwbOIm9q5y .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwbOIm9q5y .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwbOIm9q5y .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwbOIm9q5y .item-title {
  color: #ffffff;
}
.cid-uwbOIm9q5y .mbr-date {
  color: #cacaca;
}
.cid-uwbOIm9q5y .mbr-desc {
  color: #cacaca;
}
.cid-uwbOImthps {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwbOImthps .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwbOImthps .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-uwbOImthps .container {
    padding: 0 16px;
  }
}
.cid-uwbOImthps .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwbOImthps .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwbOImthps .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwbOImthps .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwbOImthps .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwbOImthps .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwbOImthps .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwbOImthps .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwbOImthps .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwbOImthps .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-uwbOImthps .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwbOImthps .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwbOImthps .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwbOImthps .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwbOImthps .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwbOImthps .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwbOImthps .dragArea.row .form-group .form-control:hover,
.cid-uwbOImthps .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwbOImthps .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwbOImthps .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwbOImthps .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwbOImthps .mbr-title {
  color: #ffffff;
}
.cid-uwbOImthps .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwbOImthps .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwbOImthps .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwbOImthps .list {
  color: #08323C;
}
.cid-uwbOImthps label {
  color: #08323C;
}
.cid-uwbOImthps H3 {
  color: #000000;
}
.cid-uwbOImthps P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwbOY7nVyj {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbOY7nVyj H1 {
  text-align: center;
}
.cid-uDmxSL9JOu {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmxSL9JOu .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmxSL9JOu .video-block {
    width: 100% !important;
  }
}
.cid-uwbOY7Jyl6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbOY7Wa9s {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwbOY7Wa9s .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwbOY7Wa9s .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwbOY7Wa9s .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwbOY7Wa9s .box {
  left: 20%;
}
.cid-uwbOY7Wa9s .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwbOY7Wa9s .mbr-section-text,
.cid-uwbOY7Wa9s .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwbOY7Wa9s .text-box {
    display: none;
  }
  .cid-uwbOY7Wa9s .mbr-section-title,
  .cid-uwbOY7Wa9s .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwbOY7Wa9s .box {
    display: none;
  }
  .cid-uwbOY7Wa9s .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwbOY7Wa9s .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwbOY7Wa9s .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwbOY7Wa9s .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwbOY7Wa9s .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwbOY7Wa9s .mbr-section-text DIV {
  text-align: center;
}
.cid-uwbOY8aUEQ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbOY8aUEQ H1 {
  text-align: center;
}
.cid-uwbOY8legt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbOY8v98U {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwbOY8v98U h2 {
  text-align: left;
}
.cid-uwbOY8v98U h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbOY8v98U p {
  color: #767676;
  text-align: left;
}
.cid-uwbOY8v98U .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbOY8v98U .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbOY8v98U .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbOY8v98U .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbOY8v98U .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbOY8v98U .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbOY8v98U .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwbOY8v98U .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwbOY8v98U .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbOY8v98U H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwbOY8v98U P {
  color: #ffffff;
  text-align: left;
}
.cid-uwbOY8v98U H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwbOY8Mbwf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwbOY8Mbwf H1 {
  color: #000000;
}
.cid-uxfjQn4Qga {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfjQn4Qga .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfjQn4Qga .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfjQn4Qga .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfjQn4Qga .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfjQn4Qga .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfjQn4Qga .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfjQn4Qga .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfjQn4Qga .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfjQn4Qga .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfjQn4Qga .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfjQn4Qga .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-uxfjQn4Qga .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfjQn4Qga .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfjQn4Qga .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfjQn4Qga .mbr-text,
.cid-uxfjQn4Qga .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwbOY9lAJD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwbOY9lAJD H1 {
  color: #000000;
}
.cid-uxfjRdCp8p {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfjRdCp8p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfjRdCp8p .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfjRdCp8p .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfjRdCp8p .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfjRdCp8p .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfjRdCp8p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfjRdCp8p .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfjRdCp8p .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfjRdCp8p .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfjRdCp8p .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfjRdCp8p .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-uxfjRdCp8p .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfjRdCp8p .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfjRdCp8p .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfjRdCp8p .mbr-text,
.cid-uxfjRdCp8p .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfjRROHE6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfjRROHE6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfjRROHE6 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfjRROHE6 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfjRROHE6 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfjRROHE6 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfjRROHE6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfjRROHE6 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfjRROHE6 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfjRROHE6 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfjRROHE6 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfjRROHE6 .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-uxfjRROHE6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfjRROHE6 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfjRROHE6 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfjRROHE6 .mbr-text,
.cid-uxfjRROHE6 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwbOYao63H {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwbOYao63H H1 {
  color: #000000;
}
.cid-uwbOYaDega {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwbOYaDega h2 {
  text-align: left;
}
.cid-uwbOYaDega h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbOYaDega p {
  color: #767676;
  text-align: left;
}
.cid-uwbOYaDega .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbOYaDega .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbOYaDega .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbOYaDega .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbOYaDega .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbOYaDega .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbOYaDega .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwbOYaDega .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwbOYaDega .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwbOYaDega .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwbOYaDega .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbOYaWuKc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwbOYaWuKc H1 {
  color: #000000;
}
.cid-uwbOYb9U3q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwbOYb9U3q .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwbOYb9U3q .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwbOYb9U3q .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwbOYb9U3q .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwbOYb9U3q .box {
  right: 20%;
}
.cid-uwbOYb9U3q .text-box {
  right: 0;
}
.cid-uwbOYb9U3q .mbr-section-title,
.cid-uwbOYb9U3q .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwbOYb9U3q .text-box {
    display: none;
  }
  .cid-uwbOYb9U3q .mbr-section-title,
  .cid-uwbOYb9U3q .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwbOYb9U3q .box {
    display: none;
  }
  .cid-uwbOYb9U3q .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwbOYb9U3q .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwbOYb9U3q .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwbOYb9U3q .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwbOYb9U3q .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwbOYb9U3q .mbr-section-text DIV {
  text-align: center;
}
.cid-uwbOYboqmM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwbOYbCJYY {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwbOYbCJYY h2 {
  text-align: left;
}
.cid-uwbOYbCJYY h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwbOYbCJYY p {
  color: #767676;
  text-align: left;
}
.cid-uwbOYbCJYY .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwbOYbCJYY .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwbOYbCJYY .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwbOYbCJYY .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwbOYbCJYY .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwbOYbCJYY .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwbOYbCJYY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwbOYbCJYY .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwbOYbCJYY .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwbOYbCJYY .mbr-text {
  color: #232323;
}
.cid-uwbOYbZw8V {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwbOYbZw8V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwbOYbZw8V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwbOYbZw8V .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwbOYbZw8V .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwbOYbZw8V .container {
    padding: 0 26px;
  }
}
.cid-uwbOYbZw8V .row {
  justify-content: center;
}
.cid-uwbOYbZw8V .item {
  margin-bottom: 32px;
}
.cid-uwbOYbZw8V .item a {
  display: block;
}
.cid-uwbOYbZw8V .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwbOYbZw8V .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwbOYbZw8V .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwbOYbZw8V .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-uwbOYbZw8V .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwbOYbZw8V .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwbOYbZw8V .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-uwbOYbZw8V .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwbOYbZw8V .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwbOYbZw8V .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwbOYbZw8V .item-title {
  color: #ffffff;
}
.cid-uwbOYbZw8V .mbr-date {
  color: #cacaca;
}
.cid-uwbOYbZw8V .mbr-desc {
  color: #cacaca;
}
.cid-uwbOYcgoPk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwbOYcgoPk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwbOYcgoPk .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-uwbOYcgoPk .container {
    padding: 0 16px;
  }
}
.cid-uwbOYcgoPk .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwbOYcgoPk .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwbOYcgoPk .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwbOYcgoPk .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwbOYcgoPk .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwbOYcgoPk .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwbOYcgoPk .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwbOYcgoPk .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwbOYcgoPk .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwbOYcgoPk .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-uwbOYcgoPk .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwbOYcgoPk .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwbOYcgoPk .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwbOYcgoPk .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwbOYcgoPk .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwbOYcgoPk .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwbOYcgoPk .dragArea.row .form-group .form-control:hover,
.cid-uwbOYcgoPk .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwbOYcgoPk .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwbOYcgoPk .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwbOYcgoPk .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwbOYcgoPk .mbr-title {
  color: #ffffff;
}
.cid-uwbOYcgoPk .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwbOYcgoPk .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwbOYcgoPk .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwbOYcgoPk .list {
  color: #08323C;
}
.cid-uwbOYcgoPk label {
  color: #08323C;
}
.cid-uwbOYcgoPk H3 {
  color: #000000;
}
.cid-uwbOYcgoPk P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwijJ6udLT {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwijJ6udLT H1 {
  text-align: center;
}
.cid-uDmx5h48GB {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmx5h48GB .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmx5h48GB .video-block {
    width: 100% !important;
  }
}
.cid-uwijJ6T8Ex {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwijJ7fSxY {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwijJ7fSxY .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwijJ7fSxY .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwijJ7fSxY .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwijJ7fSxY .box {
  left: 20%;
}
.cid-uwijJ7fSxY .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwijJ7fSxY .mbr-section-text,
.cid-uwijJ7fSxY .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwijJ7fSxY .text-box {
    display: none;
  }
  .cid-uwijJ7fSxY .mbr-section-title,
  .cid-uwijJ7fSxY .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwijJ7fSxY .box {
    display: none;
  }
  .cid-uwijJ7fSxY .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwijJ7fSxY .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwijJ7fSxY .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwijJ7fSxY .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwijJ7fSxY .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwijJ7fSxY .mbr-section-text DIV {
  text-align: center;
}
.cid-uwijJ7vutX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwijJ7vutX H1 {
  text-align: center;
}
.cid-uwijJ7KvWR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwijJ80Nld {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwijJ80Nld h2 {
  text-align: left;
}
.cid-uwijJ80Nld h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwijJ80Nld p {
  color: #767676;
  text-align: left;
}
.cid-uwijJ80Nld .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwijJ80Nld .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwijJ80Nld .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwijJ80Nld .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwijJ80Nld .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwijJ80Nld .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwijJ80Nld .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwijJ80Nld .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwijJ80Nld .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwijJ80Nld H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwijJ80Nld P {
  color: #ffffff;
  text-align: left;
}
.cid-uwijJ80Nld H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwijJ8pmDN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwijJ8pmDN H1 {
  color: #000000;
}
.cid-uzGnK1iGrW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGnK1iGrW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGnK1iGrW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGnK1iGrW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGnK1iGrW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGnK1iGrW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGnK1iGrW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGnK1iGrW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGnK1iGrW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGnK1iGrW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGnK1iGrW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGnK1iGrW .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-uzGnK1iGrW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGnK1iGrW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGnK1iGrW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGnK1iGrW .mbr-text,
.cid-uzGnK1iGrW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwijJ9gW4v {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwijJ9gW4v H1 {
  color: #000000;
}
.cid-uzGnKLi6iI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGnKLi6iI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGnKLi6iI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGnKLi6iI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGnKLi6iI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGnKLi6iI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGnKLi6iI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGnKLi6iI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGnKLi6iI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGnKLi6iI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGnKLi6iI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGnKLi6iI .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-uzGnKLi6iI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGnKLi6iI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGnKLi6iI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGnKLi6iI .mbr-text,
.cid-uzGnKLi6iI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGnLrEMfC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGnLrEMfC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGnLrEMfC .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGnLrEMfC .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGnLrEMfC .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGnLrEMfC .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGnLrEMfC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGnLrEMfC .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGnLrEMfC .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGnLrEMfC .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGnLrEMfC .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGnLrEMfC .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-uzGnLrEMfC .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGnLrEMfC .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGnLrEMfC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGnLrEMfC .mbr-text,
.cid-uzGnLrEMfC .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwijJaxZwC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwijJaxZwC H1 {
  color: #000000;
}
.cid-uwijJaRzZu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwijJaRzZu h2 {
  text-align: left;
}
.cid-uwijJaRzZu h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwijJaRzZu p {
  color: #767676;
  text-align: left;
}
.cid-uwijJaRzZu .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwijJaRzZu .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwijJaRzZu .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwijJaRzZu .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwijJaRzZu .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwijJaRzZu .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwijJaRzZu .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwijJaRzZu .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwijJaRzZu .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwijJaRzZu .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwijJaRzZu .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwijJbjQDI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwijJbjQDI H1 {
  color: #000000;
}
.cid-uwijJbEPwQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwijJbEPwQ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwijJbEPwQ .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwijJbEPwQ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwijJbEPwQ .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwijJbEPwQ .box {
  right: 20%;
}
.cid-uwijJbEPwQ .text-box {
  right: 0;
}
.cid-uwijJbEPwQ .mbr-section-title,
.cid-uwijJbEPwQ .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwijJbEPwQ .text-box {
    display: none;
  }
  .cid-uwijJbEPwQ .mbr-section-title,
  .cid-uwijJbEPwQ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwijJbEPwQ .box {
    display: none;
  }
  .cid-uwijJbEPwQ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwijJbEPwQ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwijJbEPwQ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwijJbEPwQ .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwijJbEPwQ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwijJbEPwQ .mbr-section-text DIV {
  text-align: center;
}
.cid-uwijJbYT0V {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwijJclvQs {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwijJclvQs h2 {
  text-align: left;
}
.cid-uwijJclvQs h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwijJclvQs p {
  color: #767676;
  text-align: left;
}
.cid-uwijJclvQs .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwijJclvQs .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwijJclvQs .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwijJclvQs .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwijJclvQs .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwijJclvQs .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwijJclvQs .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwijJclvQs .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwijJclvQs .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwijJclvQs .mbr-text {
  color: #232323;
}
.cid-uwijJcIPJ3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwijJcIPJ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwijJcIPJ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwijJcIPJ3 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwijJcIPJ3 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwijJcIPJ3 .container {
    padding: 0 26px;
  }
}
.cid-uwijJcIPJ3 .row {
  justify-content: center;
}
.cid-uwijJcIPJ3 .item {
  margin-bottom: 32px;
}
.cid-uwijJcIPJ3 .item a {
  display: block;
}
.cid-uwijJcIPJ3 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwijJcIPJ3 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwijJcIPJ3 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwijJcIPJ3 .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-uwijJcIPJ3 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwijJcIPJ3 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwijJcIPJ3 .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-uwijJcIPJ3 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwijJcIPJ3 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwijJcIPJ3 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwijJcIPJ3 .item-title {
  color: #ffffff;
}
.cid-uwijJcIPJ3 .mbr-date {
  color: #cacaca;
}
.cid-uwijJcIPJ3 .mbr-desc {
  color: #cacaca;
}
.cid-uwijJd6kcx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwijJd6kcx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwijJd6kcx .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-uwijJd6kcx .container {
    padding: 0 16px;
  }
}
.cid-uwijJd6kcx .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwijJd6kcx .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwijJd6kcx .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwijJd6kcx .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwijJd6kcx .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwijJd6kcx .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwijJd6kcx .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwijJd6kcx .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwijJd6kcx .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwijJd6kcx .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-uwijJd6kcx .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwijJd6kcx .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwijJd6kcx .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwijJd6kcx .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwijJd6kcx .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwijJd6kcx .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwijJd6kcx .dragArea.row .form-group .form-control:hover,
.cid-uwijJd6kcx .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwijJd6kcx .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwijJd6kcx .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwijJd6kcx .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwijJd6kcx .mbr-title {
  color: #ffffff;
}
.cid-uwijJd6kcx .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwijJd6kcx .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwijJd6kcx .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwijJd6kcx .list {
  color: #08323C;
}
.cid-uwijJd6kcx label {
  color: #08323C;
}
.cid-uwijJd6kcx H3 {
  color: #000000;
}
.cid-uwijJd6kcx P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwikmSYwlg {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwikmSYwlg H1 {
  text-align: center;
}
.cid-uDmx81lHhJ {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmx81lHhJ .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmx81lHhJ .video-block {
    width: 100% !important;
  }
}
.cid-uwikmTjSbH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwikmTFPhT {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwikmTFPhT .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwikmTFPhT .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwikmTFPhT .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwikmTFPhT .box {
  left: 20%;
}
.cid-uwikmTFPhT .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwikmTFPhT .mbr-section-text,
.cid-uwikmTFPhT .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwikmTFPhT .text-box {
    display: none;
  }
  .cid-uwikmTFPhT .mbr-section-title,
  .cid-uwikmTFPhT .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwikmTFPhT .box {
    display: none;
  }
  .cid-uwikmTFPhT .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwikmTFPhT .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwikmTFPhT .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwikmTFPhT .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwikmTFPhT .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwikmTFPhT .mbr-section-text DIV {
  text-align: center;
}
.cid-uwikmTXJYb {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwikmTXJYb H1 {
  text-align: center;
}
.cid-uwikmUdBmb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwikmUsJdJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwikmUsJdJ h2 {
  text-align: left;
}
.cid-uwikmUsJdJ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwikmUsJdJ p {
  color: #767676;
  text-align: left;
}
.cid-uwikmUsJdJ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwikmUsJdJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwikmUsJdJ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwikmUsJdJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwikmUsJdJ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwikmUsJdJ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwikmUsJdJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwikmUsJdJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwikmUsJdJ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwikmUsJdJ H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwikmUsJdJ P {
  color: #ffffff;
  text-align: left;
}
.cid-uwikmUsJdJ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwikmUScoS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwikmUScoS H1 {
  color: #000000;
}
.cid-uzGofCpUNE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGofCpUNE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGofCpUNE .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGofCpUNE .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGofCpUNE .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGofCpUNE .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGofCpUNE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGofCpUNE .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGofCpUNE .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGofCpUNE .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGofCpUNE .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGofCpUNE .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-uzGofCpUNE .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGofCpUNE .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGofCpUNE .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGofCpUNE .mbr-text,
.cid-uzGofCpUNE .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwikmVAmhu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwikmVAmhu H1 {
  color: #000000;
}
.cid-uzGogiOfrO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGogiOfrO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGogiOfrO .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGogiOfrO .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGogiOfrO .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGogiOfrO .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGogiOfrO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGogiOfrO .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGogiOfrO .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGogiOfrO .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGogiOfrO .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGogiOfrO .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-uzGogiOfrO .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGogiOfrO .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGogiOfrO .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGogiOfrO .mbr-text,
.cid-uzGogiOfrO .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGoh0Cyj0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGoh0Cyj0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGoh0Cyj0 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGoh0Cyj0 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGoh0Cyj0 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGoh0Cyj0 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGoh0Cyj0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGoh0Cyj0 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGoh0Cyj0 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGoh0Cyj0 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGoh0Cyj0 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGoh0Cyj0 .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-uzGoh0Cyj0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGoh0Cyj0 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGoh0Cyj0 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGoh0Cyj0 .mbr-text,
.cid-uzGoh0Cyj0 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwikmWRfJ4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwikmWRfJ4 H1 {
  color: #000000;
}
.cid-uwikmXc1uA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwikmXc1uA h2 {
  text-align: left;
}
.cid-uwikmXc1uA h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwikmXc1uA p {
  color: #767676;
  text-align: left;
}
.cid-uwikmXc1uA .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwikmXc1uA .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwikmXc1uA .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwikmXc1uA .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwikmXc1uA .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwikmXc1uA .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwikmXc1uA .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwikmXc1uA .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwikmXc1uA .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwikmXc1uA .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwikmXc1uA .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwikmXEncg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwikmXEncg H1 {
  color: #000000;
}
.cid-uwikmXVCze {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwikmXVCze .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwikmXVCze .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwikmXVCze .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwikmXVCze .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwikmXVCze .box {
  right: 20%;
}
.cid-uwikmXVCze .text-box {
  right: 0;
}
.cid-uwikmXVCze .mbr-section-title,
.cid-uwikmXVCze .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwikmXVCze .text-box {
    display: none;
  }
  .cid-uwikmXVCze .mbr-section-title,
  .cid-uwikmXVCze .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwikmXVCze .box {
    display: none;
  }
  .cid-uwikmXVCze .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwikmXVCze .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwikmXVCze .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwikmXVCze .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwikmXVCze .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwikmXVCze .mbr-section-text DIV {
  text-align: center;
}
.cid-uwikmYjnKk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwikmYDV51 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwikmYDV51 h2 {
  text-align: left;
}
.cid-uwikmYDV51 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwikmYDV51 p {
  color: #767676;
  text-align: left;
}
.cid-uwikmYDV51 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwikmYDV51 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwikmYDV51 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwikmYDV51 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwikmYDV51 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwikmYDV51 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwikmYDV51 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwikmYDV51 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwikmYDV51 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwikmYDV51 .mbr-text {
  color: #232323;
}
.cid-uwikmYZFVF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwikmYZFVF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwikmYZFVF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwikmYZFVF .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwikmYZFVF .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwikmYZFVF .container {
    padding: 0 26px;
  }
}
.cid-uwikmYZFVF .row {
  justify-content: center;
}
.cid-uwikmYZFVF .item {
  margin-bottom: 32px;
}
.cid-uwikmYZFVF .item a {
  display: block;
}
.cid-uwikmYZFVF .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwikmYZFVF .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwikmYZFVF .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwikmYZFVF .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-uwikmYZFVF .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwikmYZFVF .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwikmYZFVF .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-uwikmYZFVF .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwikmYZFVF .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwikmYZFVF .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwikmYZFVF .item-title {
  color: #ffffff;
}
.cid-uwikmYZFVF .mbr-date {
  color: #cacaca;
}
.cid-uwikmYZFVF .mbr-desc {
  color: #cacaca;
}
.cid-uwikmZmBo7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwikmZmBo7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwikmZmBo7 .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-uwikmZmBo7 .container {
    padding: 0 16px;
  }
}
.cid-uwikmZmBo7 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwikmZmBo7 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwikmZmBo7 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwikmZmBo7 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwikmZmBo7 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwikmZmBo7 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwikmZmBo7 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwikmZmBo7 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwikmZmBo7 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwikmZmBo7 .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-uwikmZmBo7 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwikmZmBo7 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwikmZmBo7 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwikmZmBo7 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwikmZmBo7 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwikmZmBo7 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwikmZmBo7 .dragArea.row .form-group .form-control:hover,
.cid-uwikmZmBo7 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwikmZmBo7 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwikmZmBo7 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwikmZmBo7 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwikmZmBo7 .mbr-title {
  color: #ffffff;
}
.cid-uwikmZmBo7 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwikmZmBo7 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwikmZmBo7 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwikmZmBo7 .list {
  color: #08323C;
}
.cid-uwikmZmBo7 label {
  color: #08323C;
}
.cid-uwikmZmBo7 H3 {
  color: #000000;
}
.cid-uwikmZmBo7 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwimcy2JIX {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwimcy2JIX H1 {
  text-align: center;
}
.cid-uDmxaPFVOX {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmxaPFVOX .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmxaPFVOX .video-block {
    width: 100% !important;
  }
}
.cid-uwimcyobN3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwimcyKYak {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwimcyKYak .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwimcyKYak .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwimcyKYak .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwimcyKYak .box {
  left: 20%;
}
.cid-uwimcyKYak .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwimcyKYak .mbr-section-text,
.cid-uwimcyKYak .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwimcyKYak .text-box {
    display: none;
  }
  .cid-uwimcyKYak .mbr-section-title,
  .cid-uwimcyKYak .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwimcyKYak .box {
    display: none;
  }
  .cid-uwimcyKYak .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwimcyKYak .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwimcyKYak .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwimcyKYak .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwimcyKYak .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwimcyKYak .mbr-section-text DIV {
  text-align: center;
}
.cid-uwimcz1YGR {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwimcz1YGR H1 {
  text-align: center;
}
.cid-uwimczgXOF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwimczwQIL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwimczwQIL h2 {
  text-align: left;
}
.cid-uwimczwQIL h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwimczwQIL p {
  color: #767676;
  text-align: left;
}
.cid-uwimczwQIL .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwimczwQIL .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwimczwQIL .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwimczwQIL .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwimczwQIL .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwimczwQIL .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwimczwQIL .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwimczwQIL .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwimczwQIL .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwimczwQIL H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwimczwQIL P {
  color: #ffffff;
  text-align: left;
}
.cid-uwimczwQIL H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwimczSkHM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwimczSkHM H1 {
  color: #000000;
}
.cid-uzGoADeLZV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGoADeLZV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGoADeLZV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGoADeLZV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGoADeLZV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGoADeLZV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGoADeLZV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGoADeLZV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGoADeLZV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGoADeLZV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGoADeLZV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGoADeLZV .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-uzGoADeLZV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGoADeLZV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGoADeLZV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGoADeLZV .mbr-text,
.cid-uzGoADeLZV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwimcAAd2A {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwimcAAd2A H1 {
  color: #000000;
}
.cid-uzGoBcNx7k {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGoBcNx7k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGoBcNx7k .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGoBcNx7k .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGoBcNx7k .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGoBcNx7k .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGoBcNx7k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGoBcNx7k .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGoBcNx7k .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGoBcNx7k .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGoBcNx7k .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGoBcNx7k .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-uzGoBcNx7k .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGoBcNx7k .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGoBcNx7k .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGoBcNx7k .mbr-text,
.cid-uzGoBcNx7k .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGoBR0akF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGoBR0akF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGoBR0akF .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGoBR0akF .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGoBR0akF .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGoBR0akF .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGoBR0akF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGoBR0akF .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGoBR0akF .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGoBR0akF .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGoBR0akF .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGoBR0akF .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-uzGoBR0akF .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGoBR0akF .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGoBR0akF .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGoBR0akF .mbr-text,
.cid-uzGoBR0akF .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwimcBRL2r {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwimcBRL2r H1 {
  color: #000000;
}
.cid-uwimcCc4Zu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwimcCc4Zu h2 {
  text-align: left;
}
.cid-uwimcCc4Zu h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwimcCc4Zu p {
  color: #767676;
  text-align: left;
}
.cid-uwimcCc4Zu .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwimcCc4Zu .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwimcCc4Zu .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwimcCc4Zu .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwimcCc4Zu .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwimcCc4Zu .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwimcCc4Zu .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwimcCc4Zu .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwimcCc4Zu .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwimcCc4Zu .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwimcCc4Zu .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwimcCB2Z0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwimcCB2Z0 H1 {
  color: #000000;
}
.cid-uwimcCULei {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwimcCULei .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwimcCULei .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwimcCULei .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwimcCULei .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwimcCULei .box {
  right: 20%;
}
.cid-uwimcCULei .text-box {
  right: 0;
}
.cid-uwimcCULei .mbr-section-title,
.cid-uwimcCULei .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwimcCULei .text-box {
    display: none;
  }
  .cid-uwimcCULei .mbr-section-title,
  .cid-uwimcCULei .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwimcCULei .box {
    display: none;
  }
  .cid-uwimcCULei .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwimcCULei .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwimcCULei .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwimcCULei .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwimcCULei .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwimcCULei .mbr-section-text DIV {
  text-align: center;
}
.cid-uwimcDfM4Q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwimcDDdiB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwimcDDdiB h2 {
  text-align: left;
}
.cid-uwimcDDdiB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwimcDDdiB p {
  color: #767676;
  text-align: left;
}
.cid-uwimcDDdiB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwimcDDdiB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwimcDDdiB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwimcDDdiB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwimcDDdiB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwimcDDdiB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwimcDDdiB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwimcDDdiB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwimcDDdiB .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwimcDDdiB .mbr-text {
  color: #232323;
}
.cid-uwimcE0dNn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwimcE0dNn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwimcE0dNn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwimcE0dNn .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwimcE0dNn .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwimcE0dNn .container {
    padding: 0 26px;
  }
}
.cid-uwimcE0dNn .row {
  justify-content: center;
}
.cid-uwimcE0dNn .item {
  margin-bottom: 32px;
}
.cid-uwimcE0dNn .item a {
  display: block;
}
.cid-uwimcE0dNn .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwimcE0dNn .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwimcE0dNn .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwimcE0dNn .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-uwimcE0dNn .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwimcE0dNn .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwimcE0dNn .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-uwimcE0dNn .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwimcE0dNn .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwimcE0dNn .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwimcE0dNn .item-title {
  color: #ffffff;
}
.cid-uwimcE0dNn .mbr-date {
  color: #cacaca;
}
.cid-uwimcE0dNn .mbr-desc {
  color: #cacaca;
}
.cid-uwimcElfuI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwimcElfuI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwimcElfuI .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-uwimcElfuI .container {
    padding: 0 16px;
  }
}
.cid-uwimcElfuI .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwimcElfuI .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwimcElfuI .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwimcElfuI .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwimcElfuI .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwimcElfuI .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwimcElfuI .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwimcElfuI .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwimcElfuI .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwimcElfuI .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-uwimcElfuI .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwimcElfuI .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwimcElfuI .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwimcElfuI .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwimcElfuI .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwimcElfuI .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwimcElfuI .dragArea.row .form-group .form-control:hover,
.cid-uwimcElfuI .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwimcElfuI .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwimcElfuI .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwimcElfuI .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwimcElfuI .mbr-title {
  color: #ffffff;
}
.cid-uwimcElfuI .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwimcElfuI .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwimcElfuI .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwimcElfuI .list {
  color: #08323C;
}
.cid-uwimcElfuI label {
  color: #08323C;
}
.cid-uwimcElfuI H3 {
  color: #000000;
}
.cid-uwimcElfuI P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwimvCA023 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwimvCA023 H1 {
  text-align: center;
}
.cid-uDmxfbZxbz {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmxfbZxbz .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmxfbZxbz .video-block {
    width: 100% !important;
  }
}
.cid-uwimvD26Q3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwimvDn2fQ {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwimvDn2fQ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwimvDn2fQ .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwimvDn2fQ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwimvDn2fQ .box {
  left: 20%;
}
.cid-uwimvDn2fQ .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwimvDn2fQ .mbr-section-text,
.cid-uwimvDn2fQ .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwimvDn2fQ .text-box {
    display: none;
  }
  .cid-uwimvDn2fQ .mbr-section-title,
  .cid-uwimvDn2fQ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwimvDn2fQ .box {
    display: none;
  }
  .cid-uwimvDn2fQ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwimvDn2fQ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwimvDn2fQ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwimvDn2fQ .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwimvDn2fQ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwimvDn2fQ .mbr-section-text DIV {
  text-align: center;
}
.cid-uwimvDE92X {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwimvDE92X H1 {
  text-align: center;
}
.cid-uwimvDUF7l {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwimvEadgr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwimvEadgr h2 {
  text-align: left;
}
.cid-uwimvEadgr h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwimvEadgr p {
  color: #767676;
  text-align: left;
}
.cid-uwimvEadgr .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwimvEadgr .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwimvEadgr .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwimvEadgr .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwimvEadgr .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwimvEadgr .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwimvEadgr .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwimvEadgr .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwimvEadgr .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwimvEadgr H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwimvEadgr P {
  color: #ffffff;
  text-align: left;
}
.cid-uwimvEadgr H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwimvEECnq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwimvEECnq H1 {
  color: #000000;
}
.cid-uzGoTB65OX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGoTB65OX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGoTB65OX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGoTB65OX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGoTB65OX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGoTB65OX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGoTB65OX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGoTB65OX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGoTB65OX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGoTB65OX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGoTB65OX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGoTB65OX .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-uzGoTB65OX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGoTB65OX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGoTB65OX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGoTB65OX .mbr-text,
.cid-uzGoTB65OX .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwimvFoE9q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwimvFoE9q H1 {
  color: #000000;
}
.cid-uzGoUcfAl3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGoUcfAl3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGoUcfAl3 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGoUcfAl3 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGoUcfAl3 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGoUcfAl3 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGoUcfAl3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGoUcfAl3 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGoUcfAl3 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGoUcfAl3 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGoUcfAl3 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGoUcfAl3 .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-uzGoUcfAl3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGoUcfAl3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGoUcfAl3 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGoUcfAl3 .mbr-text,
.cid-uzGoUcfAl3 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGoUKbJBG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGoUKbJBG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGoUKbJBG .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGoUKbJBG .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGoUKbJBG .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGoUKbJBG .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGoUKbJBG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGoUKbJBG .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGoUKbJBG .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGoUKbJBG .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGoUKbJBG .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGoUKbJBG .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-uzGoUKbJBG .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGoUKbJBG .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGoUKbJBG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGoUKbJBG .mbr-text,
.cid-uzGoUKbJBG .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwimvGI2yj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwimvGI2yj H1 {
  color: #000000;
}
.cid-uwimvH2LU1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwimvH2LU1 h2 {
  text-align: left;
}
.cid-uwimvH2LU1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwimvH2LU1 p {
  color: #767676;
  text-align: left;
}
.cid-uwimvH2LU1 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwimvH2LU1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwimvH2LU1 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwimvH2LU1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwimvH2LU1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwimvH2LU1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwimvH2LU1 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwimvH2LU1 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwimvH2LU1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwimvH2LU1 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwimvH2LU1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwimvHr78o {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwimvHr78o H1 {
  color: #000000;
}
.cid-uwimvHJ7y1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwimvHJ7y1 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwimvHJ7y1 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwimvHJ7y1 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwimvHJ7y1 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwimvHJ7y1 .box {
  right: 20%;
}
.cid-uwimvHJ7y1 .text-box {
  right: 0;
}
.cid-uwimvHJ7y1 .mbr-section-title,
.cid-uwimvHJ7y1 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwimvHJ7y1 .text-box {
    display: none;
  }
  .cid-uwimvHJ7y1 .mbr-section-title,
  .cid-uwimvHJ7y1 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwimvHJ7y1 .box {
    display: none;
  }
  .cid-uwimvHJ7y1 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwimvHJ7y1 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwimvHJ7y1 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwimvHJ7y1 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwimvHJ7y1 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwimvHJ7y1 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwimvIb4pF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwimvIv5WX {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwimvIv5WX h2 {
  text-align: left;
}
.cid-uwimvIv5WX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwimvIv5WX p {
  color: #767676;
  text-align: left;
}
.cid-uwimvIv5WX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwimvIv5WX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwimvIv5WX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwimvIv5WX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwimvIv5WX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwimvIv5WX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwimvIv5WX .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwimvIv5WX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwimvIv5WX .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwimvIv5WX .mbr-text {
  color: #232323;
}
.cid-uwimvISpdJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwimvISpdJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwimvISpdJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwimvISpdJ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwimvISpdJ .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwimvISpdJ .container {
    padding: 0 26px;
  }
}
.cid-uwimvISpdJ .row {
  justify-content: center;
}
.cid-uwimvISpdJ .item {
  margin-bottom: 32px;
}
.cid-uwimvISpdJ .item a {
  display: block;
}
.cid-uwimvISpdJ .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwimvISpdJ .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwimvISpdJ .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwimvISpdJ .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-uwimvISpdJ .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwimvISpdJ .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwimvISpdJ .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-uwimvISpdJ .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwimvISpdJ .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwimvISpdJ .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwimvISpdJ .item-title {
  color: #ffffff;
}
.cid-uwimvISpdJ .mbr-date {
  color: #cacaca;
}
.cid-uwimvISpdJ .mbr-desc {
  color: #cacaca;
}
.cid-uwimvJjCuW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwimvJjCuW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwimvJjCuW .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-uwimvJjCuW .container {
    padding: 0 16px;
  }
}
.cid-uwimvJjCuW .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwimvJjCuW .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwimvJjCuW .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwimvJjCuW .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwimvJjCuW .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwimvJjCuW .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwimvJjCuW .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwimvJjCuW .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwimvJjCuW .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwimvJjCuW .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-uwimvJjCuW .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwimvJjCuW .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwimvJjCuW .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwimvJjCuW .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwimvJjCuW .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwimvJjCuW .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwimvJjCuW .dragArea.row .form-group .form-control:hover,
.cid-uwimvJjCuW .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwimvJjCuW .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwimvJjCuW .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwimvJjCuW .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwimvJjCuW .mbr-title {
  color: #ffffff;
}
.cid-uwimvJjCuW .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwimvJjCuW .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwimvJjCuW .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwimvJjCuW .list {
  color: #08323C;
}
.cid-uwimvJjCuW label {
  color: #08323C;
}
.cid-uwimvJjCuW H3 {
  color: #000000;
}
.cid-uwimvJjCuW P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwio9Zv5Bd {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwio9Zv5Bd H1 {
  text-align: center;
}
.cid-uDmxiqhQ4Q {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmxiqhQ4Q .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmxiqhQ4Q .video-block {
    width: 100% !important;
  }
}
.cid-uwio9ZXZsf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwioa0klnB {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwioa0klnB .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwioa0klnB .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwioa0klnB .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwioa0klnB .box {
  left: 20%;
}
.cid-uwioa0klnB .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwioa0klnB .mbr-section-text,
.cid-uwioa0klnB .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwioa0klnB .text-box {
    display: none;
  }
  .cid-uwioa0klnB .mbr-section-title,
  .cid-uwioa0klnB .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwioa0klnB .box {
    display: none;
  }
  .cid-uwioa0klnB .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwioa0klnB .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwioa0klnB .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwioa0klnB .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwioa0klnB .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwioa0klnB .mbr-section-text DIV {
  text-align: center;
}
.cid-uwioa0DYYp {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwioa0DYYp H1 {
  text-align: center;
}
.cid-uwioa0T7kt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwioa19lnI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwioa19lnI h2 {
  text-align: left;
}
.cid-uwioa19lnI h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwioa19lnI p {
  color: #767676;
  text-align: left;
}
.cid-uwioa19lnI .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwioa19lnI .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwioa19lnI .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwioa19lnI .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwioa19lnI .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwioa19lnI .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwioa19lnI .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwioa19lnI .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwioa19lnI .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwioa19lnI H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwioa19lnI P {
  color: #ffffff;
  text-align: left;
}
.cid-uwioa19lnI H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwioa1zYHt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwioa1zYHt H1 {
  color: #000000;
}
.cid-uzGpaIw3V8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGpaIw3V8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGpaIw3V8 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGpaIw3V8 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGpaIw3V8 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGpaIw3V8 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGpaIw3V8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGpaIw3V8 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGpaIw3V8 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGpaIw3V8 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGpaIw3V8 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGpaIw3V8 .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-uzGpaIw3V8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGpaIw3V8 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGpaIw3V8 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGpaIw3V8 .mbr-text,
.cid-uzGpaIw3V8 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwioa2liE4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwioa2liE4 H1 {
  color: #000000;
}
.cid-uzGpboCDVV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGpboCDVV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGpboCDVV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGpboCDVV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGpboCDVV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGpboCDVV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGpboCDVV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGpboCDVV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGpboCDVV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGpboCDVV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGpboCDVV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGpboCDVV .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-uzGpboCDVV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGpboCDVV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGpboCDVV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGpboCDVV .mbr-text,
.cid-uzGpboCDVV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGpc5Z6Vc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGpc5Z6Vc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGpc5Z6Vc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGpc5Z6Vc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGpc5Z6Vc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGpc5Z6Vc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGpc5Z6Vc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGpc5Z6Vc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGpc5Z6Vc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGpc5Z6Vc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGpc5Z6Vc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGpc5Z6Vc .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-uzGpc5Z6Vc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGpc5Z6Vc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGpc5Z6Vc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGpc5Z6Vc .mbr-text,
.cid-uzGpc5Z6Vc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwioa3ImKc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwioa3ImKc H1 {
  color: #000000;
}
.cid-uwioa436kG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwioa436kG h2 {
  text-align: left;
}
.cid-uwioa436kG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwioa436kG p {
  color: #767676;
  text-align: left;
}
.cid-uwioa436kG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwioa436kG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwioa436kG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwioa436kG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwioa436kG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwioa436kG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwioa436kG .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwioa436kG .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwioa436kG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwioa436kG .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwioa436kG .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwioa4s8l1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwioa4s8l1 H1 {
  color: #000000;
}
.cid-uwioa4LcI6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwioa4LcI6 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwioa4LcI6 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwioa4LcI6 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwioa4LcI6 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwioa4LcI6 .box {
  right: 20%;
}
.cid-uwioa4LcI6 .text-box {
  right: 0;
}
.cid-uwioa4LcI6 .mbr-section-title,
.cid-uwioa4LcI6 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwioa4LcI6 .text-box {
    display: none;
  }
  .cid-uwioa4LcI6 .mbr-section-title,
  .cid-uwioa4LcI6 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwioa4LcI6 .box {
    display: none;
  }
  .cid-uwioa4LcI6 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwioa4LcI6 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwioa4LcI6 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwioa4LcI6 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwioa4LcI6 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwioa4LcI6 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwioa5aJ0O {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwioa5w2hp {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwioa5w2hp h2 {
  text-align: left;
}
.cid-uwioa5w2hp h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwioa5w2hp p {
  color: #767676;
  text-align: left;
}
.cid-uwioa5w2hp .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwioa5w2hp .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwioa5w2hp .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwioa5w2hp .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwioa5w2hp .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwioa5w2hp .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwioa5w2hp .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwioa5w2hp .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwioa5w2hp .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwioa5w2hp .mbr-text {
  color: #232323;
}
.cid-uwioa5SbMz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwioa5SbMz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwioa5SbMz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwioa5SbMz .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwioa5SbMz .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwioa5SbMz .container {
    padding: 0 26px;
  }
}
.cid-uwioa5SbMz .row {
  justify-content: center;
}
.cid-uwioa5SbMz .item {
  margin-bottom: 32px;
}
.cid-uwioa5SbMz .item a {
  display: block;
}
.cid-uwioa5SbMz .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwioa5SbMz .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwioa5SbMz .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwioa5SbMz .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-uwioa5SbMz .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwioa5SbMz .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwioa5SbMz .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-uwioa5SbMz .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwioa5SbMz .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwioa5SbMz .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwioa5SbMz .item-title {
  color: #ffffff;
}
.cid-uwioa5SbMz .mbr-date {
  color: #cacaca;
}
.cid-uwioa5SbMz .mbr-desc {
  color: #cacaca;
}
.cid-uwioa6hZA7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwioa6hZA7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwioa6hZA7 .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-uwioa6hZA7 .container {
    padding: 0 16px;
  }
}
.cid-uwioa6hZA7 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwioa6hZA7 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwioa6hZA7 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwioa6hZA7 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwioa6hZA7 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwioa6hZA7 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwioa6hZA7 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwioa6hZA7 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwioa6hZA7 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwioa6hZA7 .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-uwioa6hZA7 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwioa6hZA7 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwioa6hZA7 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwioa6hZA7 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwioa6hZA7 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwioa6hZA7 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwioa6hZA7 .dragArea.row .form-group .form-control:hover,
.cid-uwioa6hZA7 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwioa6hZA7 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwioa6hZA7 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwioa6hZA7 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwioa6hZA7 .mbr-title {
  color: #ffffff;
}
.cid-uwioa6hZA7 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwioa6hZA7 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwioa6hZA7 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwioa6hZA7 .list {
  color: #08323C;
}
.cid-uwioa6hZA7 label {
  color: #08323C;
}
.cid-uwioa6hZA7 H3 {
  color: #000000;
}
.cid-uwioa6hZA7 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwipFlZP5i {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwipFlZP5i H1 {
  text-align: center;
}
.cid-uDmxmeKxvX {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmxmeKxvX .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmxmeKxvX .video-block {
    width: 100% !important;
  }
}
.cid-uwipFmom8c {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwipFmKUwV {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwipFmKUwV .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwipFmKUwV .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwipFmKUwV .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwipFmKUwV .box {
  left: 20%;
}
.cid-uwipFmKUwV .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwipFmKUwV .mbr-section-text,
.cid-uwipFmKUwV .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwipFmKUwV .text-box {
    display: none;
  }
  .cid-uwipFmKUwV .mbr-section-title,
  .cid-uwipFmKUwV .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwipFmKUwV .box {
    display: none;
  }
  .cid-uwipFmKUwV .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwipFmKUwV .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwipFmKUwV .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwipFmKUwV .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwipFmKUwV .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwipFmKUwV .mbr-section-text DIV {
  text-align: center;
}
.cid-uwipFn8m98 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwipFn8m98 H1 {
  text-align: center;
}
.cid-uwipFnszBW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwipFnL12g {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwipFnL12g h2 {
  text-align: left;
}
.cid-uwipFnL12g h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwipFnL12g p {
  color: #767676;
  text-align: left;
}
.cid-uwipFnL12g .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwipFnL12g .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwipFnL12g .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwipFnL12g .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwipFnL12g .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwipFnL12g .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwipFnL12g .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwipFnL12g .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwipFnL12g .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwipFnL12g H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwipFnL12g P {
  color: #ffffff;
  text-align: left;
}
.cid-uwipFnL12g H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwipFod3z7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwipFod3z7 H1 {
  color: #000000;
}
.cid-uzGpvEatnS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGpvEatnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGpvEatnS .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGpvEatnS .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGpvEatnS .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGpvEatnS .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGpvEatnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGpvEatnS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGpvEatnS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGpvEatnS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGpvEatnS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGpvEatnS .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-uzGpvEatnS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGpvEatnS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGpvEatnS .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGpvEatnS .mbr-text,
.cid-uzGpvEatnS .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwipFp2mSE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwipFp2mSE H1 {
  color: #000000;
}
.cid-uzGpwUCb9Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGpwUCb9Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGpwUCb9Q .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGpwUCb9Q .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGpwUCb9Q .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGpwUCb9Q .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGpwUCb9Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGpwUCb9Q .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGpwUCb9Q .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGpwUCb9Q .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGpwUCb9Q .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGpwUCb9Q .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-uzGpwUCb9Q .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGpwUCb9Q .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGpwUCb9Q .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGpwUCb9Q .mbr-text,
.cid-uzGpwUCb9Q .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGpxuItIJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGpxuItIJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGpxuItIJ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGpxuItIJ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGpxuItIJ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGpxuItIJ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGpxuItIJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGpxuItIJ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGpxuItIJ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGpxuItIJ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGpxuItIJ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGpxuItIJ .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-uzGpxuItIJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGpxuItIJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGpxuItIJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGpxuItIJ .mbr-text,
.cid-uzGpxuItIJ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwipFqBUiy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwipFqBUiy H1 {
  color: #000000;
}
.cid-uwipFqYkyP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwipFqYkyP h2 {
  text-align: left;
}
.cid-uwipFqYkyP h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwipFqYkyP p {
  color: #767676;
  text-align: left;
}
.cid-uwipFqYkyP .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwipFqYkyP .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwipFqYkyP .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwipFqYkyP .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwipFqYkyP .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwipFqYkyP .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwipFqYkyP .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwipFqYkyP .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwipFqYkyP .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwipFqYkyP .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwipFqYkyP .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwipFrrPR8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwipFrrPR8 H1 {
  color: #000000;
}
.cid-uwipFrRR0F {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwipFrRR0F .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwipFrRR0F .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwipFrRR0F .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwipFrRR0F .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwipFrRR0F .box {
  right: 20%;
}
.cid-uwipFrRR0F .text-box {
  right: 0;
}
.cid-uwipFrRR0F .mbr-section-title,
.cid-uwipFrRR0F .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwipFrRR0F .text-box {
    display: none;
  }
  .cid-uwipFrRR0F .mbr-section-title,
  .cid-uwipFrRR0F .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwipFrRR0F .box {
    display: none;
  }
  .cid-uwipFrRR0F .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwipFrRR0F .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwipFrRR0F .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwipFrRR0F .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwipFrRR0F .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwipFrRR0F .mbr-section-text DIV {
  text-align: center;
}
.cid-uwipFsfQkM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwipFsHyKV {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwipFsHyKV h2 {
  text-align: left;
}
.cid-uwipFsHyKV h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwipFsHyKV p {
  color: #767676;
  text-align: left;
}
.cid-uwipFsHyKV .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwipFsHyKV .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwipFsHyKV .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwipFsHyKV .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwipFsHyKV .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwipFsHyKV .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwipFsHyKV .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwipFsHyKV .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwipFsHyKV .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwipFsHyKV .mbr-text {
  color: #232323;
}
.cid-uwipFt6QJM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwipFt6QJM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwipFt6QJM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwipFt6QJM .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwipFt6QJM .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwipFt6QJM .container {
    padding: 0 26px;
  }
}
.cid-uwipFt6QJM .row {
  justify-content: center;
}
.cid-uwipFt6QJM .item {
  margin-bottom: 32px;
}
.cid-uwipFt6QJM .item a {
  display: block;
}
.cid-uwipFt6QJM .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwipFt6QJM .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwipFt6QJM .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwipFt6QJM .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-uwipFt6QJM .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwipFt6QJM .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwipFt6QJM .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-uwipFt6QJM .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwipFt6QJM .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwipFt6QJM .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwipFt6QJM .item-title {
  color: #ffffff;
}
.cid-uwipFt6QJM .mbr-date {
  color: #cacaca;
}
.cid-uwipFt6QJM .mbr-desc {
  color: #cacaca;
}
.cid-uwipFtBnUl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwipFtBnUl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwipFtBnUl .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-uwipFtBnUl .container {
    padding: 0 16px;
  }
}
.cid-uwipFtBnUl .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwipFtBnUl .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwipFtBnUl .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwipFtBnUl .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwipFtBnUl .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwipFtBnUl .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwipFtBnUl .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwipFtBnUl .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwipFtBnUl .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwipFtBnUl .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-uwipFtBnUl .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwipFtBnUl .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwipFtBnUl .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwipFtBnUl .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwipFtBnUl .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwipFtBnUl .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwipFtBnUl .dragArea.row .form-group .form-control:hover,
.cid-uwipFtBnUl .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwipFtBnUl .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwipFtBnUl .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwipFtBnUl .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwipFtBnUl .mbr-title {
  color: #ffffff;
}
.cid-uwipFtBnUl .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwipFtBnUl .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwipFtBnUl .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwipFtBnUl .list {
  color: #08323C;
}
.cid-uwipFtBnUl label {
  color: #08323C;
}
.cid-uwipFtBnUl H3 {
  color: #000000;
}
.cid-uwipFtBnUl P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwiq2G0e6B {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwiq2G0e6B H1 {
  text-align: center;
}
.cid-uDmxoIDfvH {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmxoIDfvH .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmxoIDfvH .video-block {
    width: 100% !important;
  }
}
.cid-uwiq2GnjbL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwiq2GIFs7 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwiq2GIFs7 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwiq2GIFs7 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwiq2GIFs7 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwiq2GIFs7 .box {
  left: 20%;
}
.cid-uwiq2GIFs7 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwiq2GIFs7 .mbr-section-text,
.cid-uwiq2GIFs7 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwiq2GIFs7 .text-box {
    display: none;
  }
  .cid-uwiq2GIFs7 .mbr-section-title,
  .cid-uwiq2GIFs7 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwiq2GIFs7 .box {
    display: none;
  }
  .cid-uwiq2GIFs7 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwiq2GIFs7 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwiq2GIFs7 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwiq2GIFs7 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwiq2GIFs7 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwiq2GIFs7 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwiq2GZqPG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwiq2GZqPG H1 {
  text-align: center;
}
.cid-uwiq2Hhzx6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwiq2HysS4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwiq2HysS4 h2 {
  text-align: left;
}
.cid-uwiq2HysS4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwiq2HysS4 p {
  color: #767676;
  text-align: left;
}
.cid-uwiq2HysS4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwiq2HysS4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwiq2HysS4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwiq2HysS4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwiq2HysS4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwiq2HysS4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwiq2HysS4 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwiq2HysS4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwiq2HysS4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwiq2HysS4 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwiq2HysS4 P {
  color: #ffffff;
  text-align: left;
}
.cid-uwiq2HysS4 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwiq2HXfNS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwiq2HXfNS H1 {
  color: #000000;
}
.cid-uzGqeKEqS3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGqeKEqS3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGqeKEqS3 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGqeKEqS3 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGqeKEqS3 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGqeKEqS3 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGqeKEqS3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGqeKEqS3 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGqeKEqS3 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGqeKEqS3 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGqeKEqS3 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGqeKEqS3 .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-uzGqeKEqS3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGqeKEqS3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGqeKEqS3 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGqeKEqS3 .mbr-text,
.cid-uzGqeKEqS3 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwiq2IH90n {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwiq2IH90n H1 {
  color: #000000;
}
.cid-uzGqfq6RyZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGqfq6RyZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGqfq6RyZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGqfq6RyZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGqfq6RyZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGqfq6RyZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGqfq6RyZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGqfq6RyZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGqfq6RyZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGqfq6RyZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGqfq6RyZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGqfq6RyZ .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-uzGqfq6RyZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGqfq6RyZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGqfq6RyZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGqfq6RyZ .mbr-text,
.cid-uzGqfq6RyZ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGqgc4PIv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGqgc4PIv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGqgc4PIv .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGqgc4PIv .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGqgc4PIv .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGqgc4PIv .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGqgc4PIv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGqgc4PIv .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGqgc4PIv .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGqgc4PIv .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGqgc4PIv .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGqgc4PIv .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-uzGqgc4PIv .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGqgc4PIv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGqgc4PIv .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGqgc4PIv .mbr-text,
.cid-uzGqgc4PIv .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwiq2JXSCD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwiq2JXSCD H1 {
  color: #000000;
}
.cid-uwiq2KkS9T {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwiq2KkS9T h2 {
  text-align: left;
}
.cid-uwiq2KkS9T h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwiq2KkS9T p {
  color: #767676;
  text-align: left;
}
.cid-uwiq2KkS9T .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwiq2KkS9T .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwiq2KkS9T .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwiq2KkS9T .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwiq2KkS9T .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwiq2KkS9T .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwiq2KkS9T .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwiq2KkS9T .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwiq2KkS9T .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwiq2KkS9T .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwiq2KkS9T .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwiq2KGUGx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwiq2KGUGx H1 {
  color: #000000;
}
.cid-uwiq2L1ipq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwiq2L1ipq .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwiq2L1ipq .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwiq2L1ipq .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwiq2L1ipq .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwiq2L1ipq .box {
  right: 20%;
}
.cid-uwiq2L1ipq .text-box {
  right: 0;
}
.cid-uwiq2L1ipq .mbr-section-title,
.cid-uwiq2L1ipq .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwiq2L1ipq .text-box {
    display: none;
  }
  .cid-uwiq2L1ipq .mbr-section-title,
  .cid-uwiq2L1ipq .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwiq2L1ipq .box {
    display: none;
  }
  .cid-uwiq2L1ipq .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwiq2L1ipq .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwiq2L1ipq .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwiq2L1ipq .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwiq2L1ipq .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwiq2L1ipq .mbr-section-text DIV {
  text-align: center;
}
.cid-uwiq2Lp3Bn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwiq2LIH8x {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwiq2LIH8x h2 {
  text-align: left;
}
.cid-uwiq2LIH8x h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwiq2LIH8x p {
  color: #767676;
  text-align: left;
}
.cid-uwiq2LIH8x .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwiq2LIH8x .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwiq2LIH8x .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwiq2LIH8x .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwiq2LIH8x .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwiq2LIH8x .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwiq2LIH8x .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwiq2LIH8x .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwiq2LIH8x .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwiq2LIH8x .mbr-text {
  color: #232323;
}
.cid-uwiq2M3af1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwiq2M3af1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwiq2M3af1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwiq2M3af1 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwiq2M3af1 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwiq2M3af1 .container {
    padding: 0 26px;
  }
}
.cid-uwiq2M3af1 .row {
  justify-content: center;
}
.cid-uwiq2M3af1 .item {
  margin-bottom: 32px;
}
.cid-uwiq2M3af1 .item a {
  display: block;
}
.cid-uwiq2M3af1 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwiq2M3af1 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwiq2M3af1 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwiq2M3af1 .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-uwiq2M3af1 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwiq2M3af1 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwiq2M3af1 .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-uwiq2M3af1 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwiq2M3af1 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwiq2M3af1 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwiq2M3af1 .item-title {
  color: #ffffff;
}
.cid-uwiq2M3af1 .mbr-date {
  color: #cacaca;
}
.cid-uwiq2M3af1 .mbr-desc {
  color: #cacaca;
}
.cid-uwiq2MujsY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwiq2MujsY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwiq2MujsY .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-uwiq2MujsY .container {
    padding: 0 16px;
  }
}
.cid-uwiq2MujsY .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwiq2MujsY .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwiq2MujsY .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwiq2MujsY .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwiq2MujsY .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwiq2MujsY .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwiq2MujsY .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwiq2MujsY .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwiq2MujsY .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwiq2MujsY .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-uwiq2MujsY .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwiq2MujsY .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwiq2MujsY .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwiq2MujsY .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwiq2MujsY .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwiq2MujsY .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwiq2MujsY .dragArea.row .form-group .form-control:hover,
.cid-uwiq2MujsY .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwiq2MujsY .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwiq2MujsY .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwiq2MujsY .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwiq2MujsY .mbr-title {
  color: #ffffff;
}
.cid-uwiq2MujsY .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwiq2MujsY .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwiq2MujsY .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwiq2MujsY .list {
  color: #08323C;
}
.cid-uwiq2MujsY label {
  color: #08323C;
}
.cid-uwiq2MujsY H3 {
  color: #000000;
}
.cid-uwiq2MujsY P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwiqjGLOtt {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwiqjGLOtt H1 {
  text-align: center;
}
.cid-uDmxqUiVDw {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmxqUiVDw .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmxqUiVDw .video-block {
    width: 100% !important;
  }
}
.cid-uwiqjHcCFc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwiqjHxjNE {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwiqjHxjNE .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwiqjHxjNE .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwiqjHxjNE .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwiqjHxjNE .box {
  left: 20%;
}
.cid-uwiqjHxjNE .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwiqjHxjNE .mbr-section-text,
.cid-uwiqjHxjNE .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwiqjHxjNE .text-box {
    display: none;
  }
  .cid-uwiqjHxjNE .mbr-section-title,
  .cid-uwiqjHxjNE .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwiqjHxjNE .box {
    display: none;
  }
  .cid-uwiqjHxjNE .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwiqjHxjNE .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwiqjHxjNE .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwiqjHxjNE .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwiqjHxjNE .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwiqjHxjNE .mbr-section-text DIV {
  text-align: center;
}
.cid-uwiqjHVsHT {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwiqjHVsHT H1 {
  text-align: center;
}
.cid-uwiqjIdlYz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwiqjIvzrH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwiqjIvzrH h2 {
  text-align: left;
}
.cid-uwiqjIvzrH h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwiqjIvzrH p {
  color: #767676;
  text-align: left;
}
.cid-uwiqjIvzrH .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwiqjIvzrH .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwiqjIvzrH .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwiqjIvzrH .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwiqjIvzrH .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwiqjIvzrH .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwiqjIvzrH .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwiqjIvzrH .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwiqjIvzrH .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwiqjIvzrH H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwiqjIvzrH P {
  color: #ffffff;
  text-align: left;
}
.cid-uwiqjIvzrH H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwiqjJ26zM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwiqjJ26zM H1 {
  color: #000000;
}
.cid-uzGqvAZYnd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGqvAZYnd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGqvAZYnd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGqvAZYnd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGqvAZYnd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGqvAZYnd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGqvAZYnd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGqvAZYnd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGqvAZYnd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGqvAZYnd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGqvAZYnd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGqvAZYnd .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-uzGqvAZYnd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGqvAZYnd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGqvAZYnd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGqvAZYnd .mbr-text,
.cid-uzGqvAZYnd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwiqjJPCdS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwiqjJPCdS H1 {
  color: #000000;
}
.cid-uzGqwjsbuY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGqwjsbuY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGqwjsbuY .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGqwjsbuY .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGqwjsbuY .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGqwjsbuY .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGqwjsbuY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGqwjsbuY .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGqwjsbuY .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGqwjsbuY .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGqwjsbuY .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGqwjsbuY .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-uzGqwjsbuY .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGqwjsbuY .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGqwjsbuY .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGqwjsbuY .mbr-text,
.cid-uzGqwjsbuY .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uzGqwYYqkI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzGqwYYqkI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGqwYYqkI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzGqwYYqkI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzGqwYYqkI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzGqwYYqkI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzGqwYYqkI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGqwYYqkI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzGqwYYqkI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzGqwYYqkI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzGqwYYqkI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzGqwYYqkI .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-uzGqwYYqkI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzGqwYYqkI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzGqwYYqkI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzGqwYYqkI .mbr-text,
.cid-uzGqwYYqkI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwiqjL9WGD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwiqjL9WGD H1 {
  color: #000000;
}
.cid-uwiqjLw2Af {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwiqjLw2Af h2 {
  text-align: left;
}
.cid-uwiqjLw2Af h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwiqjLw2Af p {
  color: #767676;
  text-align: left;
}
.cid-uwiqjLw2Af .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwiqjLw2Af .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwiqjLw2Af .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwiqjLw2Af .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwiqjLw2Af .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwiqjLw2Af .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwiqjLw2Af .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwiqjLw2Af .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwiqjLw2Af .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwiqjLw2Af .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwiqjLw2Af .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwiqjLT41F {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwiqjLT41F H1 {
  color: #000000;
}
.cid-uwiqjMcYH8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwiqjMcYH8 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwiqjMcYH8 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwiqjMcYH8 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwiqjMcYH8 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwiqjMcYH8 .box {
  right: 20%;
}
.cid-uwiqjMcYH8 .text-box {
  right: 0;
}
.cid-uwiqjMcYH8 .mbr-section-title,
.cid-uwiqjMcYH8 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwiqjMcYH8 .text-box {
    display: none;
  }
  .cid-uwiqjMcYH8 .mbr-section-title,
  .cid-uwiqjMcYH8 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwiqjMcYH8 .box {
    display: none;
  }
  .cid-uwiqjMcYH8 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwiqjMcYH8 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwiqjMcYH8 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwiqjMcYH8 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwiqjMcYH8 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwiqjMcYH8 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwiqjMA9Jb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwiqjMV4Tk {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwiqjMV4Tk h2 {
  text-align: left;
}
.cid-uwiqjMV4Tk h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwiqjMV4Tk p {
  color: #767676;
  text-align: left;
}
.cid-uwiqjMV4Tk .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwiqjMV4Tk .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwiqjMV4Tk .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwiqjMV4Tk .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwiqjMV4Tk .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwiqjMV4Tk .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwiqjMV4Tk .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwiqjMV4Tk .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwiqjMV4Tk .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwiqjMV4Tk .mbr-text {
  color: #232323;
}
.cid-uwiqjNgSsU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwiqjNgSsU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwiqjNgSsU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwiqjNgSsU .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwiqjNgSsU .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwiqjNgSsU .container {
    padding: 0 26px;
  }
}
.cid-uwiqjNgSsU .row {
  justify-content: center;
}
.cid-uwiqjNgSsU .item {
  margin-bottom: 32px;
}
.cid-uwiqjNgSsU .item a {
  display: block;
}
.cid-uwiqjNgSsU .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwiqjNgSsU .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwiqjNgSsU .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwiqjNgSsU .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-uwiqjNgSsU .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwiqjNgSsU .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwiqjNgSsU .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-uwiqjNgSsU .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwiqjNgSsU .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwiqjNgSsU .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwiqjNgSsU .item-title {
  color: #ffffff;
}
.cid-uwiqjNgSsU .mbr-date {
  color: #cacaca;
}
.cid-uwiqjNgSsU .mbr-desc {
  color: #cacaca;
}
.cid-uwiqjNGMyc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwiqjNGMyc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwiqjNGMyc .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-uwiqjNGMyc .container {
    padding: 0 16px;
  }
}
.cid-uwiqjNGMyc .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwiqjNGMyc .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwiqjNGMyc .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwiqjNGMyc .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwiqjNGMyc .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwiqjNGMyc .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwiqjNGMyc .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwiqjNGMyc .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwiqjNGMyc .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwiqjNGMyc .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-uwiqjNGMyc .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwiqjNGMyc .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwiqjNGMyc .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwiqjNGMyc .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwiqjNGMyc .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwiqjNGMyc .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwiqjNGMyc .dragArea.row .form-group .form-control:hover,
.cid-uwiqjNGMyc .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwiqjNGMyc .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwiqjNGMyc .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwiqjNGMyc .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwiqjNGMyc .mbr-title {
  color: #ffffff;
}
.cid-uwiqjNGMyc .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwiqjNGMyc .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwiqjNGMyc .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwiqjNGMyc .list {
  color: #08323C;
}
.cid-uwiqjNGMyc label {
  color: #08323C;
}
.cid-uwiqjNGMyc H3 {
  color: #000000;
}
.cid-uwiqjNGMyc P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwtfraDx7C {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtfraDx7C H1 {
  text-align: center;
}
.cid-uDmyp9TW7z {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmyp9TW7z .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmyp9TW7z .video-block {
    width: 100% !important;
  }
}
.cid-uwtfrbcB49 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtfrbGNuX {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwtfrbGNuX .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtfrbGNuX .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtfrbGNuX .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtfrbGNuX .box {
  left: 20%;
}
.cid-uwtfrbGNuX .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwtfrbGNuX .mbr-section-text,
.cid-uwtfrbGNuX .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwtfrbGNuX .text-box {
    display: none;
  }
  .cid-uwtfrbGNuX .mbr-section-title,
  .cid-uwtfrbGNuX .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtfrbGNuX .box {
    display: none;
  }
  .cid-uwtfrbGNuX .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtfrbGNuX .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtfrbGNuX .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtfrbGNuX .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtfrbGNuX .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtfrbGNuX .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtfrc4lt8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtfrc4lt8 H1 {
  text-align: center;
}
.cid-uwtfrcsjZw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtfrcTUVw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtfrcTUVw h2 {
  text-align: left;
}
.cid-uwtfrcTUVw h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtfrcTUVw p {
  color: #767676;
  text-align: left;
}
.cid-uwtfrcTUVw .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtfrcTUVw .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtfrcTUVw .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtfrcTUVw .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtfrcTUVw .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtfrcTUVw .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtfrcTUVw .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtfrcTUVw .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtfrcTUVw .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtfrcTUVw H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwtfrcTUVw P {
  color: #ffffff;
  text-align: left;
}
.cid-uwtfrcTUVw H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwtfrdl5eq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwtfrdl5eq H1 {
  color: #000000;
}
.cid-uxfnx5lxzH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfnx5lxzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfnx5lxzH .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfnx5lxzH .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfnx5lxzH .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfnx5lxzH .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfnx5lxzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfnx5lxzH .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfnx5lxzH .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfnx5lxzH .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfnx5lxzH .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfnx5lxzH .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-uxfnx5lxzH .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfnx5lxzH .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfnx5lxzH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfnx5lxzH .mbr-text,
.cid-uxfnx5lxzH .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtfrelClH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwtfrelClH H1 {
  color: #000000;
}
.cid-uxfnxLpPnV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfnxLpPnV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfnxLpPnV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfnxLpPnV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfnxLpPnV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfnxLpPnV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfnxLpPnV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfnxLpPnV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfnxLpPnV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfnxLpPnV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfnxLpPnV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfnxLpPnV .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-uxfnxLpPnV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfnxLpPnV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfnxLpPnV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfnxLpPnV .mbr-text,
.cid-uxfnxLpPnV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfnymDyaC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfnymDyaC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfnymDyaC .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfnymDyaC .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfnymDyaC .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfnymDyaC .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfnymDyaC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfnymDyaC .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfnymDyaC .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfnymDyaC .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfnymDyaC .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfnymDyaC .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-uxfnymDyaC .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfnymDyaC .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfnymDyaC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfnymDyaC .mbr-text,
.cid-uxfnymDyaC .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtfrfYPkr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtfrfYPkr H1 {
  color: #000000;
}
.cid-uwtfrgopJ6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwtfrgopJ6 h2 {
  text-align: left;
}
.cid-uwtfrgopJ6 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtfrgopJ6 p {
  color: #767676;
  text-align: left;
}
.cid-uwtfrgopJ6 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtfrgopJ6 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtfrgopJ6 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtfrgopJ6 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtfrgopJ6 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtfrgopJ6 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtfrgopJ6 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwtfrgopJ6 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwtfrgopJ6 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwtfrgopJ6 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwtfrgopJ6 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtfrgRioV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtfrgRioV H1 {
  color: #000000;
}
.cid-uwtfrhfqGT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwtfrhfqGT .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtfrhfqGT .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtfrhfqGT .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtfrhfqGT .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwtfrhfqGT .box {
  right: 20%;
}
.cid-uwtfrhfqGT .text-box {
  right: 0;
}
.cid-uwtfrhfqGT .mbr-section-title,
.cid-uwtfrhfqGT .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwtfrhfqGT .text-box {
    display: none;
  }
  .cid-uwtfrhfqGT .mbr-section-title,
  .cid-uwtfrhfqGT .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtfrhfqGT .box {
    display: none;
  }
  .cid-uwtfrhfqGT .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtfrhfqGT .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtfrhfqGT .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtfrhfqGT .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtfrhfqGT .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtfrhfqGT .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtfrhHtdQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtfri5Yo4 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwtfri5Yo4 h2 {
  text-align: left;
}
.cid-uwtfri5Yo4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtfri5Yo4 p {
  color: #767676;
  text-align: left;
}
.cid-uwtfri5Yo4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtfri5Yo4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtfri5Yo4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtfri5Yo4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtfri5Yo4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtfri5Yo4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtfri5Yo4 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtfri5Yo4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtfri5Yo4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtfri5Yo4 .mbr-text {
  color: #232323;
}
.cid-uwtfrixQ7g {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwtfrixQ7g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtfrixQ7g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwtfrixQ7g .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwtfrixQ7g .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwtfrixQ7g .container {
    padding: 0 26px;
  }
}
.cid-uwtfrixQ7g .row {
  justify-content: center;
}
.cid-uwtfrixQ7g .item {
  margin-bottom: 32px;
}
.cid-uwtfrixQ7g .item a {
  display: block;
}
.cid-uwtfrixQ7g .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwtfrixQ7g .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwtfrixQ7g .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwtfrixQ7g .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-uwtfrixQ7g .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwtfrixQ7g .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwtfrixQ7g .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-uwtfrixQ7g .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwtfrixQ7g .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwtfrixQ7g .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwtfrixQ7g .item-title {
  color: #ffffff;
}
.cid-uwtfrixQ7g .mbr-date {
  color: #cacaca;
}
.cid-uwtfrixQ7g .mbr-desc {
  color: #cacaca;
}
.cid-uwtfriZPLr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwtfriZPLr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtfriZPLr .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-uwtfriZPLr .container {
    padding: 0 16px;
  }
}
.cid-uwtfriZPLr .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwtfriZPLr .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtfriZPLr .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwtfriZPLr .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtfriZPLr .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwtfriZPLr .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwtfriZPLr .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwtfriZPLr .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwtfriZPLr .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwtfriZPLr .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-uwtfriZPLr .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwtfriZPLr .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwtfriZPLr .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwtfriZPLr .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwtfriZPLr .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwtfriZPLr .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwtfriZPLr .dragArea.row .form-group .form-control:hover,
.cid-uwtfriZPLr .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwtfriZPLr .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwtfriZPLr .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwtfriZPLr .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwtfriZPLr .mbr-title {
  color: #ffffff;
}
.cid-uwtfriZPLr .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwtfriZPLr .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwtfriZPLr .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwtfriZPLr .list {
  color: #08323C;
}
.cid-uwtfriZPLr label {
  color: #08323C;
}
.cid-uwtfriZPLr H3 {
  color: #000000;
}
.cid-uwtfriZPLr P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwtfJxK3qn {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtfJxK3qn H1 {
  text-align: center;
}
.cid-uDmys9XMDj {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmys9XMDj .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmys9XMDj .video-block {
    width: 100% !important;
  }
}
.cid-uwtfJyaylf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtfJyzr55 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwtfJyzr55 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtfJyzr55 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtfJyzr55 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtfJyzr55 .box {
  left: 20%;
}
.cid-uwtfJyzr55 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwtfJyzr55 .mbr-section-text,
.cid-uwtfJyzr55 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwtfJyzr55 .text-box {
    display: none;
  }
  .cid-uwtfJyzr55 .mbr-section-title,
  .cid-uwtfJyzr55 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtfJyzr55 .box {
    display: none;
  }
  .cid-uwtfJyzr55 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtfJyzr55 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtfJyzr55 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtfJyzr55 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtfJyzr55 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtfJyzr55 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtfJyVCCf {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtfJyVCCf H1 {
  text-align: center;
}
.cid-uwtfJzgO7V {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtfJzFZd4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtfJzFZd4 h2 {
  text-align: left;
}
.cid-uwtfJzFZd4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtfJzFZd4 p {
  color: #767676;
  text-align: left;
}
.cid-uwtfJzFZd4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtfJzFZd4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtfJzFZd4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtfJzFZd4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtfJzFZd4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtfJzFZd4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtfJzFZd4 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtfJzFZd4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtfJzFZd4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtfJzFZd4 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwtfJzFZd4 P {
  color: #ffffff;
  text-align: left;
}
.cid-uwtfJzFZd4 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwtfJA6Ph7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwtfJA6Ph7 H1 {
  color: #000000;
}
.cid-uxfnJ122lO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfnJ122lO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfnJ122lO .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfnJ122lO .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfnJ122lO .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfnJ122lO .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfnJ122lO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfnJ122lO .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfnJ122lO .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfnJ122lO .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfnJ122lO .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfnJ122lO .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-uxfnJ122lO .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfnJ122lO .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfnJ122lO .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfnJ122lO .mbr-text,
.cid-uxfnJ122lO .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtfJB8l9I {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwtfJB8l9I H1 {
  color: #000000;
}
.cid-uxfnHinRdr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfnHinRdr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfnHinRdr .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfnHinRdr .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfnHinRdr .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfnHinRdr .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfnHinRdr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfnHinRdr .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfnHinRdr .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfnHinRdr .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfnHinRdr .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfnHinRdr .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-uxfnHinRdr .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfnHinRdr .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfnHinRdr .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfnHinRdr .mbr-text,
.cid-uxfnHinRdr .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfnHWzthf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfnHWzthf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfnHWzthf .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfnHWzthf .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfnHWzthf .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfnHWzthf .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfnHWzthf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfnHWzthf .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfnHWzthf .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfnHWzthf .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfnHWzthf .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfnHWzthf .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-uxfnHWzthf .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfnHWzthf .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfnHWzthf .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfnHWzthf .mbr-text,
.cid-uxfnHWzthf .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtfJCSxIW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtfJCSxIW H1 {
  color: #000000;
}
.cid-uwtfJDhKh3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwtfJDhKh3 h2 {
  text-align: left;
}
.cid-uwtfJDhKh3 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtfJDhKh3 p {
  color: #767676;
  text-align: left;
}
.cid-uwtfJDhKh3 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtfJDhKh3 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtfJDhKh3 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtfJDhKh3 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtfJDhKh3 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtfJDhKh3 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtfJDhKh3 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwtfJDhKh3 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwtfJDhKh3 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwtfJDhKh3 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwtfJDhKh3 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtfJDLurk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtfJDLurk H1 {
  color: #000000;
}
.cid-uwtfJEaqcz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwtfJEaqcz .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtfJEaqcz .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtfJEaqcz .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtfJEaqcz .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwtfJEaqcz .box {
  right: 20%;
}
.cid-uwtfJEaqcz .text-box {
  right: 0;
}
.cid-uwtfJEaqcz .mbr-section-title,
.cid-uwtfJEaqcz .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwtfJEaqcz .text-box {
    display: none;
  }
  .cid-uwtfJEaqcz .mbr-section-title,
  .cid-uwtfJEaqcz .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtfJEaqcz .box {
    display: none;
  }
  .cid-uwtfJEaqcz .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtfJEaqcz .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtfJEaqcz .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtfJEaqcz .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtfJEaqcz .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtfJEaqcz .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtfJEDsD6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtfJF1e9s {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwtfJF1e9s h2 {
  text-align: left;
}
.cid-uwtfJF1e9s h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtfJF1e9s p {
  color: #767676;
  text-align: left;
}
.cid-uwtfJF1e9s .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtfJF1e9s .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtfJF1e9s .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtfJF1e9s .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtfJF1e9s .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtfJF1e9s .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtfJF1e9s .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtfJF1e9s .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtfJF1e9s .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtfJF1e9s .mbr-text {
  color: #232323;
}
.cid-uwtfJFuxui {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwtfJFuxui .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtfJFuxui .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwtfJFuxui .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwtfJFuxui .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwtfJFuxui .container {
    padding: 0 26px;
  }
}
.cid-uwtfJFuxui .row {
  justify-content: center;
}
.cid-uwtfJFuxui .item {
  margin-bottom: 32px;
}
.cid-uwtfJFuxui .item a {
  display: block;
}
.cid-uwtfJFuxui .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwtfJFuxui .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwtfJFuxui .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwtfJFuxui .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-uwtfJFuxui .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwtfJFuxui .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwtfJFuxui .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-uwtfJFuxui .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwtfJFuxui .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwtfJFuxui .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwtfJFuxui .item-title {
  color: #ffffff;
}
.cid-uwtfJFuxui .mbr-date {
  color: #cacaca;
}
.cid-uwtfJFuxui .mbr-desc {
  color: #cacaca;
}
.cid-uwtfJFUB4B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwtfJFUB4B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtfJFUB4B .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-uwtfJFUB4B .container {
    padding: 0 16px;
  }
}
.cid-uwtfJFUB4B .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwtfJFUB4B .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtfJFUB4B .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwtfJFUB4B .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtfJFUB4B .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwtfJFUB4B .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwtfJFUB4B .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwtfJFUB4B .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwtfJFUB4B .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwtfJFUB4B .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-uwtfJFUB4B .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwtfJFUB4B .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwtfJFUB4B .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwtfJFUB4B .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwtfJFUB4B .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwtfJFUB4B .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwtfJFUB4B .dragArea.row .form-group .form-control:hover,
.cid-uwtfJFUB4B .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwtfJFUB4B .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwtfJFUB4B .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwtfJFUB4B .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwtfJFUB4B .mbr-title {
  color: #ffffff;
}
.cid-uwtfJFUB4B .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwtfJFUB4B .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwtfJFUB4B .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwtfJFUB4B .list {
  color: #08323C;
}
.cid-uwtfJFUB4B label {
  color: #08323C;
}
.cid-uwtfJFUB4B H3 {
  color: #000000;
}
.cid-uwtfJFUB4B P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwtg6MYFf6 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtg6MYFf6 H1 {
  text-align: center;
}
.cid-uDmyv6R1GI {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmyv6R1GI .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmyv6R1GI .video-block {
    width: 100% !important;
  }
}
.cid-uwtg6NqH0D {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtg6NSSbY {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwtg6NSSbY .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtg6NSSbY .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtg6NSSbY .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtg6NSSbY .box {
  left: 20%;
}
.cid-uwtg6NSSbY .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwtg6NSSbY .mbr-section-text,
.cid-uwtg6NSSbY .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwtg6NSSbY .text-box {
    display: none;
  }
  .cid-uwtg6NSSbY .mbr-section-title,
  .cid-uwtg6NSSbY .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtg6NSSbY .box {
    display: none;
  }
  .cid-uwtg6NSSbY .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtg6NSSbY .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtg6NSSbY .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtg6NSSbY .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtg6NSSbY .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtg6NSSbY .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtg6OiqaT {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtg6OiqaT H1 {
  text-align: center;
}
.cid-uwtg6OF9Kg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtg6P5qat {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtg6P5qat h2 {
  text-align: left;
}
.cid-uwtg6P5qat h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtg6P5qat p {
  color: #767676;
  text-align: left;
}
.cid-uwtg6P5qat .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtg6P5qat .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtg6P5qat .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtg6P5qat .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtg6P5qat .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtg6P5qat .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtg6P5qat .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtg6P5qat .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtg6P5qat .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtg6P5qat H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwtg6P5qat P {
  color: #ffffff;
  text-align: left;
}
.cid-uwtg6P5qat H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwtg6PvXmw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwtg6PvXmw H1 {
  color: #000000;
}
.cid-uxfoCZmURA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfoCZmURA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfoCZmURA .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfoCZmURA .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfoCZmURA .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfoCZmURA .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfoCZmURA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfoCZmURA .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfoCZmURA .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfoCZmURA .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfoCZmURA .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfoCZmURA .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-uxfoCZmURA .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfoCZmURA .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfoCZmURA .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfoCZmURA .mbr-text,
.cid-uxfoCZmURA .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtg6QrlIC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwtg6QrlIC H1 {
  color: #000000;
}
.cid-uxfoDEZo8h {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfoDEZo8h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfoDEZo8h .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfoDEZo8h .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfoDEZo8h .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfoDEZo8h .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfoDEZo8h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfoDEZo8h .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfoDEZo8h .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfoDEZo8h .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfoDEZo8h .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfoDEZo8h .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-uxfoDEZo8h .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfoDEZo8h .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfoDEZo8h .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfoDEZo8h .mbr-text,
.cid-uxfoDEZo8h .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfoErHIv5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfoErHIv5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfoErHIv5 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfoErHIv5 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfoErHIv5 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfoErHIv5 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfoErHIv5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfoErHIv5 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfoErHIv5 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfoErHIv5 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfoErHIv5 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfoErHIv5 .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-uxfoErHIv5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfoErHIv5 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfoErHIv5 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfoErHIv5 .mbr-text,
.cid-uxfoErHIv5 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtg6RZTqb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtg6RZTqb H1 {
  color: #000000;
}
.cid-uwtg6Sn5lm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwtg6Sn5lm h2 {
  text-align: left;
}
.cid-uwtg6Sn5lm h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtg6Sn5lm p {
  color: #767676;
  text-align: left;
}
.cid-uwtg6Sn5lm .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtg6Sn5lm .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtg6Sn5lm .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtg6Sn5lm .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtg6Sn5lm .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtg6Sn5lm .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtg6Sn5lm .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwtg6Sn5lm .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwtg6Sn5lm .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwtg6Sn5lm .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwtg6Sn5lm .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtg6SVTk9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtg6SVTk9 H1 {
  color: #000000;
}
.cid-uwtg6TjPCD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwtg6TjPCD .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtg6TjPCD .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtg6TjPCD .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtg6TjPCD .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwtg6TjPCD .box {
  right: 20%;
}
.cid-uwtg6TjPCD .text-box {
  right: 0;
}
.cid-uwtg6TjPCD .mbr-section-title,
.cid-uwtg6TjPCD .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwtg6TjPCD .text-box {
    display: none;
  }
  .cid-uwtg6TjPCD .mbr-section-title,
  .cid-uwtg6TjPCD .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtg6TjPCD .box {
    display: none;
  }
  .cid-uwtg6TjPCD .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtg6TjPCD .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtg6TjPCD .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtg6TjPCD .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtg6TjPCD .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtg6TjPCD .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtg6TOReo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtg6Udjpj {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwtg6Udjpj h2 {
  text-align: left;
}
.cid-uwtg6Udjpj h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtg6Udjpj p {
  color: #767676;
  text-align: left;
}
.cid-uwtg6Udjpj .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtg6Udjpj .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtg6Udjpj .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtg6Udjpj .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtg6Udjpj .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtg6Udjpj .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtg6Udjpj .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtg6Udjpj .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtg6Udjpj .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtg6Udjpj .mbr-text {
  color: #232323;
}
.cid-uwtg6UHJPS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwtg6UHJPS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtg6UHJPS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwtg6UHJPS .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwtg6UHJPS .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwtg6UHJPS .container {
    padding: 0 26px;
  }
}
.cid-uwtg6UHJPS .row {
  justify-content: center;
}
.cid-uwtg6UHJPS .item {
  margin-bottom: 32px;
}
.cid-uwtg6UHJPS .item a {
  display: block;
}
.cid-uwtg6UHJPS .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwtg6UHJPS .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwtg6UHJPS .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwtg6UHJPS .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-uwtg6UHJPS .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwtg6UHJPS .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwtg6UHJPS .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-uwtg6UHJPS .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwtg6UHJPS .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwtg6UHJPS .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwtg6UHJPS .item-title {
  color: #ffffff;
}
.cid-uwtg6UHJPS .mbr-date {
  color: #cacaca;
}
.cid-uwtg6UHJPS .mbr-desc {
  color: #cacaca;
}
.cid-uwtg6V9pKS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwtg6V9pKS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtg6V9pKS .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-uwtg6V9pKS .container {
    padding: 0 16px;
  }
}
.cid-uwtg6V9pKS .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwtg6V9pKS .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtg6V9pKS .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwtg6V9pKS .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtg6V9pKS .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwtg6V9pKS .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwtg6V9pKS .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwtg6V9pKS .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwtg6V9pKS .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwtg6V9pKS .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-uwtg6V9pKS .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwtg6V9pKS .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwtg6V9pKS .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwtg6V9pKS .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwtg6V9pKS .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwtg6V9pKS .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwtg6V9pKS .dragArea.row .form-group .form-control:hover,
.cid-uwtg6V9pKS .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwtg6V9pKS .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwtg6V9pKS .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwtg6V9pKS .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwtg6V9pKS .mbr-title {
  color: #ffffff;
}
.cid-uwtg6V9pKS .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwtg6V9pKS .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwtg6V9pKS .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwtg6V9pKS .list {
  color: #08323C;
}
.cid-uwtg6V9pKS label {
  color: #08323C;
}
.cid-uwtg6V9pKS H3 {
  color: #000000;
}
.cid-uwtg6V9pKS P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwtgofyRCh {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtgofyRCh H1 {
  text-align: center;
}
.cid-uDmyyv3ztK {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmyyv3ztK .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmyyv3ztK .video-block {
    width: 100% !important;
  }
}
.cid-uwtgog55eS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtgogyN2l {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwtgogyN2l .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtgogyN2l .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtgogyN2l .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtgogyN2l .box {
  left: 20%;
}
.cid-uwtgogyN2l .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwtgogyN2l .mbr-section-text,
.cid-uwtgogyN2l .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwtgogyN2l .text-box {
    display: none;
  }
  .cid-uwtgogyN2l .mbr-section-title,
  .cid-uwtgogyN2l .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtgogyN2l .box {
    display: none;
  }
  .cid-uwtgogyN2l .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtgogyN2l .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtgogyN2l .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtgogyN2l .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtgogyN2l .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtgogyN2l .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtgogXAzG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtgogXAzG H1 {
  text-align: center;
}
.cid-uwtgohnJfO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtgohRP0Z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtgohRP0Z h2 {
  text-align: left;
}
.cid-uwtgohRP0Z h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtgohRP0Z p {
  color: #767676;
  text-align: left;
}
.cid-uwtgohRP0Z .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtgohRP0Z .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtgohRP0Z .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtgohRP0Z .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtgohRP0Z .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtgohRP0Z .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtgohRP0Z .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtgohRP0Z .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtgohRP0Z .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtgohRP0Z H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwtgohRP0Z P {
  color: #ffffff;
  text-align: left;
}
.cid-uwtgohRP0Z H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwtgoiqEWw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwtgoiqEWw H1 {
  color: #000000;
}
.cid-uxfoMPmccm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfoMPmccm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfoMPmccm .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfoMPmccm .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfoMPmccm .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfoMPmccm .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfoMPmccm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfoMPmccm .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfoMPmccm .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfoMPmccm .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfoMPmccm .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfoMPmccm .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-uxfoMPmccm .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfoMPmccm .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfoMPmccm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfoMPmccm .mbr-text,
.cid-uxfoMPmccm .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtgojpF8Y {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwtgojpF8Y H1 {
  color: #000000;
}
.cid-uxfoNGwvg6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfoNGwvg6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfoNGwvg6 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfoNGwvg6 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfoNGwvg6 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfoNGwvg6 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfoNGwvg6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfoNGwvg6 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfoNGwvg6 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfoNGwvg6 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfoNGwvg6 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfoNGwvg6 .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-uxfoNGwvg6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfoNGwvg6 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfoNGwvg6 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfoNGwvg6 .mbr-text,
.cid-uxfoNGwvg6 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfoOiHknK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfoOiHknK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfoOiHknK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfoOiHknK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfoOiHknK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfoOiHknK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfoOiHknK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfoOiHknK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfoOiHknK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfoOiHknK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfoOiHknK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfoOiHknK .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-uxfoOiHknK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfoOiHknK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfoOiHknK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfoOiHknK .mbr-text,
.cid-uxfoOiHknK .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtgol6uya {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtgol6uya H1 {
  color: #000000;
}
.cid-uwtgolAmn5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwtgolAmn5 h2 {
  text-align: left;
}
.cid-uwtgolAmn5 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtgolAmn5 p {
  color: #767676;
  text-align: left;
}
.cid-uwtgolAmn5 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtgolAmn5 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtgolAmn5 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtgolAmn5 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtgolAmn5 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtgolAmn5 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtgolAmn5 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwtgolAmn5 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwtgolAmn5 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwtgolAmn5 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwtgolAmn5 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtgom2H9w {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtgom2H9w H1 {
  color: #000000;
}
.cid-uwtgomuJVN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwtgomuJVN .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtgomuJVN .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtgomuJVN .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtgomuJVN .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwtgomuJVN .box {
  right: 20%;
}
.cid-uwtgomuJVN .text-box {
  right: 0;
}
.cid-uwtgomuJVN .mbr-section-title,
.cid-uwtgomuJVN .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwtgomuJVN .text-box {
    display: none;
  }
  .cid-uwtgomuJVN .mbr-section-title,
  .cid-uwtgomuJVN .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtgomuJVN .box {
    display: none;
  }
  .cid-uwtgomuJVN .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtgomuJVN .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtgomuJVN .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtgomuJVN .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtgomuJVN .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtgomuJVN .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtgomYqyQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtgonokUm {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwtgonokUm h2 {
  text-align: left;
}
.cid-uwtgonokUm h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtgonokUm p {
  color: #767676;
  text-align: left;
}
.cid-uwtgonokUm .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtgonokUm .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtgonokUm .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtgonokUm .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtgonokUm .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtgonokUm .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtgonokUm .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtgonokUm .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtgonokUm .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtgonokUm .mbr-text {
  color: #232323;
}
.cid-uwtgonThSc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwtgonThSc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtgonThSc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwtgonThSc .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwtgonThSc .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwtgonThSc .container {
    padding: 0 26px;
  }
}
.cid-uwtgonThSc .row {
  justify-content: center;
}
.cid-uwtgonThSc .item {
  margin-bottom: 32px;
}
.cid-uwtgonThSc .item a {
  display: block;
}
.cid-uwtgonThSc .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwtgonThSc .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwtgonThSc .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwtgonThSc .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-uwtgonThSc .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwtgonThSc .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwtgonThSc .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-uwtgonThSc .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwtgonThSc .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwtgonThSc .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwtgonThSc .item-title {
  color: #ffffff;
}
.cid-uwtgonThSc .mbr-date {
  color: #cacaca;
}
.cid-uwtgonThSc .mbr-desc {
  color: #cacaca;
}
.cid-uwtgookJQs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwtgookJQs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtgookJQs .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-uwtgookJQs .container {
    padding: 0 16px;
  }
}
.cid-uwtgookJQs .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwtgookJQs .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtgookJQs .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwtgookJQs .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtgookJQs .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwtgookJQs .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwtgookJQs .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwtgookJQs .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwtgookJQs .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwtgookJQs .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-uwtgookJQs .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwtgookJQs .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwtgookJQs .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwtgookJQs .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwtgookJQs .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwtgookJQs .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwtgookJQs .dragArea.row .form-group .form-control:hover,
.cid-uwtgookJQs .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwtgookJQs .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwtgookJQs .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwtgookJQs .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwtgookJQs .mbr-title {
  color: #ffffff;
}
.cid-uwtgookJQs .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwtgookJQs .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwtgookJQs .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwtgookJQs .list {
  color: #08323C;
}
.cid-uwtgookJQs label {
  color: #08323C;
}
.cid-uwtgookJQs H3 {
  color: #000000;
}
.cid-uwtgookJQs P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwtgG8R6ke {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtgG8R6ke H1 {
  text-align: center;
}
.cid-uDmyBo4H7p {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmyBo4H7p .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmyBo4H7p .video-block {
    width: 100% !important;
  }
}
.cid-uwtgG9rYeT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtgG9P519 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwtgG9P519 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtgG9P519 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtgG9P519 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtgG9P519 .box {
  left: 20%;
}
.cid-uwtgG9P519 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwtgG9P519 .mbr-section-text,
.cid-uwtgG9P519 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwtgG9P519 .text-box {
    display: none;
  }
  .cid-uwtgG9P519 .mbr-section-title,
  .cid-uwtgG9P519 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtgG9P519 .box {
    display: none;
  }
  .cid-uwtgG9P519 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtgG9P519 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtgG9P519 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtgG9P519 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtgG9P519 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtgG9P519 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtgGacQ24 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtgGacQ24 H1 {
  text-align: center;
}
.cid-uwtgGaGnEm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtgGb20Gv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtgGb20Gv h2 {
  text-align: left;
}
.cid-uwtgGb20Gv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtgGb20Gv p {
  color: #767676;
  text-align: left;
}
.cid-uwtgGb20Gv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtgGb20Gv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtgGb20Gv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtgGb20Gv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtgGb20Gv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtgGb20Gv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtgGb20Gv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtgGb20Gv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtgGb20Gv .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtgGb20Gv H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwtgGb20Gv P {
  color: #ffffff;
  text-align: left;
}
.cid-uwtgGb20Gv H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwtgGbwppk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwtgGbwppk H1 {
  color: #000000;
}
.cid-uxfpfofXXV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfpfofXXV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfpfofXXV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfpfofXXV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfpfofXXV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfpfofXXV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfpfofXXV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfpfofXXV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfpfofXXV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfpfofXXV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfpfofXXV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfpfofXXV .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-uxfpfofXXV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfpfofXXV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfpfofXXV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfpfofXXV .mbr-text,
.cid-uxfpfofXXV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtgGcwBPF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwtgGcwBPF H1 {
  color: #000000;
}
.cid-uxfpdfEp7P {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfpdfEp7P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfpdfEp7P .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfpdfEp7P .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfpdfEp7P .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfpdfEp7P .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfpdfEp7P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfpdfEp7P .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfpdfEp7P .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfpdfEp7P .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfpdfEp7P .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfpdfEp7P .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-uxfpdfEp7P .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfpdfEp7P .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfpdfEp7P .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfpdfEp7P .mbr-text,
.cid-uxfpdfEp7P .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfpe0skTm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfpe0skTm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfpe0skTm .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfpe0skTm .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfpe0skTm .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfpe0skTm .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfpe0skTm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfpe0skTm .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfpe0skTm .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfpe0skTm .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfpe0skTm .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfpe0skTm .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-uxfpe0skTm .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfpe0skTm .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfpe0skTm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfpe0skTm .mbr-text,
.cid-uxfpe0skTm .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtgGe2VQv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtgGe2VQv H1 {
  color: #000000;
}
.cid-uwtgGew6B8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwtgGew6B8 h2 {
  text-align: left;
}
.cid-uwtgGew6B8 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtgGew6B8 p {
  color: #767676;
  text-align: left;
}
.cid-uwtgGew6B8 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtgGew6B8 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtgGew6B8 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtgGew6B8 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtgGew6B8 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtgGew6B8 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtgGew6B8 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwtgGew6B8 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwtgGew6B8 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwtgGew6B8 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwtgGew6B8 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtgGeXiUo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtgGeXiUo H1 {
  color: #000000;
}
.cid-uwtgGfrWPJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwtgGfrWPJ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtgGfrWPJ .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtgGfrWPJ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtgGfrWPJ .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwtgGfrWPJ .box {
  right: 20%;
}
.cid-uwtgGfrWPJ .text-box {
  right: 0;
}
.cid-uwtgGfrWPJ .mbr-section-title,
.cid-uwtgGfrWPJ .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwtgGfrWPJ .text-box {
    display: none;
  }
  .cid-uwtgGfrWPJ .mbr-section-title,
  .cid-uwtgGfrWPJ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtgGfrWPJ .box {
    display: none;
  }
  .cid-uwtgGfrWPJ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtgGfrWPJ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtgGfrWPJ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtgGfrWPJ .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtgGfrWPJ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtgGfrWPJ .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtgGfTuEn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtgGgmywC {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwtgGgmywC h2 {
  text-align: left;
}
.cid-uwtgGgmywC h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtgGgmywC p {
  color: #767676;
  text-align: left;
}
.cid-uwtgGgmywC .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtgGgmywC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtgGgmywC .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtgGgmywC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtgGgmywC .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtgGgmywC .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtgGgmywC .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtgGgmywC .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtgGgmywC .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtgGgmywC .mbr-text {
  color: #232323;
}
.cid-uwtgGgQhKk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwtgGgQhKk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtgGgQhKk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwtgGgQhKk .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwtgGgQhKk .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwtgGgQhKk .container {
    padding: 0 26px;
  }
}
.cid-uwtgGgQhKk .row {
  justify-content: center;
}
.cid-uwtgGgQhKk .item {
  margin-bottom: 32px;
}
.cid-uwtgGgQhKk .item a {
  display: block;
}
.cid-uwtgGgQhKk .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwtgGgQhKk .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwtgGgQhKk .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwtgGgQhKk .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-uwtgGgQhKk .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwtgGgQhKk .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwtgGgQhKk .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-uwtgGgQhKk .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwtgGgQhKk .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwtgGgQhKk .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwtgGgQhKk .item-title {
  color: #ffffff;
}
.cid-uwtgGgQhKk .mbr-date {
  color: #cacaca;
}
.cid-uwtgGgQhKk .mbr-desc {
  color: #cacaca;
}
.cid-uwtgGhpCsb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwtgGhpCsb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtgGhpCsb .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-uwtgGhpCsb .container {
    padding: 0 16px;
  }
}
.cid-uwtgGhpCsb .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwtgGhpCsb .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtgGhpCsb .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwtgGhpCsb .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtgGhpCsb .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwtgGhpCsb .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwtgGhpCsb .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwtgGhpCsb .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwtgGhpCsb .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwtgGhpCsb .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-uwtgGhpCsb .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwtgGhpCsb .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwtgGhpCsb .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwtgGhpCsb .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwtgGhpCsb .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwtgGhpCsb .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwtgGhpCsb .dragArea.row .form-group .form-control:hover,
.cid-uwtgGhpCsb .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwtgGhpCsb .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwtgGhpCsb .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwtgGhpCsb .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwtgGhpCsb .mbr-title {
  color: #ffffff;
}
.cid-uwtgGhpCsb .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwtgGhpCsb .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwtgGhpCsb .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwtgGhpCsb .list {
  color: #08323C;
}
.cid-uwtgGhpCsb label {
  color: #08323C;
}
.cid-uwtgGhpCsb H3 {
  color: #000000;
}
.cid-uwtgGhpCsb P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwtvCfmSig {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtvCfmSig H1 {
  text-align: center;
}
.cid-uDmMRgTOaC {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmMRgTOaC .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmMRgTOaC .video-block {
    width: 100% !important;
  }
}
.cid-uwtvCg0Zsn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtvCgrMvT {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwtvCgrMvT .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtvCgrMvT .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtvCgrMvT .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtvCgrMvT .box {
  left: 20%;
}
.cid-uwtvCgrMvT .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwtvCgrMvT .mbr-section-text,
.cid-uwtvCgrMvT .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwtvCgrMvT .text-box {
    display: none;
  }
  .cid-uwtvCgrMvT .mbr-section-title,
  .cid-uwtvCgrMvT .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtvCgrMvT .box {
    display: none;
  }
  .cid-uwtvCgrMvT .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtvCgrMvT .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtvCgrMvT .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtvCgrMvT .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtvCgrMvT .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtvCgrMvT .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtvCgUizv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtvCgUizv H1 {
  text-align: center;
}
.cid-uwtvChjiW5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtvChMi0G {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtvChMi0G h2 {
  text-align: left;
}
.cid-uwtvChMi0G h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtvChMi0G p {
  color: #767676;
  text-align: left;
}
.cid-uwtvChMi0G .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtvChMi0G .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtvChMi0G .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtvChMi0G .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtvChMi0G .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtvChMi0G .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtvChMi0G .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtvChMi0G .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtvChMi0G .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtvChMi0G H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwtvChMi0G P {
  color: #ffffff;
  text-align: left;
}
.cid-uwtvChMi0G H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwtvCjldMH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxlL8T4FZa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxlL8T4FZa H1 {
  color: #000000;
}
.cid-uxlL9Lp4ZI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxlL9Lp4ZI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxlL9Lp4ZI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxlL9Lp4ZI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxlL9Lp4ZI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxlL9Lp4ZI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxlL9Lp4ZI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxlL9Lp4ZI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxlL9Lp4ZI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxlL9Lp4ZI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxlL9Lp4ZI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxlL9Lp4ZI .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-uxlL9Lp4ZI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxlL9Lp4ZI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxlL9Lp4ZI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxlL9Lp4ZI .mbr-text,
.cid-uxlL9Lp4ZI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtvCjTvWE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwtvCjTvWE H1 {
  color: #000000;
}
.cid-uxkN5EbBV1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkN5EbBV1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkN5EbBV1 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkN5EbBV1 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkN5EbBV1 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkN5EbBV1 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkN5EbBV1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkN5EbBV1 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkN5EbBV1 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkN5EbBV1 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkN5EbBV1 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkN5EbBV1 .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-uxkN5EbBV1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkN5EbBV1 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkN5EbBV1 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkN5EbBV1 .mbr-text,
.cid-uxkN5EbBV1 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkN6xw7Qj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkN6xw7Qj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkN6xw7Qj .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkN6xw7Qj .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkN6xw7Qj .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkN6xw7Qj .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkN6xw7Qj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkN6xw7Qj .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkN6xw7Qj .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkN6xw7Qj .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkN6xw7Qj .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkN6xw7Qj .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-uxkN6xw7Qj .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkN6xw7Qj .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkN6xw7Qj .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkN6xw7Qj .mbr-text,
.cid-uxkN6xw7Qj .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtvClW5HR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtvClW5HR H1 {
  color: #000000;
}
.cid-uwtvCmr0T4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwtvCmr0T4 h2 {
  text-align: left;
}
.cid-uwtvCmr0T4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtvCmr0T4 p {
  color: #767676;
  text-align: left;
}
.cid-uwtvCmr0T4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtvCmr0T4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtvCmr0T4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtvCmr0T4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtvCmr0T4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtvCmr0T4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtvCmr0T4 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwtvCmr0T4 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwtvCmr0T4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwtvCmr0T4 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwtvCmr0T4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtvCn7SRo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtvCn7SRo H1 {
  color: #000000;
}
.cid-uwtvCnAt29 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwtvCnAt29 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtvCnAt29 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtvCnAt29 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtvCnAt29 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwtvCnAt29 .box {
  right: 20%;
}
.cid-uwtvCnAt29 .text-box {
  right: 0;
}
.cid-uwtvCnAt29 .mbr-section-title,
.cid-uwtvCnAt29 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwtvCnAt29 .text-box {
    display: none;
  }
  .cid-uwtvCnAt29 .mbr-section-title,
  .cid-uwtvCnAt29 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtvCnAt29 .box {
    display: none;
  }
  .cid-uwtvCnAt29 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtvCnAt29 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtvCnAt29 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtvCnAt29 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtvCnAt29 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtvCnAt29 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtvCogKdM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtvCoMtrX {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwtvCoMtrX h2 {
  text-align: left;
}
.cid-uwtvCoMtrX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtvCoMtrX p {
  color: #767676;
  text-align: left;
}
.cid-uwtvCoMtrX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtvCoMtrX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtvCoMtrX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtvCoMtrX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtvCoMtrX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtvCoMtrX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtvCoMtrX .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtvCoMtrX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtvCoMtrX .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtvCoMtrX .mbr-text {
  color: #232323;
}
.cid-uwtvCpoKcm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwtvCpoKcm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtvCpoKcm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwtvCpoKcm .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwtvCpoKcm .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwtvCpoKcm .container {
    padding: 0 26px;
  }
}
.cid-uwtvCpoKcm .row {
  justify-content: center;
}
.cid-uwtvCpoKcm .item {
  margin-bottom: 32px;
}
.cid-uwtvCpoKcm .item a {
  display: block;
}
.cid-uwtvCpoKcm .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwtvCpoKcm .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwtvCpoKcm .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwtvCpoKcm .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-uwtvCpoKcm .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwtvCpoKcm .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwtvCpoKcm .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-uwtvCpoKcm .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwtvCpoKcm .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwtvCpoKcm .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwtvCpoKcm .item-title {
  color: #ffffff;
}
.cid-uwtvCpoKcm .mbr-date {
  color: #cacaca;
}
.cid-uwtvCpoKcm .mbr-desc {
  color: #cacaca;
}
.cid-uwtvCpUHj0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwtvCpUHj0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtvCpUHj0 .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-uwtvCpUHj0 .container {
    padding: 0 16px;
  }
}
.cid-uwtvCpUHj0 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwtvCpUHj0 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtvCpUHj0 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwtvCpUHj0 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtvCpUHj0 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwtvCpUHj0 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwtvCpUHj0 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwtvCpUHj0 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwtvCpUHj0 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwtvCpUHj0 .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-uwtvCpUHj0 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwtvCpUHj0 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwtvCpUHj0 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwtvCpUHj0 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwtvCpUHj0 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwtvCpUHj0 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwtvCpUHj0 .dragArea.row .form-group .form-control:hover,
.cid-uwtvCpUHj0 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwtvCpUHj0 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwtvCpUHj0 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwtvCpUHj0 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwtvCpUHj0 .mbr-title {
  color: #ffffff;
}
.cid-uwtvCpUHj0 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwtvCpUHj0 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwtvCpUHj0 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwtvCpUHj0 .list {
  color: #08323C;
}
.cid-uwtvCpUHj0 label {
  color: #08323C;
}
.cid-uwtvCpUHj0 H3 {
  color: #000000;
}
.cid-uwtvCpUHj0 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwtvVovbiZ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtvVovbiZ H1 {
  text-align: center;
}
.cid-uDmMTP93kt {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmMTP93kt .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmMTP93kt .video-block {
    width: 100% !important;
  }
}
.cid-uwtvVp42wT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtvVptR6U {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwtvVptR6U .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtvVptR6U .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtvVptR6U .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtvVptR6U .box {
  left: 20%;
}
.cid-uwtvVptR6U .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwtvVptR6U .mbr-section-text,
.cid-uwtvVptR6U .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwtvVptR6U .text-box {
    display: none;
  }
  .cid-uwtvVptR6U .mbr-section-title,
  .cid-uwtvVptR6U .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtvVptR6U .box {
    display: none;
  }
  .cid-uwtvVptR6U .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtvVptR6U .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtvVptR6U .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtvVptR6U .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtvVptR6U .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtvVptR6U .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtvVq0oMs {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtvVq0oMs H1 {
  text-align: center;
}
.cid-uwtvVqqUox {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtvVqWusK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtvVqWusK h2 {
  text-align: left;
}
.cid-uwtvVqWusK h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtvVqWusK p {
  color: #767676;
  text-align: left;
}
.cid-uwtvVqWusK .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtvVqWusK .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtvVqWusK .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtvVqWusK .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtvVqWusK .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtvVqWusK .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtvVqWusK .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtvVqWusK .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtvVqWusK .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtvVqWusK H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwtvVqWusK P {
  color: #ffffff;
  text-align: left;
}
.cid-uwtvVqWusK H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwtvVsxHCM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxlLebMFAy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxlLebMFAy H1 {
  color: #000000;
}
.cid-uxlLf2yefv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxlLf2yefv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxlLf2yefv .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxlLf2yefv .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxlLf2yefv .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxlLf2yefv .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxlLf2yefv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxlLf2yefv .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxlLf2yefv .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxlLf2yefv .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxlLf2yefv .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxlLf2yefv .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-uxlLf2yefv .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxlLf2yefv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxlLf2yefv .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxlLf2yefv .mbr-text,
.cid-uxlLf2yefv .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtvVt18ag {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwtvVt18ag H1 {
  color: #000000;
}
.cid-uxkNpdHyaJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkNpdHyaJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkNpdHyaJ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkNpdHyaJ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkNpdHyaJ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkNpdHyaJ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkNpdHyaJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkNpdHyaJ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkNpdHyaJ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkNpdHyaJ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkNpdHyaJ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkNpdHyaJ .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-uxkNpdHyaJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkNpdHyaJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkNpdHyaJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkNpdHyaJ .mbr-text,
.cid-uxkNpdHyaJ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkNpVhujf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkNpVhujf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkNpVhujf .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkNpVhujf .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkNpVhujf .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkNpVhujf .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkNpVhujf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkNpVhujf .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkNpVhujf .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkNpVhujf .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkNpVhujf .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkNpVhujf .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-uxkNpVhujf .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkNpVhujf .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkNpVhujf .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkNpVhujf .mbr-text,
.cid-uxkNpVhujf .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtvVuOTKA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtvVuOTKA H1 {
  color: #000000;
}
.cid-uwtvVvjOE1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwtvVvjOE1 h2 {
  text-align: left;
}
.cid-uwtvVvjOE1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtvVvjOE1 p {
  color: #767676;
  text-align: left;
}
.cid-uwtvVvjOE1 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtvVvjOE1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtvVvjOE1 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtvVvjOE1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtvVvjOE1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtvVvjOE1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtvVvjOE1 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwtvVvjOE1 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwtvVvjOE1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwtvVvjOE1 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwtvVvjOE1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtvVvSdS4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtvVvSdS4 H1 {
  color: #000000;
}
.cid-uwtvVwk4Tb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwtvVwk4Tb .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtvVwk4Tb .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtvVwk4Tb .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtvVwk4Tb .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwtvVwk4Tb .box {
  right: 20%;
}
.cid-uwtvVwk4Tb .text-box {
  right: 0;
}
.cid-uwtvVwk4Tb .mbr-section-title,
.cid-uwtvVwk4Tb .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwtvVwk4Tb .text-box {
    display: none;
  }
  .cid-uwtvVwk4Tb .mbr-section-title,
  .cid-uwtvVwk4Tb .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtvVwk4Tb .box {
    display: none;
  }
  .cid-uwtvVwk4Tb .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtvVwk4Tb .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtvVwk4Tb .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtvVwk4Tb .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtvVwk4Tb .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtvVwk4Tb .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtvVwTVG2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtvVxmhYR {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwtvVxmhYR h2 {
  text-align: left;
}
.cid-uwtvVxmhYR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtvVxmhYR p {
  color: #767676;
  text-align: left;
}
.cid-uwtvVxmhYR .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtvVxmhYR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtvVxmhYR .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtvVxmhYR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtvVxmhYR .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtvVxmhYR .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtvVxmhYR .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtvVxmhYR .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtvVxmhYR .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtvVxmhYR .mbr-text {
  color: #232323;
}
.cid-uwtvVxWSgS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwtvVxWSgS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtvVxWSgS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwtvVxWSgS .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwtvVxWSgS .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwtvVxWSgS .container {
    padding: 0 26px;
  }
}
.cid-uwtvVxWSgS .row {
  justify-content: center;
}
.cid-uwtvVxWSgS .item {
  margin-bottom: 32px;
}
.cid-uwtvVxWSgS .item a {
  display: block;
}
.cid-uwtvVxWSgS .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwtvVxWSgS .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwtvVxWSgS .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwtvVxWSgS .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-uwtvVxWSgS .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwtvVxWSgS .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwtvVxWSgS .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-uwtvVxWSgS .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwtvVxWSgS .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwtvVxWSgS .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwtvVxWSgS .item-title {
  color: #ffffff;
}
.cid-uwtvVxWSgS .mbr-date {
  color: #cacaca;
}
.cid-uwtvVxWSgS .mbr-desc {
  color: #cacaca;
}
.cid-uwtvVytDm4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwtvVytDm4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtvVytDm4 .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-uwtvVytDm4 .container {
    padding: 0 16px;
  }
}
.cid-uwtvVytDm4 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwtvVytDm4 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtvVytDm4 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwtvVytDm4 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtvVytDm4 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwtvVytDm4 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwtvVytDm4 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwtvVytDm4 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwtvVytDm4 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwtvVytDm4 .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-uwtvVytDm4 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwtvVytDm4 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwtvVytDm4 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwtvVytDm4 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwtvVytDm4 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwtvVytDm4 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwtvVytDm4 .dragArea.row .form-group .form-control:hover,
.cid-uwtvVytDm4 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwtvVytDm4 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwtvVytDm4 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwtvVytDm4 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwtvVytDm4 .mbr-title {
  color: #ffffff;
}
.cid-uwtvVytDm4 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwtvVytDm4 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwtvVytDm4 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwtvVytDm4 .list {
  color: #08323C;
}
.cid-uwtvVytDm4 label {
  color: #08323C;
}
.cid-uwtvVytDm4 H3 {
  color: #000000;
}
.cid-uwtvVytDm4 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwtwekOIfj {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtwekOIfj H1 {
  text-align: center;
}
.cid-uDmMWcifv2 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmMWcifv2 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmMWcifv2 .video-block {
    width: 100% !important;
  }
}
.cid-uwtweljg2W {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtwelPgZv {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwtwelPgZv .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtwelPgZv .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtwelPgZv .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtwelPgZv .box {
  left: 20%;
}
.cid-uwtwelPgZv .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwtwelPgZv .mbr-section-text,
.cid-uwtwelPgZv .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwtwelPgZv .text-box {
    display: none;
  }
  .cid-uwtwelPgZv .mbr-section-title,
  .cid-uwtwelPgZv .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtwelPgZv .box {
    display: none;
  }
  .cid-uwtwelPgZv .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtwelPgZv .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtwelPgZv .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtwelPgZv .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtwelPgZv .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtwelPgZv .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtwemfCLX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtwemfCLX H1 {
  text-align: center;
}
.cid-uwtwemJVGU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtwen9Jks {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtwen9Jks h2 {
  text-align: left;
}
.cid-uwtwen9Jks h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtwen9Jks p {
  color: #767676;
  text-align: left;
}
.cid-uwtwen9Jks .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtwen9Jks .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtwen9Jks .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtwen9Jks .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtwen9Jks .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtwen9Jks .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtwen9Jks .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtwen9Jks .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtwen9Jks .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtwen9Jks H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwtwen9Jks P {
  color: #ffffff;
  text-align: left;
}
.cid-uwtwen9Jks H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwtweoNvUK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uxlLjjm0YN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxlLjjm0YN H1 {
  color: #000000;
}
.cid-uxlLkmhLMt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxlLkmhLMt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxlLkmhLMt .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxlLkmhLMt .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxlLkmhLMt .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxlLkmhLMt .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxlLkmhLMt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxlLkmhLMt .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxlLkmhLMt .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxlLkmhLMt .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxlLkmhLMt .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxlLkmhLMt .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-uxlLkmhLMt .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxlLkmhLMt .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxlLkmhLMt .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxlLkmhLMt .mbr-text,
.cid-uxlLkmhLMt .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtwepeSpS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwtwepeSpS H1 {
  color: #000000;
}
.cid-uxkNEQp0rL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkNEQp0rL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkNEQp0rL .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkNEQp0rL .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkNEQp0rL .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkNEQp0rL .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkNEQp0rL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkNEQp0rL .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkNEQp0rL .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkNEQp0rL .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkNEQp0rL .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkNEQp0rL .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-uxkNEQp0rL .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkNEQp0rL .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkNEQp0rL .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkNEQp0rL .mbr-text,
.cid-uxkNEQp0rL .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkNFAV1Ww {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkNFAV1Ww .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkNFAV1Ww .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkNFAV1Ww .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkNFAV1Ww .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkNFAV1Ww .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkNFAV1Ww .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkNFAV1Ww .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkNFAV1Ww .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkNFAV1Ww .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkNFAV1Ww .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkNFAV1Ww .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-uxkNFAV1Ww .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkNFAV1Ww .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkNFAV1Ww .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkNFAV1Ww .mbr-text,
.cid-uxkNFAV1Ww .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtwer0vCe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtwer0vCe H1 {
  color: #000000;
}
.cid-uwtwerwxwM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwtwerwxwM h2 {
  text-align: left;
}
.cid-uwtwerwxwM h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtwerwxwM p {
  color: #767676;
  text-align: left;
}
.cid-uwtwerwxwM .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtwerwxwM .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtwerwxwM .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtwerwxwM .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtwerwxwM .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtwerwxwM .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtwerwxwM .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwtwerwxwM .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwtwerwxwM .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwtwerwxwM .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwtwerwxwM .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtwes1FzB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtwes1FzB H1 {
  color: #000000;
}
.cid-uwtwesxXYr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwtwesxXYr .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtwesxXYr .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtwesxXYr .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtwesxXYr .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwtwesxXYr .box {
  right: 20%;
}
.cid-uwtwesxXYr .text-box {
  right: 0;
}
.cid-uwtwesxXYr .mbr-section-title,
.cid-uwtwesxXYr .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwtwesxXYr .text-box {
    display: none;
  }
  .cid-uwtwesxXYr .mbr-section-title,
  .cid-uwtwesxXYr .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtwesxXYr .box {
    display: none;
  }
  .cid-uwtwesxXYr .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtwesxXYr .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtwesxXYr .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtwesxXYr .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtwesxXYr .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtwesxXYr .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtwet2ZtJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtwetye60 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwtwetye60 h2 {
  text-align: left;
}
.cid-uwtwetye60 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtwetye60 p {
  color: #767676;
  text-align: left;
}
.cid-uwtwetye60 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtwetye60 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtwetye60 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtwetye60 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtwetye60 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtwetye60 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtwetye60 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtwetye60 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtwetye60 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtwetye60 .mbr-text {
  color: #232323;
}
.cid-uwtweu3AT5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwtweu3AT5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtweu3AT5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwtweu3AT5 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwtweu3AT5 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwtweu3AT5 .container {
    padding: 0 26px;
  }
}
.cid-uwtweu3AT5 .row {
  justify-content: center;
}
.cid-uwtweu3AT5 .item {
  margin-bottom: 32px;
}
.cid-uwtweu3AT5 .item a {
  display: block;
}
.cid-uwtweu3AT5 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwtweu3AT5 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwtweu3AT5 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwtweu3AT5 .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-uwtweu3AT5 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwtweu3AT5 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwtweu3AT5 .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-uwtweu3AT5 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwtweu3AT5 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwtweu3AT5 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwtweu3AT5 .item-title {
  color: #ffffff;
}
.cid-uwtweu3AT5 .mbr-date {
  color: #cacaca;
}
.cid-uwtweu3AT5 .mbr-desc {
  color: #cacaca;
}
.cid-uwtweuBeOy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwtweuBeOy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtweuBeOy .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-uwtweuBeOy .container {
    padding: 0 16px;
  }
}
.cid-uwtweuBeOy .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwtweuBeOy .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtweuBeOy .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwtweuBeOy .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtweuBeOy .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwtweuBeOy .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwtweuBeOy .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwtweuBeOy .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwtweuBeOy .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwtweuBeOy .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-uwtweuBeOy .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwtweuBeOy .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwtweuBeOy .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwtweuBeOy .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwtweuBeOy .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwtweuBeOy .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwtweuBeOy .dragArea.row .form-group .form-control:hover,
.cid-uwtweuBeOy .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwtweuBeOy .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwtweuBeOy .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwtweuBeOy .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwtweuBeOy .mbr-title {
  color: #ffffff;
}
.cid-uwtweuBeOy .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwtweuBeOy .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwtweuBeOy .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwtweuBeOy .list {
  color: #08323C;
}
.cid-uwtweuBeOy label {
  color: #08323C;
}
.cid-uwtweuBeOy H3 {
  color: #000000;
}
.cid-uwtweuBeOy P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwtxfjcPW9 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtxfjcPW9 H1 {
  text-align: center;
}
.cid-uDmN0QPPQP {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmN0QPPQP .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmN0QPPQP .video-block {
    width: 100% !important;
  }
}
.cid-uwtxfjOuuS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtxfkfnst {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwtxfkfnst .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtxfkfnst .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtxfkfnst .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtxfkfnst .box {
  left: 20%;
}
.cid-uwtxfkfnst .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwtxfkfnst .mbr-section-text,
.cid-uwtxfkfnst .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwtxfkfnst .text-box {
    display: none;
  }
  .cid-uwtxfkfnst .mbr-section-title,
  .cid-uwtxfkfnst .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtxfkfnst .box {
    display: none;
  }
  .cid-uwtxfkfnst .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtxfkfnst .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtxfkfnst .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtxfkfnst .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtxfkfnst .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtxfkfnst .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtxfkGChc {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtxfkGChc H1 {
  text-align: center;
}
.cid-uwtxflfLo9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtxflG0bx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtxflG0bx h2 {
  text-align: left;
}
.cid-uwtxflG0bx h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtxflG0bx p {
  color: #767676;
  text-align: left;
}
.cid-uwtxflG0bx .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtxflG0bx .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtxflG0bx .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtxflG0bx .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtxflG0bx .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtxflG0bx .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtxflG0bx .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtxflG0bx .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtxflG0bx .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtxflG0bx H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwtxflG0bx P {
  color: #ffffff;
  text-align: left;
}
.cid-uwtxflG0bx H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxlLpEDaP0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxlLpEDaP0 H1 {
  color: #000000;
}
.cid-uxlLqdQRQp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxlLqdQRQp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxlLqdQRQp .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxlLqdQRQp .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxlLqdQRQp .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxlLqdQRQp .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxlLqdQRQp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxlLqdQRQp .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxlLqdQRQp .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxlLqdQRQp .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxlLqdQRQp .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxlLqdQRQp .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-uxlLqdQRQp .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxlLqdQRQp .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxlLqdQRQp .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxlLqdQRQp .mbr-text,
.cid-uxlLqdQRQp .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtxfnt4B9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtxfnUyXC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwtxfnUyXC H1 {
  color: #000000;
}
.cid-uxkNSmoLz1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkNSmoLz1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkNSmoLz1 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkNSmoLz1 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkNSmoLz1 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkNSmoLz1 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkNSmoLz1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkNSmoLz1 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkNSmoLz1 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkNSmoLz1 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkNSmoLz1 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkNSmoLz1 .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-uxkNSmoLz1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkNSmoLz1 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkNSmoLz1 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkNSmoLz1 .mbr-text,
.cid-uxkNSmoLz1 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkNTjCxDi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkNTjCxDi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkNTjCxDi .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkNTjCxDi .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkNTjCxDi .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkNTjCxDi .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkNTjCxDi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkNTjCxDi .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkNTjCxDi .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkNTjCxDi .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkNTjCxDi .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkNTjCxDi .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-uxkNTjCxDi .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkNTjCxDi .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkNTjCxDi .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkNTjCxDi .mbr-text,
.cid-uxkNTjCxDi .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtxfpO7U6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtxfpO7U6 H1 {
  color: #000000;
}
.cid-uwtxfqsZGs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwtxfqsZGs h2 {
  text-align: left;
}
.cid-uwtxfqsZGs h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtxfqsZGs p {
  color: #767676;
  text-align: left;
}
.cid-uwtxfqsZGs .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtxfqsZGs .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtxfqsZGs .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtxfqsZGs .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtxfqsZGs .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtxfqsZGs .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtxfqsZGs .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwtxfqsZGs .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwtxfqsZGs .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwtxfqsZGs .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwtxfqsZGs .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtxfr1sSl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtxfr1sSl H1 {
  color: #000000;
}
.cid-uwtxfrvhBf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwtxfrvhBf .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtxfrvhBf .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtxfrvhBf .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtxfrvhBf .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwtxfrvhBf .box {
  right: 20%;
}
.cid-uwtxfrvhBf .text-box {
  right: 0;
}
.cid-uwtxfrvhBf .mbr-section-title,
.cid-uwtxfrvhBf .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwtxfrvhBf .text-box {
    display: none;
  }
  .cid-uwtxfrvhBf .mbr-section-title,
  .cid-uwtxfrvhBf .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtxfrvhBf .box {
    display: none;
  }
  .cid-uwtxfrvhBf .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtxfrvhBf .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtxfrvhBf .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtxfrvhBf .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtxfrvhBf .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtxfrvhBf .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtxfs4I3q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtxfsBxCA {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwtxfsBxCA h2 {
  text-align: left;
}
.cid-uwtxfsBxCA h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtxfsBxCA p {
  color: #767676;
  text-align: left;
}
.cid-uwtxfsBxCA .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtxfsBxCA .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtxfsBxCA .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtxfsBxCA .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtxfsBxCA .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtxfsBxCA .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtxfsBxCA .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtxfsBxCA .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtxfsBxCA .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtxfsBxCA .mbr-text {
  color: #232323;
}
.cid-uwtxftb7qp {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwtxftb7qp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtxftb7qp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwtxftb7qp .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwtxftb7qp .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwtxftb7qp .container {
    padding: 0 26px;
  }
}
.cid-uwtxftb7qp .row {
  justify-content: center;
}
.cid-uwtxftb7qp .item {
  margin-bottom: 32px;
}
.cid-uwtxftb7qp .item a {
  display: block;
}
.cid-uwtxftb7qp .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwtxftb7qp .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwtxftb7qp .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwtxftb7qp .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-uwtxftb7qp .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwtxftb7qp .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwtxftb7qp .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-uwtxftb7qp .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwtxftb7qp .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwtxftb7qp .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwtxftb7qp .item-title {
  color: #ffffff;
}
.cid-uwtxftb7qp .mbr-date {
  color: #cacaca;
}
.cid-uwtxftb7qp .mbr-desc {
  color: #cacaca;
}
.cid-uwtxftM2vG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwtxftM2vG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtxftM2vG .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-uwtxftM2vG .container {
    padding: 0 16px;
  }
}
.cid-uwtxftM2vG .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwtxftM2vG .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtxftM2vG .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwtxftM2vG .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtxftM2vG .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwtxftM2vG .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwtxftM2vG .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwtxftM2vG .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwtxftM2vG .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwtxftM2vG .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-uwtxftM2vG .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwtxftM2vG .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwtxftM2vG .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwtxftM2vG .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwtxftM2vG .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwtxftM2vG .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwtxftM2vG .dragArea.row .form-group .form-control:hover,
.cid-uwtxftM2vG .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwtxftM2vG .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwtxftM2vG .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwtxftM2vG .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwtxftM2vG .mbr-title {
  color: #ffffff;
}
.cid-uwtxftM2vG .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwtxftM2vG .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwtxftM2vG .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwtxftM2vG .list {
  color: #08323C;
}
.cid-uwtxftM2vG label {
  color: #08323C;
}
.cid-uwtxftM2vG H3 {
  color: #000000;
}
.cid-uwtxftM2vG P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwtxAHdFFg {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtxAHdFFg H1 {
  text-align: center;
}
.cid-uDmN3H7MDu {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmN3H7MDu .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmN3H7MDu .video-block {
    width: 100% !important;
  }
}
.cid-uwtxAHOrRB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtxAIfPXZ {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwtxAIfPXZ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtxAIfPXZ .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtxAIfPXZ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtxAIfPXZ .box {
  left: 20%;
}
.cid-uwtxAIfPXZ .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwtxAIfPXZ .mbr-section-text,
.cid-uwtxAIfPXZ .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwtxAIfPXZ .text-box {
    display: none;
  }
  .cid-uwtxAIfPXZ .mbr-section-title,
  .cid-uwtxAIfPXZ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtxAIfPXZ .box {
    display: none;
  }
  .cid-uwtxAIfPXZ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtxAIfPXZ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtxAIfPXZ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtxAIfPXZ .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtxAIfPXZ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtxAIfPXZ .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtxAIM7C5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtxAIM7C5 H1 {
  text-align: center;
}
.cid-uwtxAJdo2k {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtxAJEFtE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtxAJEFtE h2 {
  text-align: left;
}
.cid-uwtxAJEFtE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtxAJEFtE p {
  color: #767676;
  text-align: left;
}
.cid-uwtxAJEFtE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtxAJEFtE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtxAJEFtE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtxAJEFtE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtxAJEFtE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtxAJEFtE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtxAJEFtE .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtxAJEFtE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtxAJEFtE .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtxAJEFtE H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwtxAJEFtE P {
  color: #ffffff;
  text-align: left;
}
.cid-uwtxAJEFtE H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxlLFW4DdX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxlLFW4DdX H1 {
  color: #000000;
}
.cid-uxlLGLrNLU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxlLGLrNLU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxlLGLrNLU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxlLGLrNLU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxlLGLrNLU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxlLGLrNLU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxlLGLrNLU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxlLGLrNLU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxlLGLrNLU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxlLGLrNLU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxlLGLrNLU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxlLGLrNLU .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-uxlLGLrNLU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxlLGLrNLU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxlLGLrNLU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxlLGLrNLU .mbr-text,
.cid-uxlLGLrNLU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtxALqVJ0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtxALXvvk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwtxALXvvk H1 {
  color: #000000;
}
.cid-uxkO2s9LTI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkO2s9LTI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkO2s9LTI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkO2s9LTI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkO2s9LTI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkO2s9LTI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkO2s9LTI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkO2s9LTI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkO2s9LTI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkO2s9LTI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkO2s9LTI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkO2s9LTI .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-uxkO2s9LTI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkO2s9LTI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkO2s9LTI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkO2s9LTI .mbr-text,
.cid-uxkO2s9LTI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkO3ucqwe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkO3ucqwe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkO3ucqwe .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkO3ucqwe .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkO3ucqwe .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkO3ucqwe .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkO3ucqwe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkO3ucqwe .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkO3ucqwe .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkO3ucqwe .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkO3ucqwe .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkO3ucqwe .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-uxkO3ucqwe .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkO3ucqwe .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkO3ucqwe .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkO3ucqwe .mbr-text,
.cid-uxkO3ucqwe .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtxANMGwI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtxANMGwI H1 {
  color: #000000;
}
.cid-uwtxAOgK6z {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwtxAOgK6z h2 {
  text-align: left;
}
.cid-uwtxAOgK6z h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtxAOgK6z p {
  color: #767676;
  text-align: left;
}
.cid-uwtxAOgK6z .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtxAOgK6z .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtxAOgK6z .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtxAOgK6z .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtxAOgK6z .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtxAOgK6z .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtxAOgK6z .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwtxAOgK6z .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwtxAOgK6z .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwtxAOgK6z .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwtxAOgK6z .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtxAOSFez {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtxAOSFez H1 {
  color: #000000;
}
.cid-uwtxAPokIx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwtxAPokIx .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtxAPokIx .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtxAPokIx .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtxAPokIx .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwtxAPokIx .box {
  right: 20%;
}
.cid-uwtxAPokIx .text-box {
  right: 0;
}
.cid-uwtxAPokIx .mbr-section-title,
.cid-uwtxAPokIx .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwtxAPokIx .text-box {
    display: none;
  }
  .cid-uwtxAPokIx .mbr-section-title,
  .cid-uwtxAPokIx .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtxAPokIx .box {
    display: none;
  }
  .cid-uwtxAPokIx .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtxAPokIx .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtxAPokIx .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtxAPokIx .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtxAPokIx .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtxAPokIx .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtxAQ3cnb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtxAQz2BU {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwtxAQz2BU h2 {
  text-align: left;
}
.cid-uwtxAQz2BU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtxAQz2BU p {
  color: #767676;
  text-align: left;
}
.cid-uwtxAQz2BU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtxAQz2BU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtxAQz2BU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtxAQz2BU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtxAQz2BU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtxAQz2BU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtxAQz2BU .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtxAQz2BU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtxAQz2BU .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtxAQz2BU .mbr-text {
  color: #232323;
}
.cid-uwtxARabzs {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwtxARabzs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtxARabzs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwtxARabzs .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwtxARabzs .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwtxARabzs .container {
    padding: 0 26px;
  }
}
.cid-uwtxARabzs .row {
  justify-content: center;
}
.cid-uwtxARabzs .item {
  margin-bottom: 32px;
}
.cid-uwtxARabzs .item a {
  display: block;
}
.cid-uwtxARabzs .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwtxARabzs .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwtxARabzs .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwtxARabzs .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-uwtxARabzs .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwtxARabzs .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwtxARabzs .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-uwtxARabzs .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwtxARabzs .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwtxARabzs .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwtxARabzs .item-title {
  color: #ffffff;
}
.cid-uwtxARabzs .mbr-date {
  color: #cacaca;
}
.cid-uwtxARabzs .mbr-desc {
  color: #cacaca;
}
.cid-uwtxARHSFe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwtxARHSFe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtxARHSFe .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-uwtxARHSFe .container {
    padding: 0 16px;
  }
}
.cid-uwtxARHSFe .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwtxARHSFe .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtxARHSFe .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwtxARHSFe .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtxARHSFe .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwtxARHSFe .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwtxARHSFe .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwtxARHSFe .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwtxARHSFe .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwtxARHSFe .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-uwtxARHSFe .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwtxARHSFe .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwtxARHSFe .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwtxARHSFe .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwtxARHSFe .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwtxARHSFe .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwtxARHSFe .dragArea.row .form-group .form-control:hover,
.cid-uwtxARHSFe .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwtxARHSFe .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwtxARHSFe .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwtxARHSFe .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwtxARHSFe .mbr-title {
  color: #ffffff;
}
.cid-uwtxARHSFe .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwtxARHSFe .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwtxARHSFe .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwtxARHSFe .list {
  color: #08323C;
}
.cid-uwtxARHSFe label {
  color: #08323C;
}
.cid-uwtxARHSFe H3 {
  color: #000000;
}
.cid-uwtxARHSFe P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwtxTRUnts {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtxTRUnts H1 {
  text-align: center;
}
.cid-uDmN8mnQXk {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmN8mnQXk .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmN8mnQXk .video-block {
    width: 100% !important;
  }
}
.cid-uwtxTStCUZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtxTSX0l2 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwtxTSX0l2 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtxTSX0l2 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtxTSX0l2 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtxTSX0l2 .box {
  left: 20%;
}
.cid-uwtxTSX0l2 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwtxTSX0l2 .mbr-section-text,
.cid-uwtxTSX0l2 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwtxTSX0l2 .text-box {
    display: none;
  }
  .cid-uwtxTSX0l2 .mbr-section-title,
  .cid-uwtxTSX0l2 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtxTSX0l2 .box {
    display: none;
  }
  .cid-uwtxTSX0l2 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtxTSX0l2 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtxTSX0l2 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtxTSX0l2 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtxTSX0l2 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtxTSX0l2 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtxTTqKZW {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtxTTqKZW H1 {
  text-align: center;
}
.cid-uwtxTU2Kk3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtxTUvRMB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwtxTUvRMB h2 {
  text-align: left;
}
.cid-uwtxTUvRMB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtxTUvRMB p {
  color: #767676;
  text-align: left;
}
.cid-uwtxTUvRMB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtxTUvRMB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtxTUvRMB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtxTUvRMB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtxTUvRMB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtxTUvRMB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtxTUvRMB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtxTUvRMB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtxTUvRMB .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtxTUvRMB H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwtxTUvRMB P {
  color: #ffffff;
  text-align: left;
}
.cid-uwtxTUvRMB H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxlLKulrK2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxlLKulrK2 H1 {
  color: #000000;
}
.cid-uxlLLlPVpU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxlLLlPVpU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxlLLlPVpU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxlLLlPVpU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxlLLlPVpU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxlLLlPVpU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxlLLlPVpU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxlLLlPVpU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxlLLlPVpU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxlLLlPVpU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxlLLlPVpU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxlLLlPVpU .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-uxlLLlPVpU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxlLLlPVpU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxlLLlPVpU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxlLLlPVpU .mbr-text,
.cid-uxlLLlPVpU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtxTWmCAC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtxTWTFWq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwtxTWTFWq H1 {
  color: #000000;
}
.cid-uxkOc62iw1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkOc62iw1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkOc62iw1 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkOc62iw1 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkOc62iw1 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkOc62iw1 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkOc62iw1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkOc62iw1 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkOc62iw1 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkOc62iw1 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkOc62iw1 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkOc62iw1 .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-uxkOc62iw1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkOc62iw1 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkOc62iw1 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkOc62iw1 .mbr-text,
.cid-uxkOc62iw1 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkOcWEEAq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkOcWEEAq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkOcWEEAq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkOcWEEAq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkOcWEEAq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkOcWEEAq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkOcWEEAq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkOcWEEAq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkOcWEEAq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkOcWEEAq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkOcWEEAq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkOcWEEAq .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-uxkOcWEEAq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkOcWEEAq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkOcWEEAq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkOcWEEAq .mbr-text,
.cid-uxkOcWEEAq .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwtxTYX93h {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtxTYX93h H1 {
  color: #000000;
}
.cid-uwtxTZv4X2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwtxTZv4X2 h2 {
  text-align: left;
}
.cid-uwtxTZv4X2 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtxTZv4X2 p {
  color: #767676;
  text-align: left;
}
.cid-uwtxTZv4X2 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtxTZv4X2 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtxTZv4X2 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtxTZv4X2 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtxTZv4X2 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtxTZv4X2 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtxTZv4X2 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwtxTZv4X2 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwtxTZv4X2 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwtxTZv4X2 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwtxTZv4X2 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtxU0986w {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwtxU0986w H1 {
  color: #000000;
}
.cid-uwtxU0F6V9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwtxU0F6V9 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwtxU0F6V9 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwtxU0F6V9 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwtxU0F6V9 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwtxU0F6V9 .box {
  right: 20%;
}
.cid-uwtxU0F6V9 .text-box {
  right: 0;
}
.cid-uwtxU0F6V9 .mbr-section-title,
.cid-uwtxU0F6V9 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwtxU0F6V9 .text-box {
    display: none;
  }
  .cid-uwtxU0F6V9 .mbr-section-title,
  .cid-uwtxU0F6V9 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwtxU0F6V9 .box {
    display: none;
  }
  .cid-uwtxU0F6V9 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwtxU0F6V9 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwtxU0F6V9 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwtxU0F6V9 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwtxU0F6V9 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwtxU0F6V9 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwtxU1i2tr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwtxU1PmGE {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwtxU1PmGE h2 {
  text-align: left;
}
.cid-uwtxU1PmGE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwtxU1PmGE p {
  color: #767676;
  text-align: left;
}
.cid-uwtxU1PmGE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwtxU1PmGE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwtxU1PmGE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwtxU1PmGE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwtxU1PmGE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwtxU1PmGE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwtxU1PmGE .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwtxU1PmGE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwtxU1PmGE .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwtxU1PmGE .mbr-text {
  color: #232323;
}
.cid-uwtxU2t0Gs {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwtxU2t0Gs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtxU2t0Gs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwtxU2t0Gs .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwtxU2t0Gs .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwtxU2t0Gs .container {
    padding: 0 26px;
  }
}
.cid-uwtxU2t0Gs .row {
  justify-content: center;
}
.cid-uwtxU2t0Gs .item {
  margin-bottom: 32px;
}
.cid-uwtxU2t0Gs .item a {
  display: block;
}
.cid-uwtxU2t0Gs .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwtxU2t0Gs .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwtxU2t0Gs .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwtxU2t0Gs .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-uwtxU2t0Gs .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwtxU2t0Gs .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwtxU2t0Gs .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-uwtxU2t0Gs .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwtxU2t0Gs .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwtxU2t0Gs .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwtxU2t0Gs .item-title {
  color: #ffffff;
}
.cid-uwtxU2t0Gs .mbr-date {
  color: #cacaca;
}
.cid-uwtxU2t0Gs .mbr-desc {
  color: #cacaca;
}
.cid-uwtxU32bge {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwtxU32bge .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwtxU32bge .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-uwtxU32bge .container {
    padding: 0 16px;
  }
}
.cid-uwtxU32bge .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwtxU32bge .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtxU32bge .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwtxU32bge .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwtxU32bge .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwtxU32bge .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwtxU32bge .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwtxU32bge .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwtxU32bge .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwtxU32bge .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-uwtxU32bge .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwtxU32bge .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwtxU32bge .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwtxU32bge .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwtxU32bge .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwtxU32bge .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwtxU32bge .dragArea.row .form-group .form-control:hover,
.cid-uwtxU32bge .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwtxU32bge .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwtxU32bge .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwtxU32bge .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwtxU32bge .mbr-title {
  color: #ffffff;
}
.cid-uwtxU32bge .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwtxU32bge .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwtxU32bge .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwtxU32bge .list {
  color: #08323C;
}
.cid-uwtxU32bge label {
  color: #08323C;
}
.cid-uwtxU32bge H3 {
  color: #000000;
}
.cid-uwtxU32bge P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwEKt3Ofe6 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwEKt3Ofe6 H1 {
  text-align: center;
}
.cid-uDmMdMhf1g {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmMdMhf1g .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmMdMhf1g .video-block {
    width: 100% !important;
  }
}
.cid-uwEKt43Nkm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwEKt4eVQU {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwEKt4eVQU .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwEKt4eVQU .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwEKt4eVQU .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwEKt4eVQU .box {
  left: 20%;
}
.cid-uwEKt4eVQU .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwEKt4eVQU .mbr-section-text,
.cid-uwEKt4eVQU .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwEKt4eVQU .text-box {
    display: none;
  }
  .cid-uwEKt4eVQU .mbr-section-title,
  .cid-uwEKt4eVQU .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwEKt4eVQU .box {
    display: none;
  }
  .cid-uwEKt4eVQU .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwEKt4eVQU .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwEKt4eVQU .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwEKt4eVQU .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwEKt4eVQU .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwEKt4eVQU .mbr-section-text DIV {
  text-align: center;
}
.cid-uwEKt4s2NG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwEKt4s2NG H1 {
  text-align: center;
}
.cid-uwEKt4Bvzh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwEKt4Kfgu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwEKt4Kfgu h2 {
  text-align: left;
}
.cid-uwEKt4Kfgu h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwEKt4Kfgu p {
  color: #767676;
  text-align: left;
}
.cid-uwEKt4Kfgu .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwEKt4Kfgu .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwEKt4Kfgu .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwEKt4Kfgu .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwEKt4Kfgu .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwEKt4Kfgu .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwEKt4Kfgu .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwEKt4Kfgu .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwEKt4Kfgu .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwEKt4Kfgu H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwEKt4Kfgu P {
  color: #ffffff;
  text-align: left;
}
.cid-uwEKt4Kfgu H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkIbtyrN8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkIbtyrN8 H1 {
  color: #000000;
}
.cid-uxkIcso8ma {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkIcso8ma .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkIcso8ma .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkIcso8ma .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkIcso8ma .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkIcso8ma .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkIcso8ma .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkIcso8ma .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkIcso8ma .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkIcso8ma .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkIcso8ma .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkIcso8ma .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-uxkIcso8ma .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkIcso8ma .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkIcso8ma .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkIcso8ma .mbr-text,
.cid-uxkIcso8ma .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwEKt5z9oy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwEKt5z9oy H1 {
  color: #000000;
}
.cid-uxkIdteJf2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkIdteJf2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkIdteJf2 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkIdteJf2 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkIdteJf2 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkIdteJf2 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkIdteJf2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkIdteJf2 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkIdteJf2 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkIdteJf2 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkIdteJf2 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkIdteJf2 .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-uxkIdteJf2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkIdteJf2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkIdteJf2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkIdteJf2 .mbr-text,
.cid-uxkIdteJf2 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkIef7Kib {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkIef7Kib .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkIef7Kib .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkIef7Kib .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkIef7Kib .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkIef7Kib .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkIef7Kib .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkIef7Kib .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkIef7Kib .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkIef7Kib .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkIef7Kib .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkIef7Kib .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-uxkIef7Kib .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkIef7Kib .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkIef7Kib .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkIef7Kib .mbr-text,
.cid-uxkIef7Kib .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwEKt6DbPo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwEKt6DbPo H1 {
  color: #000000;
}
.cid-uwEKt6RQNl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwEKt6RQNl h2 {
  text-align: left;
}
.cid-uwEKt6RQNl h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwEKt6RQNl p {
  color: #767676;
  text-align: left;
}
.cid-uwEKt6RQNl .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwEKt6RQNl .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwEKt6RQNl .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwEKt6RQNl .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwEKt6RQNl .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwEKt6RQNl .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwEKt6RQNl .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwEKt6RQNl .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwEKt6RQNl .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwEKt6RQNl .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwEKt6RQNl .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwEKt77ipr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwEKt77ipr H1 {
  color: #000000;
}
.cid-uwEKt7if61 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwEKt7if61 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwEKt7if61 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwEKt7if61 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwEKt7if61 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwEKt7if61 .box {
  right: 20%;
}
.cid-uwEKt7if61 .text-box {
  right: 0;
}
.cid-uwEKt7if61 .mbr-section-title,
.cid-uwEKt7if61 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwEKt7if61 .text-box {
    display: none;
  }
  .cid-uwEKt7if61 .mbr-section-title,
  .cid-uwEKt7if61 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwEKt7if61 .box {
    display: none;
  }
  .cid-uwEKt7if61 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwEKt7if61 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwEKt7if61 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwEKt7if61 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwEKt7if61 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwEKt7if61 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwEKt7w31J {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwEKt7IkXx {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwEKt7IkXx h2 {
  text-align: left;
}
.cid-uwEKt7IkXx h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwEKt7IkXx p {
  color: #767676;
  text-align: left;
}
.cid-uwEKt7IkXx .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwEKt7IkXx .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwEKt7IkXx .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwEKt7IkXx .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwEKt7IkXx .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwEKt7IkXx .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwEKt7IkXx .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwEKt7IkXx .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwEKt7IkXx .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwEKt7IkXx .mbr-text {
  color: #232323;
}
.cid-uwEKt7Wjc4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwEKt7Wjc4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwEKt7Wjc4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwEKt7Wjc4 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwEKt7Wjc4 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwEKt7Wjc4 .container {
    padding: 0 26px;
  }
}
.cid-uwEKt7Wjc4 .row {
  justify-content: center;
}
.cid-uwEKt7Wjc4 .item {
  margin-bottom: 32px;
}
.cid-uwEKt7Wjc4 .item a {
  display: block;
}
.cid-uwEKt7Wjc4 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwEKt7Wjc4 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwEKt7Wjc4 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwEKt7Wjc4 .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-uwEKt7Wjc4 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwEKt7Wjc4 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwEKt7Wjc4 .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-uwEKt7Wjc4 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwEKt7Wjc4 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwEKt7Wjc4 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwEKt7Wjc4 .item-title {
  color: #ffffff;
}
.cid-uwEKt7Wjc4 .mbr-date {
  color: #cacaca;
}
.cid-uwEKt7Wjc4 .mbr-desc {
  color: #cacaca;
}
.cid-uwEKt8kndX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwEKt8kndX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwEKt8kndX .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-uwEKt8kndX .container {
    padding: 0 16px;
  }
}
.cid-uwEKt8kndX .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwEKt8kndX .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwEKt8kndX .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwEKt8kndX .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwEKt8kndX .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwEKt8kndX .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwEKt8kndX .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwEKt8kndX .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwEKt8kndX .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwEKt8kndX .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-uwEKt8kndX .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwEKt8kndX .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwEKt8kndX .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwEKt8kndX .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwEKt8kndX .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwEKt8kndX .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwEKt8kndX .dragArea.row .form-group .form-control:hover,
.cid-uwEKt8kndX .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwEKt8kndX .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwEKt8kndX .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwEKt8kndX .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwEKt8kndX .mbr-title {
  color: #ffffff;
}
.cid-uwEKt8kndX .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwEKt8kndX .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwEKt8kndX .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwEKt8kndX .list {
  color: #08323C;
}
.cid-uwEKt8kndX label {
  color: #08323C;
}
.cid-uwEKt8kndX H3 {
  color: #000000;
}
.cid-uwEKt8kndX P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwENxkmSG4 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwENxkmSG4 H1 {
  text-align: center;
}
.cid-uDmMlAaufY {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmMlAaufY .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmMlAaufY .video-block {
    width: 100% !important;
  }
}
.cid-uwENxkD8wv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwENxkQPhr {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwENxkQPhr .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwENxkQPhr .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwENxkQPhr .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwENxkQPhr .box {
  left: 20%;
}
.cid-uwENxkQPhr .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwENxkQPhr .mbr-section-text,
.cid-uwENxkQPhr .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwENxkQPhr .text-box {
    display: none;
  }
  .cid-uwENxkQPhr .mbr-section-title,
  .cid-uwENxkQPhr .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwENxkQPhr .box {
    display: none;
  }
  .cid-uwENxkQPhr .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwENxkQPhr .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwENxkQPhr .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwENxkQPhr .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwENxkQPhr .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwENxkQPhr .mbr-section-text DIV {
  text-align: center;
}
.cid-uwENxl4g9P {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwENxl4g9P H1 {
  text-align: center;
}
.cid-uwENxle8wR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwENxloJTv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwENxloJTv h2 {
  text-align: left;
}
.cid-uwENxloJTv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwENxloJTv p {
  color: #767676;
  text-align: left;
}
.cid-uwENxloJTv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwENxloJTv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwENxloJTv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwENxloJTv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwENxloJTv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwENxloJTv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwENxloJTv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwENxloJTv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwENxloJTv .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwENxloJTv H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwENxloJTv P {
  color: #ffffff;
  text-align: left;
}
.cid-uwENxloJTv H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkJ3KFqRO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkJ3KFqRO H1 {
  color: #000000;
}
.cid-uxkJ4QaI2f {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkJ4QaI2f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkJ4QaI2f .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkJ4QaI2f .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkJ4QaI2f .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkJ4QaI2f .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkJ4QaI2f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkJ4QaI2f .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkJ4QaI2f .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkJ4QaI2f .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkJ4QaI2f .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkJ4QaI2f .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-uxkJ4QaI2f .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkJ4QaI2f .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkJ4QaI2f .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkJ4QaI2f .mbr-text,
.cid-uxkJ4QaI2f .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwENxm9vp3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwENxm9vp3 H1 {
  color: #000000;
}
.cid-uxkJ5BeOoP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkJ5BeOoP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkJ5BeOoP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkJ5BeOoP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkJ5BeOoP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkJ5BeOoP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkJ5BeOoP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkJ5BeOoP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkJ5BeOoP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkJ5BeOoP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkJ5BeOoP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkJ5BeOoP .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-uxkJ5BeOoP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkJ5BeOoP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkJ5BeOoP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkJ5BeOoP .mbr-text,
.cid-uxkJ5BeOoP .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkJ6mbd8Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkJ6mbd8Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkJ6mbd8Q .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkJ6mbd8Q .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkJ6mbd8Q .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkJ6mbd8Q .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkJ6mbd8Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkJ6mbd8Q .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkJ6mbd8Q .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkJ6mbd8Q .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkJ6mbd8Q .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkJ6mbd8Q .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-uxkJ6mbd8Q .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkJ6mbd8Q .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkJ6mbd8Q .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkJ6mbd8Q .mbr-text,
.cid-uxkJ6mbd8Q .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwENxn5tkJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwENxn5tkJ H1 {
  color: #000000;
}
.cid-uwENxnjTmS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwENxnjTmS h2 {
  text-align: left;
}
.cid-uwENxnjTmS h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwENxnjTmS p {
  color: #767676;
  text-align: left;
}
.cid-uwENxnjTmS .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwENxnjTmS .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwENxnjTmS .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwENxnjTmS .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwENxnjTmS .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwENxnjTmS .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwENxnjTmS .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwENxnjTmS .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwENxnjTmS .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwENxnjTmS .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwENxnjTmS .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwENxnCKHT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwENxnCKHT H1 {
  color: #000000;
}
.cid-uwENxnQEuM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwENxnQEuM .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwENxnQEuM .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwENxnQEuM .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwENxnQEuM .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwENxnQEuM .box {
  right: 20%;
}
.cid-uwENxnQEuM .text-box {
  right: 0;
}
.cid-uwENxnQEuM .mbr-section-title,
.cid-uwENxnQEuM .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwENxnQEuM .text-box {
    display: none;
  }
  .cid-uwENxnQEuM .mbr-section-title,
  .cid-uwENxnQEuM .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwENxnQEuM .box {
    display: none;
  }
  .cid-uwENxnQEuM .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwENxnQEuM .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwENxnQEuM .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwENxnQEuM .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwENxnQEuM .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwENxnQEuM .mbr-section-text DIV {
  text-align: center;
}
.cid-uwENxo5ozu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwENxoiCCv {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwENxoiCCv h2 {
  text-align: left;
}
.cid-uwENxoiCCv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwENxoiCCv p {
  color: #767676;
  text-align: left;
}
.cid-uwENxoiCCv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwENxoiCCv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwENxoiCCv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwENxoiCCv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwENxoiCCv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwENxoiCCv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwENxoiCCv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwENxoiCCv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwENxoiCCv .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwENxoiCCv .mbr-text {
  color: #232323;
}
.cid-uwENxoD4FQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwENxoD4FQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwENxoD4FQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwENxoD4FQ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwENxoD4FQ .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwENxoD4FQ .container {
    padding: 0 26px;
  }
}
.cid-uwENxoD4FQ .row {
  justify-content: center;
}
.cid-uwENxoD4FQ .item {
  margin-bottom: 32px;
}
.cid-uwENxoD4FQ .item a {
  display: block;
}
.cid-uwENxoD4FQ .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwENxoD4FQ .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwENxoD4FQ .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwENxoD4FQ .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-uwENxoD4FQ .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwENxoD4FQ .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwENxoD4FQ .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-uwENxoD4FQ .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwENxoD4FQ .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwENxoD4FQ .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwENxoD4FQ .item-title {
  color: #ffffff;
}
.cid-uwENxoD4FQ .mbr-date {
  color: #cacaca;
}
.cid-uwENxoD4FQ .mbr-desc {
  color: #cacaca;
}
.cid-uwENxoUPq0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwENxoUPq0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwENxoUPq0 .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-uwENxoUPq0 .container {
    padding: 0 16px;
  }
}
.cid-uwENxoUPq0 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwENxoUPq0 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwENxoUPq0 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwENxoUPq0 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwENxoUPq0 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwENxoUPq0 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwENxoUPq0 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwENxoUPq0 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwENxoUPq0 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwENxoUPq0 .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-uwENxoUPq0 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwENxoUPq0 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwENxoUPq0 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwENxoUPq0 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwENxoUPq0 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwENxoUPq0 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwENxoUPq0 .dragArea.row .form-group .form-control:hover,
.cid-uwENxoUPq0 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwENxoUPq0 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwENxoUPq0 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwENxoUPq0 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwENxoUPq0 .mbr-title {
  color: #ffffff;
}
.cid-uwENxoUPq0 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwENxoUPq0 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwENxoUPq0 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwENxoUPq0 .list {
  color: #08323C;
}
.cid-uwENxoUPq0 label {
  color: #08323C;
}
.cid-uwENxoUPq0 H3 {
  color: #000000;
}
.cid-uwENxoUPq0 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwEZm4EXNu {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwEZm4EXNu H1 {
  text-align: center;
}
.cid-uDmSLSNQou {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmSLSNQou .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmSLSNQou .video-block {
    width: 100% !important;
  }
}
.cid-uwEZm52mEr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwEZm5iKe5 {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwEZm5iKe5 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwEZm5iKe5 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwEZm5iKe5 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwEZm5iKe5 .box {
  left: 20%;
}
.cid-uwEZm5iKe5 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwEZm5iKe5 .mbr-section-text,
.cid-uwEZm5iKe5 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwEZm5iKe5 .text-box {
    display: none;
  }
  .cid-uwEZm5iKe5 .mbr-section-title,
  .cid-uwEZm5iKe5 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwEZm5iKe5 .box {
    display: none;
  }
  .cid-uwEZm5iKe5 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwEZm5iKe5 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwEZm5iKe5 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwEZm5iKe5 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwEZm5iKe5 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwEZm5iKe5 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwEZm5yQHh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwEZm5yQHh H1 {
  text-align: center;
}
.cid-uwEZm5Khc0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwEZm5WyAV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwEZm5WyAV h2 {
  text-align: left;
}
.cid-uwEZm5WyAV h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwEZm5WyAV p {
  color: #767676;
  text-align: left;
}
.cid-uwEZm5WyAV .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwEZm5WyAV .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwEZm5WyAV .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwEZm5WyAV .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwEZm5WyAV .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwEZm5WyAV .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwEZm5WyAV .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwEZm5WyAV .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwEZm5WyAV .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwEZm5WyAV H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwEZm5WyAV P {
  color: #ffffff;
  text-align: left;
}
.cid-uwEZm5WyAV H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkYs8N1YG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkYs8N1YG H1 {
  color: #000000;
}
.cid-uxkYt6hGOm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkYt6hGOm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkYt6hGOm .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkYt6hGOm .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkYt6hGOm .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkYt6hGOm .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkYt6hGOm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkYt6hGOm .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkYt6hGOm .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkYt6hGOm .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkYt6hGOm .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkYt6hGOm .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-uxkYt6hGOm .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkYt6hGOm .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkYt6hGOm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkYt6hGOm .mbr-text,
.cid-uxkYt6hGOm .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwEZm6RudH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwEZm77TYw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwEZm77TYw H1 {
  color: #000000;
}
.cid-uxkYu4tRLm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkYu4tRLm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkYu4tRLm .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkYu4tRLm .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkYu4tRLm .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkYu4tRLm .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkYu4tRLm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkYu4tRLm .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkYu4tRLm .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkYu4tRLm .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkYu4tRLm .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkYu4tRLm .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-uxkYu4tRLm .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkYu4tRLm .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkYu4tRLm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkYu4tRLm .mbr-text,
.cid-uxkYu4tRLm .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkYuSmuCl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkYuSmuCl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkYuSmuCl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkYuSmuCl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkYuSmuCl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkYuSmuCl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkYuSmuCl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkYuSmuCl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkYuSmuCl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkYuSmuCl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkYuSmuCl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkYuSmuCl .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-uxkYuSmuCl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkYuSmuCl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkYuSmuCl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkYuSmuCl .mbr-text,
.cid-uxkYuSmuCl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwEZm8edi9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwEZm8edi9 H1 {
  color: #000000;
}
.cid-uwEZm8t1Zj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwEZm8t1Zj h2 {
  text-align: left;
}
.cid-uwEZm8t1Zj h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwEZm8t1Zj p {
  color: #767676;
  text-align: left;
}
.cid-uwEZm8t1Zj .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwEZm8t1Zj .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwEZm8t1Zj .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwEZm8t1Zj .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwEZm8t1Zj .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwEZm8t1Zj .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwEZm8t1Zj .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwEZm8t1Zj .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwEZm8t1Zj .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwEZm8t1Zj .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwEZm8t1Zj .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwEZm8PfzK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwEZm8PfzK H1 {
  color: #000000;
}
.cid-uwEZm94MQ1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwEZm94MQ1 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwEZm94MQ1 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwEZm94MQ1 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwEZm94MQ1 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwEZm94MQ1 .box {
  right: 20%;
}
.cid-uwEZm94MQ1 .text-box {
  right: 0;
}
.cid-uwEZm94MQ1 .mbr-section-title,
.cid-uwEZm94MQ1 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwEZm94MQ1 .text-box {
    display: none;
  }
  .cid-uwEZm94MQ1 .mbr-section-title,
  .cid-uwEZm94MQ1 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwEZm94MQ1 .box {
    display: none;
  }
  .cid-uwEZm94MQ1 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwEZm94MQ1 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwEZm94MQ1 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwEZm94MQ1 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwEZm94MQ1 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwEZm94MQ1 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwEZm9oVhy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwEZm9GbCF {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwEZm9GbCF h2 {
  text-align: left;
}
.cid-uwEZm9GbCF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwEZm9GbCF p {
  color: #767676;
  text-align: left;
}
.cid-uwEZm9GbCF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwEZm9GbCF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwEZm9GbCF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwEZm9GbCF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwEZm9GbCF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwEZm9GbCF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwEZm9GbCF .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwEZm9GbCF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwEZm9GbCF .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwEZm9GbCF .mbr-text {
  color: #232323;
}
.cid-uwEZma15cK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwEZma15cK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwEZma15cK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwEZma15cK .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwEZma15cK .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwEZma15cK .container {
    padding: 0 26px;
  }
}
.cid-uwEZma15cK .row {
  justify-content: center;
}
.cid-uwEZma15cK .item {
  margin-bottom: 32px;
}
.cid-uwEZma15cK .item a {
  display: block;
}
.cid-uwEZma15cK .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwEZma15cK .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwEZma15cK .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwEZma15cK .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-uwEZma15cK .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwEZma15cK .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwEZma15cK .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-uwEZma15cK .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwEZma15cK .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwEZma15cK .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwEZma15cK .item-title {
  color: #ffffff;
}
.cid-uwEZma15cK .mbr-date {
  color: #cacaca;
}
.cid-uwEZma15cK .mbr-desc {
  color: #cacaca;
}
.cid-uwEZmajbFB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwEZmajbFB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwEZmajbFB .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-uwEZmajbFB .container {
    padding: 0 16px;
  }
}
.cid-uwEZmajbFB .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwEZmajbFB .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwEZmajbFB .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwEZmajbFB .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwEZmajbFB .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwEZmajbFB .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwEZmajbFB .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwEZmajbFB .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwEZmajbFB .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwEZmajbFB .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-uwEZmajbFB .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwEZmajbFB .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwEZmajbFB .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwEZmajbFB .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwEZmajbFB .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwEZmajbFB .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwEZmajbFB .dragArea.row .form-group .form-control:hover,
.cid-uwEZmajbFB .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwEZmajbFB .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwEZmajbFB .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwEZmajbFB .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwEZmajbFB .mbr-title {
  color: #ffffff;
}
.cid-uwEZmajbFB .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwEZmajbFB .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwEZmajbFB .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwEZmajbFB .list {
  color: #08323C;
}
.cid-uwEZmajbFB label {
  color: #08323C;
}
.cid-uwEZmajbFB H3 {
  color: #000000;
}
.cid-uwEZmajbFB P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwF6fvZH6I {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF6fvZH6I H1 {
  text-align: center;
}
.cid-uDmSOCfQVU {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmSOCfQVU .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmSOCfQVU .video-block {
    width: 100% !important;
  }
}
.cid-uwF6fwkfKR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF6fwClZw {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwF6fwClZw .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwF6fwClZw .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwF6fwClZw .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwF6fwClZw .box {
  left: 20%;
}
.cid-uwF6fwClZw .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwF6fwClZw .mbr-section-text,
.cid-uwF6fwClZw .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwF6fwClZw .text-box {
    display: none;
  }
  .cid-uwF6fwClZw .mbr-section-title,
  .cid-uwF6fwClZw .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwF6fwClZw .box {
    display: none;
  }
  .cid-uwF6fwClZw .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwF6fwClZw .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwF6fwClZw .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwF6fwClZw .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwF6fwClZw .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwF6fwClZw .mbr-section-text DIV {
  text-align: center;
}
.cid-uwF6fwS2Pg {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF6fwS2Pg H1 {
  text-align: center;
}
.cid-uwF6fx9Wls {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF6fxmwd4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF6fxmwd4 h2 {
  text-align: left;
}
.cid-uwF6fxmwd4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF6fxmwd4 p {
  color: #767676;
  text-align: left;
}
.cid-uwF6fxmwd4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF6fxmwd4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF6fxmwd4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF6fxmwd4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF6fxmwd4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF6fxmwd4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF6fxmwd4 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwF6fxmwd4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwF6fxmwd4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF6fxmwd4 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwF6fxmwd4 P {
  color: #ffffff;
  text-align: left;
}
.cid-uwF6fxmwd4 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkYBKxzLU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkYBKxzLU H1 {
  color: #000000;
}
.cid-uxkYCJjdrq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkYCJjdrq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkYCJjdrq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkYCJjdrq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkYCJjdrq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkYCJjdrq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkYCJjdrq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkYCJjdrq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkYCJjdrq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkYCJjdrq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkYCJjdrq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkYCJjdrq .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-uxkYCJjdrq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkYCJjdrq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkYCJjdrq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkYCJjdrq .mbr-text,
.cid-uxkYCJjdrq .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwF6fyxekH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF6fyNXa8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwF6fyNXa8 H1 {
  color: #000000;
}
.cid-uxkYDC4IX9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkYDC4IX9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkYDC4IX9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkYDC4IX9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkYDC4IX9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkYDC4IX9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkYDC4IX9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkYDC4IX9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkYDC4IX9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkYDC4IX9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkYDC4IX9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkYDC4IX9 .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-uxkYDC4IX9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkYDC4IX9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkYDC4IX9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkYDC4IX9 .mbr-text,
.cid-uxkYDC4IX9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkYEtmhNS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkYEtmhNS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkYEtmhNS .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkYEtmhNS .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkYEtmhNS .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkYEtmhNS .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkYEtmhNS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkYEtmhNS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkYEtmhNS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkYEtmhNS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkYEtmhNS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkYEtmhNS .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-uxkYEtmhNS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkYEtmhNS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkYEtmhNS .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkYEtmhNS .mbr-text,
.cid-uxkYEtmhNS .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwF6fA9Akp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwF6fA9Akp H1 {
  color: #000000;
}
.cid-uwF6fACsbk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwF6fACsbk h2 {
  text-align: left;
}
.cid-uwF6fACsbk h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF6fACsbk p {
  color: #767676;
  text-align: left;
}
.cid-uwF6fACsbk .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF6fACsbk .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF6fACsbk .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF6fACsbk .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF6fACsbk .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF6fACsbk .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF6fACsbk .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwF6fACsbk .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwF6fACsbk .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwF6fACsbk .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwF6fACsbk .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF6fAZJOj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwF6fAZJOj H1 {
  color: #000000;
}
.cid-uwF6fBjctf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwF6fBjctf .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwF6fBjctf .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwF6fBjctf .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwF6fBjctf .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwF6fBjctf .box {
  right: 20%;
}
.cid-uwF6fBjctf .text-box {
  right: 0;
}
.cid-uwF6fBjctf .mbr-section-title,
.cid-uwF6fBjctf .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwF6fBjctf .text-box {
    display: none;
  }
  .cid-uwF6fBjctf .mbr-section-title,
  .cid-uwF6fBjctf .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwF6fBjctf .box {
    display: none;
  }
  .cid-uwF6fBjctf .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwF6fBjctf .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwF6fBjctf .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwF6fBjctf .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwF6fBjctf .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwF6fBjctf .mbr-section-text DIV {
  text-align: center;
}
.cid-uwF6fBGWea {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF6fCvfW3 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwF6fCvfW3 h2 {
  text-align: left;
}
.cid-uwF6fCvfW3 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF6fCvfW3 p {
  color: #767676;
  text-align: left;
}
.cid-uwF6fCvfW3 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF6fCvfW3 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF6fCvfW3 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF6fCvfW3 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF6fCvfW3 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF6fCvfW3 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF6fCvfW3 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwF6fCvfW3 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwF6fCvfW3 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF6fCvfW3 .mbr-text {
  color: #232323;
}
.cid-uwF6fDspUA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwF6fDspUA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwF6fDspUA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwF6fDspUA .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwF6fDspUA .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwF6fDspUA .container {
    padding: 0 26px;
  }
}
.cid-uwF6fDspUA .row {
  justify-content: center;
}
.cid-uwF6fDspUA .item {
  margin-bottom: 32px;
}
.cid-uwF6fDspUA .item a {
  display: block;
}
.cid-uwF6fDspUA .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwF6fDspUA .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwF6fDspUA .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwF6fDspUA .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-uwF6fDspUA .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwF6fDspUA .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwF6fDspUA .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-uwF6fDspUA .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwF6fDspUA .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwF6fDspUA .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwF6fDspUA .item-title {
  color: #ffffff;
}
.cid-uwF6fDspUA .mbr-date {
  color: #cacaca;
}
.cid-uwF6fDspUA .mbr-desc {
  color: #cacaca;
}
.cid-uwF6fE18MA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwF6fE18MA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwF6fE18MA .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-uwF6fE18MA .container {
    padding: 0 16px;
  }
}
.cid-uwF6fE18MA .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwF6fE18MA .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwF6fE18MA .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwF6fE18MA .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwF6fE18MA .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwF6fE18MA .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwF6fE18MA .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwF6fE18MA .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwF6fE18MA .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwF6fE18MA .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-uwF6fE18MA .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwF6fE18MA .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwF6fE18MA .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwF6fE18MA .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwF6fE18MA .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwF6fE18MA .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwF6fE18MA .dragArea.row .form-group .form-control:hover,
.cid-uwF6fE18MA .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwF6fE18MA .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwF6fE18MA .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwF6fE18MA .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwF6fE18MA .mbr-title {
  color: #ffffff;
}
.cid-uwF6fE18MA .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwF6fE18MA .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwF6fE18MA .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwF6fE18MA .list {
  color: #08323C;
}
.cid-uwF6fE18MA label {
  color: #08323C;
}
.cid-uwF6fE18MA H3 {
  color: #000000;
}
.cid-uwF6fE18MA P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwF6EWmObr {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF6EWmObr H1 {
  text-align: center;
}
.cid-uDmSS1o06f {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmSS1o06f .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmSS1o06f .video-block {
    width: 100% !important;
  }
}
.cid-uwF6EWFi4w {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF6EWVb6C {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwF6EWVb6C .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwF6EWVb6C .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwF6EWVb6C .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwF6EWVb6C .box {
  left: 20%;
}
.cid-uwF6EWVb6C .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwF6EWVb6C .mbr-section-text,
.cid-uwF6EWVb6C .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwF6EWVb6C .text-box {
    display: none;
  }
  .cid-uwF6EWVb6C .mbr-section-title,
  .cid-uwF6EWVb6C .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwF6EWVb6C .box {
    display: none;
  }
  .cid-uwF6EWVb6C .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwF6EWVb6C .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwF6EWVb6C .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwF6EWVb6C .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwF6EWVb6C .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwF6EWVb6C .mbr-section-text DIV {
  text-align: center;
}
.cid-uwF6EX9qFr {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF6EX9qFr H1 {
  text-align: center;
}
.cid-uwF6EXnb51 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF6EXBAuq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF6EXBAuq h2 {
  text-align: left;
}
.cid-uwF6EXBAuq h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF6EXBAuq p {
  color: #767676;
  text-align: left;
}
.cid-uwF6EXBAuq .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF6EXBAuq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF6EXBAuq .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF6EXBAuq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF6EXBAuq .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF6EXBAuq .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF6EXBAuq .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwF6EXBAuq .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwF6EXBAuq .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF6EXBAuq H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwF6EXBAuq P {
  color: #ffffff;
  text-align: left;
}
.cid-uwF6EXBAuq H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkYMm3uoL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkYMm3uoL H1 {
  color: #000000;
}
.cid-uxkYNt6vUC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkYNt6vUC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkYNt6vUC .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkYNt6vUC .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkYNt6vUC .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkYNt6vUC .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkYNt6vUC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkYNt6vUC .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkYNt6vUC .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkYNt6vUC .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkYNt6vUC .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkYNt6vUC .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-uxkYNt6vUC .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkYNt6vUC .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkYNt6vUC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkYNt6vUC .mbr-text,
.cid-uxkYNt6vUC .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwF6EYySyQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF6EYR4Lb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwF6EYR4Lb H1 {
  color: #000000;
}
.cid-uxkYRNDLea {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkYRNDLea .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkYRNDLea .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkYRNDLea .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkYRNDLea .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkYRNDLea .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkYRNDLea .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkYRNDLea .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkYRNDLea .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkYRNDLea .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkYRNDLea .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkYRNDLea .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-uxkYRNDLea .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkYRNDLea .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkYRNDLea .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkYRNDLea .mbr-text,
.cid-uxkYRNDLea .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkYSDztGC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkYSDztGC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkYSDztGC .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkYSDztGC .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkYSDztGC .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkYSDztGC .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkYSDztGC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkYSDztGC .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkYSDztGC .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkYSDztGC .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkYSDztGC .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkYSDztGC .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-uxkYSDztGC .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkYSDztGC .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkYSDztGC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkYSDztGC .mbr-text,
.cid-uxkYSDztGC .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwF6F029Oq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwF6F029Oq H1 {
  color: #000000;
}
.cid-uwF6F0jhFU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwF6F0jhFU h2 {
  text-align: left;
}
.cid-uwF6F0jhFU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF6F0jhFU p {
  color: #767676;
  text-align: left;
}
.cid-uwF6F0jhFU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF6F0jhFU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF6F0jhFU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF6F0jhFU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF6F0jhFU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF6F0jhFU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF6F0jhFU .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwF6F0jhFU .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwF6F0jhFU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwF6F0jhFU .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwF6F0jhFU .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF6F0EmBk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwF6F0EmBk H1 {
  color: #000000;
}
.cid-uwF6F0VDZn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwF6F0VDZn .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwF6F0VDZn .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwF6F0VDZn .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwF6F0VDZn .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwF6F0VDZn .box {
  right: 20%;
}
.cid-uwF6F0VDZn .text-box {
  right: 0;
}
.cid-uwF6F0VDZn .mbr-section-title,
.cid-uwF6F0VDZn .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwF6F0VDZn .text-box {
    display: none;
  }
  .cid-uwF6F0VDZn .mbr-section-title,
  .cid-uwF6F0VDZn .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwF6F0VDZn .box {
    display: none;
  }
  .cid-uwF6F0VDZn .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwF6F0VDZn .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwF6F0VDZn .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwF6F0VDZn .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwF6F0VDZn .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwF6F0VDZn .mbr-section-text DIV {
  text-align: center;
}
.cid-uwF6F1dF1F {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF6F1u5uj {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwF6F1u5uj h2 {
  text-align: left;
}
.cid-uwF6F1u5uj h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF6F1u5uj p {
  color: #767676;
  text-align: left;
}
.cid-uwF6F1u5uj .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF6F1u5uj .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF6F1u5uj .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF6F1u5uj .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF6F1u5uj .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF6F1u5uj .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF6F1u5uj .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwF6F1u5uj .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwF6F1u5uj .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF6F1u5uj .mbr-text {
  color: #232323;
}
.cid-uwF6F1Oz8U {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwF6F1Oz8U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwF6F1Oz8U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwF6F1Oz8U .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwF6F1Oz8U .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwF6F1Oz8U .container {
    padding: 0 26px;
  }
}
.cid-uwF6F1Oz8U .row {
  justify-content: center;
}
.cid-uwF6F1Oz8U .item {
  margin-bottom: 32px;
}
.cid-uwF6F1Oz8U .item a {
  display: block;
}
.cid-uwF6F1Oz8U .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwF6F1Oz8U .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwF6F1Oz8U .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwF6F1Oz8U .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-uwF6F1Oz8U .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwF6F1Oz8U .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwF6F1Oz8U .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-uwF6F1Oz8U .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwF6F1Oz8U .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwF6F1Oz8U .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwF6F1Oz8U .item-title {
  color: #ffffff;
}
.cid-uwF6F1Oz8U .mbr-date {
  color: #cacaca;
}
.cid-uwF6F1Oz8U .mbr-desc {
  color: #cacaca;
}
.cid-uwF6F2awJG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwF6F2awJG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwF6F2awJG .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-uwF6F2awJG .container {
    padding: 0 16px;
  }
}
.cid-uwF6F2awJG .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwF6F2awJG .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwF6F2awJG .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwF6F2awJG .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwF6F2awJG .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwF6F2awJG .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwF6F2awJG .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwF6F2awJG .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwF6F2awJG .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwF6F2awJG .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-uwF6F2awJG .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwF6F2awJG .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwF6F2awJG .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwF6F2awJG .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwF6F2awJG .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwF6F2awJG .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwF6F2awJG .dragArea.row .form-group .form-control:hover,
.cid-uwF6F2awJG .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwF6F2awJG .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwF6F2awJG .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwF6F2awJG .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwF6F2awJG .mbr-title {
  color: #ffffff;
}
.cid-uwF6F2awJG .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwF6F2awJG .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwF6F2awJG .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwF6F2awJG .list {
  color: #08323C;
}
.cid-uwF6F2awJG label {
  color: #08323C;
}
.cid-uwF6F2awJG H3 {
  color: #000000;
}
.cid-uwF6F2awJG P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwF716quP7 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF716quP7 H1 {
  text-align: center;
}
.cid-uDmSUQ2Ot7 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmSUQ2Ot7 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmSUQ2Ot7 .video-block {
    width: 100% !important;
  }
}
.cid-uwF716LvWC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF7170QFY {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwF7170QFY .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwF7170QFY .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwF7170QFY .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwF7170QFY .box {
  left: 20%;
}
.cid-uwF7170QFY .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwF7170QFY .mbr-section-text,
.cid-uwF7170QFY .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwF7170QFY .text-box {
    display: none;
  }
  .cid-uwF7170QFY .mbr-section-title,
  .cid-uwF7170QFY .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwF7170QFY .box {
    display: none;
  }
  .cid-uwF7170QFY .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwF7170QFY .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwF7170QFY .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwF7170QFY .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwF7170QFY .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwF7170QFY .mbr-section-text DIV {
  text-align: center;
}
.cid-uwF717fRU1 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF717fRU1 H1 {
  text-align: center;
}
.cid-uwF717tRFl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF717GO2L {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF717GO2L h2 {
  text-align: left;
}
.cid-uwF717GO2L h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF717GO2L p {
  color: #767676;
  text-align: left;
}
.cid-uwF717GO2L .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF717GO2L .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF717GO2L .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF717GO2L .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF717GO2L .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF717GO2L .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF717GO2L .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwF717GO2L .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwF717GO2L .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF717GO2L H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwF717GO2L P {
  color: #ffffff;
  text-align: left;
}
.cid-uwF717GO2L H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkYYsz6hM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkYYsz6hM H1 {
  color: #000000;
}
.cid-uxkYZsrpVx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkYZsrpVx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkYZsrpVx .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkYZsrpVx .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkYZsrpVx .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkYZsrpVx .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkYZsrpVx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkYZsrpVx .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkYZsrpVx .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkYZsrpVx .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkYZsrpVx .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkYZsrpVx .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-uxkYZsrpVx .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkYZsrpVx .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkYZsrpVx .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkYZsrpVx .mbr-text,
.cid-uxkYZsrpVx .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwF718CQ5k {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF718T6di {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwF718T6di H1 {
  color: #000000;
}
.cid-uxkZ0i4Wme {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkZ0i4Wme .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkZ0i4Wme .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkZ0i4Wme .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkZ0i4Wme .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkZ0i4Wme .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkZ0i4Wme .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkZ0i4Wme .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkZ0i4Wme .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkZ0i4Wme .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkZ0i4Wme .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkZ0i4Wme .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-uxkZ0i4Wme .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkZ0i4Wme .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkZ0i4Wme .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkZ0i4Wme .mbr-text,
.cid-uxkZ0i4Wme .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkZ17vvpW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkZ17vvpW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkZ17vvpW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkZ17vvpW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkZ17vvpW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkZ17vvpW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkZ17vvpW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkZ17vvpW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkZ17vvpW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkZ17vvpW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkZ17vvpW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkZ17vvpW .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-uxkZ17vvpW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkZ17vvpW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkZ17vvpW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkZ17vvpW .mbr-text,
.cid-uxkZ17vvpW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwF71a0bzb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwF71a0bzb H1 {
  color: #000000;
}
.cid-uwF71ag2NA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwF71ag2NA h2 {
  text-align: left;
}
.cid-uwF71ag2NA h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF71ag2NA p {
  color: #767676;
  text-align: left;
}
.cid-uwF71ag2NA .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF71ag2NA .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF71ag2NA .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF71ag2NA .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF71ag2NA .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF71ag2NA .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF71ag2NA .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwF71ag2NA .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwF71ag2NA .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwF71ag2NA .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwF71ag2NA .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF71aA9jT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwF71aA9jT H1 {
  color: #000000;
}
.cid-uwF71aR0T8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwF71aR0T8 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwF71aR0T8 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwF71aR0T8 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwF71aR0T8 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwF71aR0T8 .box {
  right: 20%;
}
.cid-uwF71aR0T8 .text-box {
  right: 0;
}
.cid-uwF71aR0T8 .mbr-section-title,
.cid-uwF71aR0T8 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwF71aR0T8 .text-box {
    display: none;
  }
  .cid-uwF71aR0T8 .mbr-section-title,
  .cid-uwF71aR0T8 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwF71aR0T8 .box {
    display: none;
  }
  .cid-uwF71aR0T8 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwF71aR0T8 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwF71aR0T8 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwF71aR0T8 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwF71aR0T8 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwF71aR0T8 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwF71baWdq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF71btGcv {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwF71btGcv h2 {
  text-align: left;
}
.cid-uwF71btGcv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF71btGcv p {
  color: #767676;
  text-align: left;
}
.cid-uwF71btGcv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF71btGcv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF71btGcv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF71btGcv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF71btGcv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF71btGcv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF71btGcv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwF71btGcv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwF71btGcv .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF71btGcv .mbr-text {
  color: #232323;
}
.cid-uwF71bL9MH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwF71bL9MH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwF71bL9MH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwF71bL9MH .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwF71bL9MH .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwF71bL9MH .container {
    padding: 0 26px;
  }
}
.cid-uwF71bL9MH .row {
  justify-content: center;
}
.cid-uwF71bL9MH .item {
  margin-bottom: 32px;
}
.cid-uwF71bL9MH .item a {
  display: block;
}
.cid-uwF71bL9MH .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwF71bL9MH .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwF71bL9MH .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwF71bL9MH .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-uwF71bL9MH .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwF71bL9MH .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwF71bL9MH .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-uwF71bL9MH .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwF71bL9MH .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwF71bL9MH .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwF71bL9MH .item-title {
  color: #ffffff;
}
.cid-uwF71bL9MH .mbr-date {
  color: #cacaca;
}
.cid-uwF71bL9MH .mbr-desc {
  color: #cacaca;
}
.cid-uwF71c4uRy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwF71c4uRy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwF71c4uRy .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-uwF71c4uRy .container {
    padding: 0 16px;
  }
}
.cid-uwF71c4uRy .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwF71c4uRy .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwF71c4uRy .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwF71c4uRy .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwF71c4uRy .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwF71c4uRy .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwF71c4uRy .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwF71c4uRy .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwF71c4uRy .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwF71c4uRy .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-uwF71c4uRy .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwF71c4uRy .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwF71c4uRy .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwF71c4uRy .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwF71c4uRy .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwF71c4uRy .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwF71c4uRy .dragArea.row .form-group .form-control:hover,
.cid-uwF71c4uRy .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwF71c4uRy .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwF71c4uRy .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwF71c4uRy .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwF71c4uRy .mbr-title {
  color: #ffffff;
}
.cid-uwF71c4uRy .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwF71c4uRy .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwF71c4uRy .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwF71c4uRy .list {
  color: #08323C;
}
.cid-uwF71c4uRy label {
  color: #08323C;
}
.cid-uwF71c4uRy H3 {
  color: #000000;
}
.cid-uwF71c4uRy P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwF7kZIOHR {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF7kZIOHR H1 {
  text-align: center;
}
.cid-uDmSXLsXAN {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmSXLsXAN .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmSXLsXAN .video-block {
    width: 100% !important;
  }
}
.cid-uwF7l018yb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF7l0ffg5 {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwF7l0ffg5 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwF7l0ffg5 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwF7l0ffg5 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwF7l0ffg5 .box {
  left: 20%;
}
.cid-uwF7l0ffg5 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwF7l0ffg5 .mbr-section-text,
.cid-uwF7l0ffg5 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwF7l0ffg5 .text-box {
    display: none;
  }
  .cid-uwF7l0ffg5 .mbr-section-title,
  .cid-uwF7l0ffg5 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwF7l0ffg5 .box {
    display: none;
  }
  .cid-uwF7l0ffg5 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwF7l0ffg5 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwF7l0ffg5 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwF7l0ffg5 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwF7l0ffg5 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwF7l0ffg5 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwF7l0v0Rm {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF7l0v0Rm H1 {
  text-align: center;
}
.cid-uwF7l0LqIa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF7l0ZaVF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF7l0ZaVF h2 {
  text-align: left;
}
.cid-uwF7l0ZaVF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF7l0ZaVF p {
  color: #767676;
  text-align: left;
}
.cid-uwF7l0ZaVF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF7l0ZaVF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF7l0ZaVF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF7l0ZaVF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF7l0ZaVF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF7l0ZaVF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF7l0ZaVF .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwF7l0ZaVF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwF7l0ZaVF .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF7l0ZaVF H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwF7l0ZaVF P {
  color: #ffffff;
  text-align: left;
}
.cid-uwF7l0ZaVF H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkZ8lp7Ky {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkZ8lp7Ky H1 {
  color: #000000;
}
.cid-uxkZ9lBOJr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkZ9lBOJr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkZ9lBOJr .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkZ9lBOJr .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkZ9lBOJr .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkZ9lBOJr .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkZ9lBOJr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkZ9lBOJr .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkZ9lBOJr .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkZ9lBOJr .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkZ9lBOJr .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkZ9lBOJr .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-uxkZ9lBOJr .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkZ9lBOJr .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkZ9lBOJr .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkZ9lBOJr .mbr-text,
.cid-uxkZ9lBOJr .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwF7l1WszO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF7l2bFQH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwF7l2bFQH H1 {
  color: #000000;
}
.cid-uxkZaaUPhn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkZaaUPhn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkZaaUPhn .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkZaaUPhn .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkZaaUPhn .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkZaaUPhn .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkZaaUPhn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkZaaUPhn .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkZaaUPhn .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkZaaUPhn .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkZaaUPhn .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkZaaUPhn .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-uxkZaaUPhn .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkZaaUPhn .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkZaaUPhn .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkZaaUPhn .mbr-text,
.cid-uxkZaaUPhn .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkZaWqQAY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkZaWqQAY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkZaWqQAY .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkZaWqQAY .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkZaWqQAY .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkZaWqQAY .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkZaWqQAY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkZaWqQAY .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkZaWqQAY .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkZaWqQAY .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkZaWqQAY .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkZaWqQAY .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-uxkZaWqQAY .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkZaWqQAY .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkZaWqQAY .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkZaWqQAY .mbr-text,
.cid-uxkZaWqQAY .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwF7l3ib3I {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwF7l3ib3I H1 {
  color: #000000;
}
.cid-uwF7l3zpsU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwF7l3zpsU h2 {
  text-align: left;
}
.cid-uwF7l3zpsU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF7l3zpsU p {
  color: #767676;
  text-align: left;
}
.cid-uwF7l3zpsU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF7l3zpsU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF7l3zpsU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF7l3zpsU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF7l3zpsU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF7l3zpsU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF7l3zpsU .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwF7l3zpsU .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwF7l3zpsU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwF7l3zpsU .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwF7l3zpsU .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF7l3SEQu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwF7l3SEQu H1 {
  color: #000000;
}
.cid-uwF7l4aOs6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwF7l4aOs6 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwF7l4aOs6 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwF7l4aOs6 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwF7l4aOs6 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwF7l4aOs6 .box {
  right: 20%;
}
.cid-uwF7l4aOs6 .text-box {
  right: 0;
}
.cid-uwF7l4aOs6 .mbr-section-title,
.cid-uwF7l4aOs6 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwF7l4aOs6 .text-box {
    display: none;
  }
  .cid-uwF7l4aOs6 .mbr-section-title,
  .cid-uwF7l4aOs6 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwF7l4aOs6 .box {
    display: none;
  }
  .cid-uwF7l4aOs6 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwF7l4aOs6 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwF7l4aOs6 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwF7l4aOs6 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwF7l4aOs6 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwF7l4aOs6 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwF7l4t9ds {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF7l4K2iX {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwF7l4K2iX h2 {
  text-align: left;
}
.cid-uwF7l4K2iX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF7l4K2iX p {
  color: #767676;
  text-align: left;
}
.cid-uwF7l4K2iX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF7l4K2iX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF7l4K2iX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF7l4K2iX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF7l4K2iX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF7l4K2iX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF7l4K2iX .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwF7l4K2iX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwF7l4K2iX .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF7l4K2iX .mbr-text {
  color: #232323;
}
.cid-uwF7l54eUP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwF7l54eUP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwF7l54eUP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwF7l54eUP .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwF7l54eUP .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwF7l54eUP .container {
    padding: 0 26px;
  }
}
.cid-uwF7l54eUP .row {
  justify-content: center;
}
.cid-uwF7l54eUP .item {
  margin-bottom: 32px;
}
.cid-uwF7l54eUP .item a {
  display: block;
}
.cid-uwF7l54eUP .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwF7l54eUP .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwF7l54eUP .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwF7l54eUP .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-uwF7l54eUP .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwF7l54eUP .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwF7l54eUP .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-uwF7l54eUP .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwF7l54eUP .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwF7l54eUP .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwF7l54eUP .item-title {
  color: #ffffff;
}
.cid-uwF7l54eUP .mbr-date {
  color: #cacaca;
}
.cid-uwF7l54eUP .mbr-desc {
  color: #cacaca;
}
.cid-uwF7l5pTKp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwF7l5pTKp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwF7l5pTKp .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-uwF7l5pTKp .container {
    padding: 0 16px;
  }
}
.cid-uwF7l5pTKp .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwF7l5pTKp .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwF7l5pTKp .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwF7l5pTKp .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwF7l5pTKp .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwF7l5pTKp .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwF7l5pTKp .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwF7l5pTKp .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwF7l5pTKp .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwF7l5pTKp .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-uwF7l5pTKp .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwF7l5pTKp .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwF7l5pTKp .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwF7l5pTKp .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwF7l5pTKp .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwF7l5pTKp .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwF7l5pTKp .dragArea.row .form-group .form-control:hover,
.cid-uwF7l5pTKp .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwF7l5pTKp .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwF7l5pTKp .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwF7l5pTKp .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwF7l5pTKp .mbr-title {
  color: #ffffff;
}
.cid-uwF7l5pTKp .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwF7l5pTKp .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwF7l5pTKp .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwF7l5pTKp .list {
  color: #08323C;
}
.cid-uwF7l5pTKp label {
  color: #08323C;
}
.cid-uwF7l5pTKp H3 {
  color: #000000;
}
.cid-uwF7l5pTKp P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwF7CLwBio {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF7CLwBio H1 {
  text-align: center;
}
.cid-uDmT4a1fcA {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmT4a1fcA .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmT4a1fcA .video-block {
    width: 100% !important;
  }
}
.cid-uwF7CLQJBo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF7CM76Kz {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwF7CM76Kz .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwF7CM76Kz .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwF7CM76Kz .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwF7CM76Kz .box {
  left: 20%;
}
.cid-uwF7CM76Kz .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwF7CM76Kz .mbr-section-text,
.cid-uwF7CM76Kz .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwF7CM76Kz .text-box {
    display: none;
  }
  .cid-uwF7CM76Kz .mbr-section-title,
  .cid-uwF7CM76Kz .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwF7CM76Kz .box {
    display: none;
  }
  .cid-uwF7CM76Kz .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwF7CM76Kz .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwF7CM76Kz .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwF7CM76Kz .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwF7CM76Kz .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwF7CM76Kz .mbr-section-text DIV {
  text-align: center;
}
.cid-uwF7CMmAdU {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF7CMmAdU H1 {
  text-align: center;
}
.cid-uwF7CMA4x8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF7CMOebY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF7CMOebY h2 {
  text-align: left;
}
.cid-uwF7CMOebY h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF7CMOebY p {
  color: #767676;
  text-align: left;
}
.cid-uwF7CMOebY .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF7CMOebY .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF7CMOebY .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF7CMOebY .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF7CMOebY .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF7CMOebY .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF7CMOebY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwF7CMOebY .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwF7CMOebY .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF7CMOebY H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwF7CMOebY P {
  color: #ffffff;
  text-align: left;
}
.cid-uwF7CMOebY H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkZBpFPBu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkZBpFPBu H1 {
  color: #000000;
}
.cid-uxkZCqZyUC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkZCqZyUC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkZCqZyUC .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkZCqZyUC .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkZCqZyUC .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkZCqZyUC .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkZCqZyUC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkZCqZyUC .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkZCqZyUC .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkZCqZyUC .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkZCqZyUC .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkZCqZyUC .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-uxkZCqZyUC .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkZCqZyUC .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkZCqZyUC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkZCqZyUC .mbr-text,
.cid-uxkZCqZyUC .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwF7CNQSuP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF7COfg6u {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwF7COfg6u H1 {
  color: #000000;
}
.cid-uxkZDdoTQz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkZDdoTQz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkZDdoTQz .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkZDdoTQz .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkZDdoTQz .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkZDdoTQz .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkZDdoTQz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkZDdoTQz .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkZDdoTQz .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkZDdoTQz .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkZDdoTQz .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkZDdoTQz .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-uxkZDdoTQz .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkZDdoTQz .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkZDdoTQz .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkZDdoTQz .mbr-text,
.cid-uxkZDdoTQz .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkZEab6bG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkZEab6bG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkZEab6bG .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkZEab6bG .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkZEab6bG .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkZEab6bG .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkZEab6bG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkZEab6bG .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkZEab6bG .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkZEab6bG .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkZEab6bG .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkZEab6bG .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-uxkZEab6bG .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkZEab6bG .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkZEab6bG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkZEab6bG .mbr-text,
.cid-uxkZEab6bG .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwF7CQlmrk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwF7CQlmrk H1 {
  color: #000000;
}
.cid-uwF7CQB0ro {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwF7CQB0ro h2 {
  text-align: left;
}
.cid-uwF7CQB0ro h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF7CQB0ro p {
  color: #767676;
  text-align: left;
}
.cid-uwF7CQB0ro .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF7CQB0ro .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF7CQB0ro .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF7CQB0ro .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF7CQB0ro .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF7CQB0ro .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF7CQB0ro .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwF7CQB0ro .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwF7CQB0ro .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwF7CQB0ro .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwF7CQB0ro .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF7CQZyHQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwF7CQZyHQ H1 {
  color: #000000;
}
.cid-uwF7CRgdSX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwF7CRgdSX .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwF7CRgdSX .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwF7CRgdSX .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwF7CRgdSX .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwF7CRgdSX .box {
  right: 20%;
}
.cid-uwF7CRgdSX .text-box {
  right: 0;
}
.cid-uwF7CRgdSX .mbr-section-title,
.cid-uwF7CRgdSX .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwF7CRgdSX .text-box {
    display: none;
  }
  .cid-uwF7CRgdSX .mbr-section-title,
  .cid-uwF7CRgdSX .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwF7CRgdSX .box {
    display: none;
  }
  .cid-uwF7CRgdSX .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwF7CRgdSX .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwF7CRgdSX .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwF7CRgdSX .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwF7CRgdSX .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwF7CRgdSX .mbr-section-text DIV {
  text-align: center;
}
.cid-uwF7CRAAx4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF7CRWeAz {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwF7CRWeAz h2 {
  text-align: left;
}
.cid-uwF7CRWeAz h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF7CRWeAz p {
  color: #767676;
  text-align: left;
}
.cid-uwF7CRWeAz .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF7CRWeAz .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF7CRWeAz .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF7CRWeAz .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF7CRWeAz .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF7CRWeAz .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF7CRWeAz .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwF7CRWeAz .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwF7CRWeAz .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF7CRWeAz .mbr-text {
  color: #232323;
}
.cid-uwF7CSq4tr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwF7CSq4tr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwF7CSq4tr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwF7CSq4tr .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwF7CSq4tr .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwF7CSq4tr .container {
    padding: 0 26px;
  }
}
.cid-uwF7CSq4tr .row {
  justify-content: center;
}
.cid-uwF7CSq4tr .item {
  margin-bottom: 32px;
}
.cid-uwF7CSq4tr .item a {
  display: block;
}
.cid-uwF7CSq4tr .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwF7CSq4tr .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwF7CSq4tr .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwF7CSq4tr .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-uwF7CSq4tr .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwF7CSq4tr .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwF7CSq4tr .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-uwF7CSq4tr .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwF7CSq4tr .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwF7CSq4tr .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwF7CSq4tr .item-title {
  color: #ffffff;
}
.cid-uwF7CSq4tr .mbr-date {
  color: #cacaca;
}
.cid-uwF7CSq4tr .mbr-desc {
  color: #cacaca;
}
.cid-uwF7CSMbpT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwF7CSMbpT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwF7CSMbpT .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-uwF7CSMbpT .container {
    padding: 0 16px;
  }
}
.cid-uwF7CSMbpT .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwF7CSMbpT .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwF7CSMbpT .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwF7CSMbpT .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwF7CSMbpT .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwF7CSMbpT .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwF7CSMbpT .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwF7CSMbpT .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwF7CSMbpT .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwF7CSMbpT .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-uwF7CSMbpT .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwF7CSMbpT .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwF7CSMbpT .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwF7CSMbpT .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwF7CSMbpT .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwF7CSMbpT .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwF7CSMbpT .dragArea.row .form-group .form-control:hover,
.cid-uwF7CSMbpT .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwF7CSMbpT .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwF7CSMbpT .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwF7CSMbpT .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwF7CSMbpT .mbr-title {
  color: #ffffff;
}
.cid-uwF7CSMbpT .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwF7CSMbpT .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwF7CSMbpT .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwF7CSMbpT .list {
  color: #08323C;
}
.cid-uwF7CSMbpT label {
  color: #08323C;
}
.cid-uwF7CSMbpT H3 {
  color: #000000;
}
.cid-uwF7CSMbpT P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwF7WhXbZQ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF7WhXbZQ H1 {
  text-align: center;
}
.cid-uDmT8juMTO {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmT8juMTO .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmT8juMTO .video-block {
    width: 100% !important;
  }
}
.cid-uwF7Wio83a {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF7WiEKbC {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwF7WiEKbC .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwF7WiEKbC .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwF7WiEKbC .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwF7WiEKbC .box {
  left: 20%;
}
.cid-uwF7WiEKbC .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwF7WiEKbC .mbr-section-text,
.cid-uwF7WiEKbC .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwF7WiEKbC .text-box {
    display: none;
  }
  .cid-uwF7WiEKbC .mbr-section-title,
  .cid-uwF7WiEKbC .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwF7WiEKbC .box {
    display: none;
  }
  .cid-uwF7WiEKbC .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwF7WiEKbC .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwF7WiEKbC .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwF7WiEKbC .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwF7WiEKbC .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwF7WiEKbC .mbr-section-text DIV {
  text-align: center;
}
.cid-uwF7WiTLxl {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF7WiTLxl H1 {
  text-align: center;
}
.cid-uwF7Wj8Mg0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF7Wjpgz4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF7Wjpgz4 h2 {
  text-align: left;
}
.cid-uwF7Wjpgz4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF7Wjpgz4 p {
  color: #767676;
  text-align: left;
}
.cid-uwF7Wjpgz4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF7Wjpgz4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF7Wjpgz4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF7Wjpgz4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF7Wjpgz4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF7Wjpgz4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF7Wjpgz4 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwF7Wjpgz4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwF7Wjpgz4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF7Wjpgz4 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwF7Wjpgz4 P {
  color: #ffffff;
  text-align: left;
}
.cid-uwF7Wjpgz4 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkZJc9kTz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkZJc9kTz H1 {
  color: #000000;
}
.cid-uxkZK7JlF5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkZK7JlF5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkZK7JlF5 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkZK7JlF5 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkZK7JlF5 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkZK7JlF5 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkZK7JlF5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkZK7JlF5 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkZK7JlF5 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkZK7JlF5 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkZK7JlF5 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkZK7JlF5 .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-uxkZK7JlF5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkZK7JlF5 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkZK7JlF5 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkZK7JlF5 .mbr-text,
.cid-uxkZK7JlF5 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwF7WkuTKb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF7WkLUoA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwF7WkLUoA H1 {
  color: #000000;
}
.cid-uxkZKWLWSu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkZKWLWSu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkZKWLWSu .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkZKWLWSu .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkZKWLWSu .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkZKWLWSu .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkZKWLWSu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkZKWLWSu .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkZKWLWSu .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkZKWLWSu .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkZKWLWSu .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkZKWLWSu .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-uxkZKWLWSu .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkZKWLWSu .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkZKWLWSu .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkZKWLWSu .mbr-text,
.cid-uxkZKWLWSu .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkZLKRGcH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkZLKRGcH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkZLKRGcH .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkZLKRGcH .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkZLKRGcH .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkZLKRGcH .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkZLKRGcH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkZLKRGcH .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkZLKRGcH .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkZLKRGcH .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkZLKRGcH .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkZLKRGcH .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-uxkZLKRGcH .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkZLKRGcH .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkZLKRGcH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkZLKRGcH .mbr-text,
.cid-uxkZLKRGcH .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwF7Wm4erU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwF7Wm4erU H1 {
  color: #000000;
}
.cid-uwF7Wmo4Sp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwF7Wmo4Sp h2 {
  text-align: left;
}
.cid-uwF7Wmo4Sp h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF7Wmo4Sp p {
  color: #767676;
  text-align: left;
}
.cid-uwF7Wmo4Sp .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF7Wmo4Sp .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF7Wmo4Sp .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF7Wmo4Sp .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF7Wmo4Sp .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF7Wmo4Sp .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF7Wmo4Sp .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwF7Wmo4Sp .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwF7Wmo4Sp .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwF7Wmo4Sp .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwF7Wmo4Sp .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF7WmIG8J {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwF7WmIG8J H1 {
  color: #000000;
}
.cid-uwF7WmZEIU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwF7WmZEIU .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwF7WmZEIU .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwF7WmZEIU .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwF7WmZEIU .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwF7WmZEIU .box {
  right: 20%;
}
.cid-uwF7WmZEIU .text-box {
  right: 0;
}
.cid-uwF7WmZEIU .mbr-section-title,
.cid-uwF7WmZEIU .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwF7WmZEIU .text-box {
    display: none;
  }
  .cid-uwF7WmZEIU .mbr-section-title,
  .cid-uwF7WmZEIU .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwF7WmZEIU .box {
    display: none;
  }
  .cid-uwF7WmZEIU .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwF7WmZEIU .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwF7WmZEIU .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwF7WmZEIU .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwF7WmZEIU .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwF7WmZEIU .mbr-section-text DIV {
  text-align: center;
}
.cid-uwF7Wnkpsg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF7WnBREB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwF7WnBREB h2 {
  text-align: left;
}
.cid-uwF7WnBREB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF7WnBREB p {
  color: #767676;
  text-align: left;
}
.cid-uwF7WnBREB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF7WnBREB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF7WnBREB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF7WnBREB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF7WnBREB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF7WnBREB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF7WnBREB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwF7WnBREB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwF7WnBREB .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF7WnBREB .mbr-text {
  color: #232323;
}
.cid-uwF7WnVZeK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwF7WnVZeK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwF7WnVZeK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwF7WnVZeK .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwF7WnVZeK .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwF7WnVZeK .container {
    padding: 0 26px;
  }
}
.cid-uwF7WnVZeK .row {
  justify-content: center;
}
.cid-uwF7WnVZeK .item {
  margin-bottom: 32px;
}
.cid-uwF7WnVZeK .item a {
  display: block;
}
.cid-uwF7WnVZeK .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwF7WnVZeK .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwF7WnVZeK .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwF7WnVZeK .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-uwF7WnVZeK .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwF7WnVZeK .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwF7WnVZeK .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-uwF7WnVZeK .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwF7WnVZeK .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwF7WnVZeK .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwF7WnVZeK .item-title {
  color: #ffffff;
}
.cid-uwF7WnVZeK .mbr-date {
  color: #cacaca;
}
.cid-uwF7WnVZeK .mbr-desc {
  color: #cacaca;
}
.cid-uwF7WogTCP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwF7WogTCP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwF7WogTCP .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-uwF7WogTCP .container {
    padding: 0 16px;
  }
}
.cid-uwF7WogTCP .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwF7WogTCP .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwF7WogTCP .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwF7WogTCP .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwF7WogTCP .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwF7WogTCP .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwF7WogTCP .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwF7WogTCP .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwF7WogTCP .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwF7WogTCP .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-uwF7WogTCP .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwF7WogTCP .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwF7WogTCP .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwF7WogTCP .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwF7WogTCP .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwF7WogTCP .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwF7WogTCP .dragArea.row .form-group .form-control:hover,
.cid-uwF7WogTCP .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwF7WogTCP .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwF7WogTCP .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwF7WogTCP .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwF7WogTCP .mbr-title {
  color: #ffffff;
}
.cid-uwF7WogTCP .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwF7WogTCP .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwF7WogTCP .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwF7WogTCP .list {
  color: #08323C;
}
.cid-uwF7WogTCP label {
  color: #08323C;
}
.cid-uwF7WogTCP H3 {
  color: #000000;
}
.cid-uwF7WogTCP P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwF9ozJaUt {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF9ozJaUt H1 {
  text-align: center;
}
.cid-uDmTbqAAx6 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmTbqAAx6 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmTbqAAx6 .video-block {
    width: 100% !important;
  }
}
.cid-uwF9oA6FvI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF9oAnTgT {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwF9oAnTgT .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwF9oAnTgT .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwF9oAnTgT .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwF9oAnTgT .box {
  left: 20%;
}
.cid-uwF9oAnTgT .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwF9oAnTgT .mbr-section-text,
.cid-uwF9oAnTgT .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwF9oAnTgT .text-box {
    display: none;
  }
  .cid-uwF9oAnTgT .mbr-section-title,
  .cid-uwF9oAnTgT .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwF9oAnTgT .box {
    display: none;
  }
  .cid-uwF9oAnTgT .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwF9oAnTgT .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwF9oAnTgT .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwF9oAnTgT .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwF9oAnTgT .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwF9oAnTgT .mbr-section-text DIV {
  text-align: center;
}
.cid-uwF9oAEKsG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF9oAEKsG H1 {
  text-align: center;
}
.cid-uwF9oATM90 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF9oB9jsS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwF9oB9jsS h2 {
  text-align: left;
}
.cid-uwF9oB9jsS h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF9oB9jsS p {
  color: #767676;
  text-align: left;
}
.cid-uwF9oB9jsS .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF9oB9jsS .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF9oB9jsS .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF9oB9jsS .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF9oB9jsS .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF9oB9jsS .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF9oB9jsS .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwF9oB9jsS .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwF9oB9jsS .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF9oB9jsS H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwF9oB9jsS P {
  color: #ffffff;
  text-align: left;
}
.cid-uwF9oB9jsS H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkZROGyoE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkZROGyoE H1 {
  color: #000000;
}
.cid-uxkZSVQ7pp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkZSVQ7pp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkZSVQ7pp .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkZSVQ7pp .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkZSVQ7pp .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkZSVQ7pp .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkZSVQ7pp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkZSVQ7pp .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkZSVQ7pp .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkZSVQ7pp .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkZSVQ7pp .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkZSVQ7pp .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-uxkZSVQ7pp .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkZSVQ7pp .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkZSVQ7pp .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkZSVQ7pp .mbr-text,
.cid-uxkZSVQ7pp .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwF9oCbYrh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF9oCrzZs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwF9oCrzZs H1 {
  color: #000000;
}
.cid-uxkZTJZjDD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkZTJZjDD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkZTJZjDD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkZTJZjDD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkZTJZjDD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkZTJZjDD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkZTJZjDD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkZTJZjDD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkZTJZjDD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkZTJZjDD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkZTJZjDD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkZTJZjDD .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-uxkZTJZjDD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkZTJZjDD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkZTJZjDD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkZTJZjDD .mbr-text,
.cid-uxkZTJZjDD .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkZUcxTny {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkZUcxTny .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkZUcxTny .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkZUcxTny .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkZUcxTny .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkZUcxTny .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkZUcxTny .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkZUcxTny .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkZUcxTny .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkZUcxTny .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkZUcxTny .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkZUcxTny .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-uxkZUcxTny .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkZUcxTny .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkZUcxTny .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkZUcxTny .mbr-text,
.cid-uxkZUcxTny .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwF9oDCwtr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwF9oDCwtr H1 {
  color: #000000;
}
.cid-uwF9oDYjYG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwF9oDYjYG h2 {
  text-align: left;
}
.cid-uwF9oDYjYG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF9oDYjYG p {
  color: #767676;
  text-align: left;
}
.cid-uwF9oDYjYG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF9oDYjYG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF9oDYjYG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF9oDYjYG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF9oDYjYG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF9oDYjYG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF9oDYjYG .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwF9oDYjYG .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwF9oDYjYG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwF9oDYjYG .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwF9oDYjYG .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF9oEjkw0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwF9oEjkw0 H1 {
  color: #000000;
}
.cid-uwF9oEA00W {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwF9oEA00W .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwF9oEA00W .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwF9oEA00W .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwF9oEA00W .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwF9oEA00W .box {
  right: 20%;
}
.cid-uwF9oEA00W .text-box {
  right: 0;
}
.cid-uwF9oEA00W .mbr-section-title,
.cid-uwF9oEA00W .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwF9oEA00W .text-box {
    display: none;
  }
  .cid-uwF9oEA00W .mbr-section-title,
  .cid-uwF9oEA00W .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwF9oEA00W .box {
    display: none;
  }
  .cid-uwF9oEA00W .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwF9oEA00W .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwF9oEA00W .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwF9oEA00W .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwF9oEA00W .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwF9oEA00W .mbr-section-text DIV {
  text-align: center;
}
.cid-uwF9oEWBAq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwF9oFeRSO {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwF9oFeRSO h2 {
  text-align: left;
}
.cid-uwF9oFeRSO h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwF9oFeRSO p {
  color: #767676;
  text-align: left;
}
.cid-uwF9oFeRSO .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwF9oFeRSO .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwF9oFeRSO .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwF9oFeRSO .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwF9oFeRSO .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwF9oFeRSO .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwF9oFeRSO .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwF9oFeRSO .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwF9oFeRSO .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwF9oFeRSO .mbr-text {
  color: #232323;
}
.cid-uwF9oFycGq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwF9oFycGq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwF9oFycGq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwF9oFycGq .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwF9oFycGq .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwF9oFycGq .container {
    padding: 0 26px;
  }
}
.cid-uwF9oFycGq .row {
  justify-content: center;
}
.cid-uwF9oFycGq .item {
  margin-bottom: 32px;
}
.cid-uwF9oFycGq .item a {
  display: block;
}
.cid-uwF9oFycGq .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwF9oFycGq .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwF9oFycGq .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwF9oFycGq .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-uwF9oFycGq .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwF9oFycGq .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwF9oFycGq .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-uwF9oFycGq .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwF9oFycGq .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwF9oFycGq .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwF9oFycGq .item-title {
  color: #ffffff;
}
.cid-uwF9oFycGq .mbr-date {
  color: #cacaca;
}
.cid-uwF9oFycGq .mbr-desc {
  color: #cacaca;
}
.cid-uwF9oFW51X {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwF9oFW51X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwF9oFW51X .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-uwF9oFW51X .container {
    padding: 0 16px;
  }
}
.cid-uwF9oFW51X .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwF9oFW51X .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwF9oFW51X .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwF9oFW51X .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwF9oFW51X .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwF9oFW51X .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwF9oFW51X .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwF9oFW51X .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwF9oFW51X .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwF9oFW51X .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-uwF9oFW51X .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwF9oFW51X .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwF9oFW51X .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwF9oFW51X .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwF9oFW51X .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwF9oFW51X .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwF9oFW51X .dragArea.row .form-group .form-control:hover,
.cid-uwF9oFW51X .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwF9oFW51X .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwF9oFW51X .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwF9oFW51X .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwF9oFW51X .mbr-title {
  color: #ffffff;
}
.cid-uwF9oFW51X .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwF9oFW51X .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwF9oFW51X .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwF9oFW51X .list {
  color: #08323C;
}
.cid-uwF9oFW51X label {
  color: #08323C;
}
.cid-uwF9oFW51X H3 {
  color: #000000;
}
.cid-uwF9oFW51X P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwFrFv7afW {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFrFv7afW H1 {
  text-align: center;
}
.cid-uDmRiG203p {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmRiG203p .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmRiG203p .video-block {
    width: 100% !important;
  }
}
.cid-uwFrFvw3rp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFrFvSaYh {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwFrFvSaYh .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFrFvSaYh .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFrFvSaYh .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFrFvSaYh .box {
  left: 20%;
}
.cid-uwFrFvSaYh .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwFrFvSaYh .mbr-section-text,
.cid-uwFrFvSaYh .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwFrFvSaYh .text-box {
    display: none;
  }
  .cid-uwFrFvSaYh .mbr-section-title,
  .cid-uwFrFvSaYh .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFrFvSaYh .box {
    display: none;
  }
  .cid-uwFrFvSaYh .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFrFvSaYh .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFrFvSaYh .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFrFvSaYh .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFrFvSaYh .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFrFvSaYh .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFrFwbIsb {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFrFwbIsb H1 {
  text-align: center;
}
.cid-uwFrFwuccT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFrFwO5cv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFrFwO5cv h2 {
  text-align: left;
}
.cid-uwFrFwO5cv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFrFwO5cv p {
  color: #767676;
  text-align: left;
}
.cid-uwFrFwO5cv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFrFwO5cv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFrFwO5cv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFrFwO5cv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFrFwO5cv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFrFwO5cv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFrFwO5cv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFrFwO5cv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFrFwO5cv .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFrFwO5cv H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwFrFwO5cv P {
  color: #ffffff;
  text-align: left;
}
.cid-uwFrFwO5cv H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwFrFxdIyb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFrFxdIyb H1 {
  color: #000000;
}
.cid-uxkPyqpxO4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkPyqpxO4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkPyqpxO4 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkPyqpxO4 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkPyqpxO4 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkPyqpxO4 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkPyqpxO4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkPyqpxO4 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkPyqpxO4 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkPyqpxO4 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkPyqpxO4 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkPyqpxO4 .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-uxkPyqpxO4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkPyqpxO4 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkPyqpxO4 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkPyqpxO4 .mbr-text,
.cid-uxkPyqpxO4 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFrFy750b {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFrFyt4wX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFrFyt4wX H1 {
  color: #000000;
}
.cid-uxkPzmc0mM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkPzmc0mM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkPzmc0mM .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkPzmc0mM .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkPzmc0mM .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkPzmc0mM .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkPzmc0mM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkPzmc0mM .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkPzmc0mM .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkPzmc0mM .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkPzmc0mM .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkPzmc0mM .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-uxkPzmc0mM .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkPzmc0mM .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkPzmc0mM .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkPzmc0mM .mbr-text,
.cid-uxkPzmc0mM .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkPA5yWWD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkPA5yWWD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkPA5yWWD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkPA5yWWD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkPA5yWWD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkPA5yWWD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkPA5yWWD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkPA5yWWD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkPA5yWWD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkPA5yWWD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkPA5yWWD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkPA5yWWD .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-uxkPA5yWWD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkPA5yWWD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkPA5yWWD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkPA5yWWD .mbr-text,
.cid-uxkPA5yWWD .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFrFA9vkQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFrFA9vkQ H1 {
  color: #000000;
}
.cid-uwFrFAyq7A {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwFrFAyq7A h2 {
  text-align: left;
}
.cid-uwFrFAyq7A h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFrFAyq7A p {
  color: #767676;
  text-align: left;
}
.cid-uwFrFAyq7A .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFrFAyq7A .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFrFAyq7A .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFrFAyq7A .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFrFAyq7A .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFrFAyq7A .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFrFAyq7A .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwFrFAyq7A .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwFrFAyq7A .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwFrFAyq7A .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwFrFAyq7A .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFrFAZ3lq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFrFAZ3lq H1 {
  color: #000000;
}
.cid-uwFrFBkDvz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwFrFBkDvz .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFrFBkDvz .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFrFBkDvz .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFrFBkDvz .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwFrFBkDvz .box {
  right: 20%;
}
.cid-uwFrFBkDvz .text-box {
  right: 0;
}
.cid-uwFrFBkDvz .mbr-section-title,
.cid-uwFrFBkDvz .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwFrFBkDvz .text-box {
    display: none;
  }
  .cid-uwFrFBkDvz .mbr-section-title,
  .cid-uwFrFBkDvz .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFrFBkDvz .box {
    display: none;
  }
  .cid-uwFrFBkDvz .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFrFBkDvz .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFrFBkDvz .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFrFBkDvz .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFrFBkDvz .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFrFBkDvz .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFrFBIiUR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFrFCbZG9 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwFrFCbZG9 h2 {
  text-align: left;
}
.cid-uwFrFCbZG9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFrFCbZG9 p {
  color: #767676;
  text-align: left;
}
.cid-uwFrFCbZG9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFrFCbZG9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFrFCbZG9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFrFCbZG9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFrFCbZG9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFrFCbZG9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFrFCbZG9 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFrFCbZG9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFrFCbZG9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFrFCbZG9 .mbr-text {
  color: #232323;
}
.cid-uwFrFCH5Ep {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwFrFCH5Ep .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFrFCH5Ep .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwFrFCH5Ep .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwFrFCH5Ep .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwFrFCH5Ep .container {
    padding: 0 26px;
  }
}
.cid-uwFrFCH5Ep .row {
  justify-content: center;
}
.cid-uwFrFCH5Ep .item {
  margin-bottom: 32px;
}
.cid-uwFrFCH5Ep .item a {
  display: block;
}
.cid-uwFrFCH5Ep .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwFrFCH5Ep .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwFrFCH5Ep .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwFrFCH5Ep .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-uwFrFCH5Ep .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwFrFCH5Ep .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwFrFCH5Ep .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-uwFrFCH5Ep .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwFrFCH5Ep .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwFrFCH5Ep .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwFrFCH5Ep .item-title {
  color: #ffffff;
}
.cid-uwFrFCH5Ep .mbr-date {
  color: #cacaca;
}
.cid-uwFrFCH5Ep .mbr-desc {
  color: #cacaca;
}
.cid-uwFrFDaSok {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwFrFDaSok .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFrFDaSok .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-uwFrFDaSok .container {
    padding: 0 16px;
  }
}
.cid-uwFrFDaSok .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwFrFDaSok .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFrFDaSok .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwFrFDaSok .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFrFDaSok .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwFrFDaSok .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwFrFDaSok .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwFrFDaSok .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwFrFDaSok .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwFrFDaSok .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-uwFrFDaSok .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwFrFDaSok .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwFrFDaSok .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwFrFDaSok .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwFrFDaSok .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwFrFDaSok .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwFrFDaSok .dragArea.row .form-group .form-control:hover,
.cid-uwFrFDaSok .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwFrFDaSok .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwFrFDaSok .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwFrFDaSok .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwFrFDaSok .mbr-title {
  color: #ffffff;
}
.cid-uwFrFDaSok .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwFrFDaSok .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwFrFDaSok .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwFrFDaSok .list {
  color: #08323C;
}
.cid-uwFrFDaSok label {
  color: #08323C;
}
.cid-uwFrFDaSok H3 {
  color: #000000;
}
.cid-uwFrFDaSok P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwFs3DHdqi {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFs3DHdqi H1 {
  text-align: center;
}
.cid-uDmRlKZ1aN {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmRlKZ1aN .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmRlKZ1aN .video-block {
    width: 100% !important;
  }
}
.cid-uwFs3E4hK2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFs3EqWUM {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwFs3EqWUM .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFs3EqWUM .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFs3EqWUM .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFs3EqWUM .box {
  left: 20%;
}
.cid-uwFs3EqWUM .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwFs3EqWUM .mbr-section-text,
.cid-uwFs3EqWUM .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwFs3EqWUM .text-box {
    display: none;
  }
  .cid-uwFs3EqWUM .mbr-section-title,
  .cid-uwFs3EqWUM .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFs3EqWUM .box {
    display: none;
  }
  .cid-uwFs3EqWUM .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFs3EqWUM .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFs3EqWUM .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFs3EqWUM .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFs3EqWUM .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFs3EqWUM .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFs3EK6P3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFs3EK6P3 H1 {
  text-align: center;
}
.cid-uwFs3F24j1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFs3FmKqG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFs3FmKqG h2 {
  text-align: left;
}
.cid-uwFs3FmKqG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFs3FmKqG p {
  color: #767676;
  text-align: left;
}
.cid-uwFs3FmKqG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFs3FmKqG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFs3FmKqG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFs3FmKqG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFs3FmKqG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFs3FmKqG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFs3FmKqG .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFs3FmKqG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFs3FmKqG .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFs3FmKqG H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwFs3FmKqG P {
  color: #ffffff;
  text-align: left;
}
.cid-uwFs3FmKqG H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwFs3FKw1U {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFs3FKw1U H1 {
  color: #000000;
}
.cid-uxkPFh5xnI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkPFh5xnI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkPFh5xnI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkPFh5xnI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkPFh5xnI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkPFh5xnI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkPFh5xnI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkPFh5xnI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkPFh5xnI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkPFh5xnI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkPFh5xnI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkPFh5xnI .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-uxkPFh5xnI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkPFh5xnI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkPFh5xnI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkPFh5xnI .mbr-text,
.cid-uxkPFh5xnI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFs3GAGR3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFs3GUKmM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFs3GUKmM H1 {
  color: #000000;
}
.cid-uxkPG9zA8D {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkPG9zA8D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkPG9zA8D .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkPG9zA8D .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkPG9zA8D .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkPG9zA8D .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkPG9zA8D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkPG9zA8D .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkPG9zA8D .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkPG9zA8D .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkPG9zA8D .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkPG9zA8D .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-uxkPG9zA8D .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkPG9zA8D .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkPG9zA8D .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkPG9zA8D .mbr-text,
.cid-uxkPG9zA8D .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkPGWZeMh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkPGWZeMh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkPGWZeMh .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkPGWZeMh .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkPGWZeMh .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkPGWZeMh .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkPGWZeMh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkPGWZeMh .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkPGWZeMh .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkPGWZeMh .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkPGWZeMh .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkPGWZeMh .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-uxkPGWZeMh .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkPGWZeMh .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkPGWZeMh .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkPGWZeMh .mbr-text,
.cid-uxkPGWZeMh .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFs3IgcF3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFs3IgcF3 H1 {
  color: #000000;
}
.cid-uwFs3ICmPp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwFs3ICmPp h2 {
  text-align: left;
}
.cid-uwFs3ICmPp h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFs3ICmPp p {
  color: #767676;
  text-align: left;
}
.cid-uwFs3ICmPp .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFs3ICmPp .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFs3ICmPp .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFs3ICmPp .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFs3ICmPp .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFs3ICmPp .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFs3ICmPp .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwFs3ICmPp .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwFs3ICmPp .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwFs3ICmPp .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwFs3ICmPp .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFs3J3kir {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFs3J3kir H1 {
  color: #000000;
}
.cid-uwFs3Jo4xe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwFs3Jo4xe .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFs3Jo4xe .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFs3Jo4xe .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFs3Jo4xe .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwFs3Jo4xe .box {
  right: 20%;
}
.cid-uwFs3Jo4xe .text-box {
  right: 0;
}
.cid-uwFs3Jo4xe .mbr-section-title,
.cid-uwFs3Jo4xe .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwFs3Jo4xe .text-box {
    display: none;
  }
  .cid-uwFs3Jo4xe .mbr-section-title,
  .cid-uwFs3Jo4xe .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFs3Jo4xe .box {
    display: none;
  }
  .cid-uwFs3Jo4xe .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFs3Jo4xe .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFs3Jo4xe .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFs3Jo4xe .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFs3Jo4xe .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFs3Jo4xe .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFs3JMvY2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFs3KbvKh {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwFs3KbvKh h2 {
  text-align: left;
}
.cid-uwFs3KbvKh h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFs3KbvKh p {
  color: #767676;
  text-align: left;
}
.cid-uwFs3KbvKh .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFs3KbvKh .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFs3KbvKh .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFs3KbvKh .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFs3KbvKh .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFs3KbvKh .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFs3KbvKh .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFs3KbvKh .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFs3KbvKh .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFs3KbvKh .mbr-text {
  color: #232323;
}
.cid-uwFs3Kzfvy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwFs3Kzfvy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFs3Kzfvy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwFs3Kzfvy .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwFs3Kzfvy .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwFs3Kzfvy .container {
    padding: 0 26px;
  }
}
.cid-uwFs3Kzfvy .row {
  justify-content: center;
}
.cid-uwFs3Kzfvy .item {
  margin-bottom: 32px;
}
.cid-uwFs3Kzfvy .item a {
  display: block;
}
.cid-uwFs3Kzfvy .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwFs3Kzfvy .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwFs3Kzfvy .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwFs3Kzfvy .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-uwFs3Kzfvy .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwFs3Kzfvy .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwFs3Kzfvy .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-uwFs3Kzfvy .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwFs3Kzfvy .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwFs3Kzfvy .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwFs3Kzfvy .item-title {
  color: #ffffff;
}
.cid-uwFs3Kzfvy .mbr-date {
  color: #cacaca;
}
.cid-uwFs3Kzfvy .mbr-desc {
  color: #cacaca;
}
.cid-uwFs3L0SUh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwFs3L0SUh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFs3L0SUh .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-uwFs3L0SUh .container {
    padding: 0 16px;
  }
}
.cid-uwFs3L0SUh .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwFs3L0SUh .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFs3L0SUh .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwFs3L0SUh .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFs3L0SUh .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwFs3L0SUh .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwFs3L0SUh .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwFs3L0SUh .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwFs3L0SUh .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwFs3L0SUh .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-uwFs3L0SUh .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwFs3L0SUh .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwFs3L0SUh .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwFs3L0SUh .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwFs3L0SUh .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwFs3L0SUh .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwFs3L0SUh .dragArea.row .form-group .form-control:hover,
.cid-uwFs3L0SUh .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwFs3L0SUh .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwFs3L0SUh .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwFs3L0SUh .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwFs3L0SUh .mbr-title {
  color: #ffffff;
}
.cid-uwFs3L0SUh .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwFs3L0SUh .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwFs3L0SUh .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwFs3L0SUh .list {
  color: #08323C;
}
.cid-uwFs3L0SUh label {
  color: #08323C;
}
.cid-uwFs3L0SUh H3 {
  color: #000000;
}
.cid-uwFs3L0SUh P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwFtefOsOf {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFtefOsOf H1 {
  text-align: center;
}
.cid-uDmRojhkXr {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmRojhkXr .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmRojhkXr .video-block {
    width: 100% !important;
  }
}
.cid-uwFtege0kj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFtegyJZq {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwFtegyJZq .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFtegyJZq .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFtegyJZq .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFtegyJZq .box {
  left: 20%;
}
.cid-uwFtegyJZq .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwFtegyJZq .mbr-section-text,
.cid-uwFtegyJZq .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwFtegyJZq .text-box {
    display: none;
  }
  .cid-uwFtegyJZq .mbr-section-title,
  .cid-uwFtegyJZq .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFtegyJZq .box {
    display: none;
  }
  .cid-uwFtegyJZq .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFtegyJZq .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFtegyJZq .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFtegyJZq .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFtegyJZq .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFtegyJZq .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFtegVDH8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFtegVDH8 H1 {
  text-align: center;
}
.cid-uwFtehe5NY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFtehwtTM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFtehwtTM h2 {
  text-align: left;
}
.cid-uwFtehwtTM h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFtehwtTM p {
  color: #767676;
  text-align: left;
}
.cid-uwFtehwtTM .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFtehwtTM .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFtehwtTM .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFtehwtTM .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFtehwtTM .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFtehwtTM .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFtehwtTM .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFtehwtTM .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFtehwtTM .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFtehwtTM H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwFtehwtTM P {
  color: #ffffff;
  text-align: left;
}
.cid-uwFtehwtTM H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwFtehXIlq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFtehXIlq H1 {
  color: #000000;
}
.cid-uxkQheDi5x {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkQheDi5x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkQheDi5x .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkQheDi5x .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkQheDi5x .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkQheDi5x .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkQheDi5x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkQheDi5x .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkQheDi5x .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkQheDi5x .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkQheDi5x .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkQheDi5x .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-uxkQheDi5x .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkQheDi5x .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkQheDi5x .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkQheDi5x .mbr-text,
.cid-uxkQheDi5x .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFteiPou1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFtejaIl9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFtejaIl9 H1 {
  color: #000000;
}
.cid-uxkQi0IyCs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkQi0IyCs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkQi0IyCs .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkQi0IyCs .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkQi0IyCs .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkQi0IyCs .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkQi0IyCs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkQi0IyCs .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkQi0IyCs .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkQi0IyCs .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkQi0IyCs .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkQi0IyCs .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-uxkQi0IyCs .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkQi0IyCs .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkQi0IyCs .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkQi0IyCs .mbr-text,
.cid-uxkQi0IyCs .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkQiNFs4K {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkQiNFs4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkQiNFs4K .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkQiNFs4K .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkQiNFs4K .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkQiNFs4K .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkQiNFs4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkQiNFs4K .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkQiNFs4K .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkQiNFs4K .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkQiNFs4K .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkQiNFs4K .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-uxkQiNFs4K .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkQiNFs4K .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkQiNFs4K .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkQiNFs4K .mbr-text,
.cid-uxkQiNFs4K .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFtekAFHu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFtekAFHu H1 {
  color: #000000;
}
.cid-uwFtekVLz6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwFtekVLz6 h2 {
  text-align: left;
}
.cid-uwFtekVLz6 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFtekVLz6 p {
  color: #767676;
  text-align: left;
}
.cid-uwFtekVLz6 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFtekVLz6 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFtekVLz6 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFtekVLz6 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFtekVLz6 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFtekVLz6 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFtekVLz6 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwFtekVLz6 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwFtekVLz6 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwFtekVLz6 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwFtekVLz6 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFtellGZK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFtellGZK H1 {
  color: #000000;
}
.cid-uwFtelHMsl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwFtelHMsl .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFtelHMsl .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFtelHMsl .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFtelHMsl .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwFtelHMsl .box {
  right: 20%;
}
.cid-uwFtelHMsl .text-box {
  right: 0;
}
.cid-uwFtelHMsl .mbr-section-title,
.cid-uwFtelHMsl .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwFtelHMsl .text-box {
    display: none;
  }
  .cid-uwFtelHMsl .mbr-section-title,
  .cid-uwFtelHMsl .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFtelHMsl .box {
    display: none;
  }
  .cid-uwFtelHMsl .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFtelHMsl .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFtelHMsl .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFtelHMsl .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFtelHMsl .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFtelHMsl .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFtem5Zwt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFtemuMs1 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwFtemuMs1 h2 {
  text-align: left;
}
.cid-uwFtemuMs1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFtemuMs1 p {
  color: #767676;
  text-align: left;
}
.cid-uwFtemuMs1 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFtemuMs1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFtemuMs1 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFtemuMs1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFtemuMs1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFtemuMs1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFtemuMs1 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFtemuMs1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFtemuMs1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFtemuMs1 .mbr-text {
  color: #232323;
}
.cid-uwFtemUjGx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwFtemUjGx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFtemUjGx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwFtemUjGx .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwFtemUjGx .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwFtemUjGx .container {
    padding: 0 26px;
  }
}
.cid-uwFtemUjGx .row {
  justify-content: center;
}
.cid-uwFtemUjGx .item {
  margin-bottom: 32px;
}
.cid-uwFtemUjGx .item a {
  display: block;
}
.cid-uwFtemUjGx .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwFtemUjGx .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwFtemUjGx .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwFtemUjGx .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-uwFtemUjGx .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwFtemUjGx .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwFtemUjGx .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-uwFtemUjGx .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwFtemUjGx .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwFtemUjGx .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwFtemUjGx .item-title {
  color: #ffffff;
}
.cid-uwFtemUjGx .mbr-date {
  color: #cacaca;
}
.cid-uwFtemUjGx .mbr-desc {
  color: #cacaca;
}
.cid-uwFtenkcLs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwFtenkcLs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFtenkcLs .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-uwFtenkcLs .container {
    padding: 0 16px;
  }
}
.cid-uwFtenkcLs .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwFtenkcLs .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFtenkcLs .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwFtenkcLs .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFtenkcLs .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwFtenkcLs .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwFtenkcLs .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwFtenkcLs .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwFtenkcLs .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwFtenkcLs .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-uwFtenkcLs .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwFtenkcLs .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwFtenkcLs .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwFtenkcLs .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwFtenkcLs .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwFtenkcLs .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwFtenkcLs .dragArea.row .form-group .form-control:hover,
.cid-uwFtenkcLs .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwFtenkcLs .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwFtenkcLs .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwFtenkcLs .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwFtenkcLs .mbr-title {
  color: #ffffff;
}
.cid-uwFtenkcLs .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwFtenkcLs .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwFtenkcLs .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwFtenkcLs .list {
  color: #08323C;
}
.cid-uwFtenkcLs label {
  color: #08323C;
}
.cid-uwFtenkcLs H3 {
  color: #000000;
}
.cid-uwFtenkcLs P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwFtxXp1co {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFtxXp1co H1 {
  text-align: center;
}
.cid-uDmRs9pjGE {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmRs9pjGE .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmRs9pjGE .video-block {
    width: 100% !important;
  }
}
.cid-uwFtxYpYqZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFtxYTOEp {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwFtxYTOEp .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFtxYTOEp .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFtxYTOEp .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFtxYTOEp .box {
  left: 20%;
}
.cid-uwFtxYTOEp .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwFtxYTOEp .mbr-section-text,
.cid-uwFtxYTOEp .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwFtxYTOEp .text-box {
    display: none;
  }
  .cid-uwFtxYTOEp .mbr-section-title,
  .cid-uwFtxYTOEp .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFtxYTOEp .box {
    display: none;
  }
  .cid-uwFtxYTOEp .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFtxYTOEp .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFtxYTOEp .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFtxYTOEp .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFtxYTOEp .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFtxYTOEp .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFtxZgzOM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFtxZgzOM H1 {
  text-align: center;
}
.cid-uwFtxZBdPb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFtxZXqRY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFtxZXqRY h2 {
  text-align: left;
}
.cid-uwFtxZXqRY h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFtxZXqRY p {
  color: #767676;
  text-align: left;
}
.cid-uwFtxZXqRY .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFtxZXqRY .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFtxZXqRY .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFtxZXqRY .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFtxZXqRY .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFtxZXqRY .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFtxZXqRY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFtxZXqRY .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFtxZXqRY .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFtxZXqRY H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwFtxZXqRY P {
  color: #ffffff;
  text-align: left;
}
.cid-uwFtxZXqRY H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwFty0pCTI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFty0pCTI H1 {
  color: #000000;
}
.cid-uxkQq2FxjQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkQq2FxjQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkQq2FxjQ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkQq2FxjQ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkQq2FxjQ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkQq2FxjQ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkQq2FxjQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkQq2FxjQ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkQq2FxjQ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkQq2FxjQ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkQq2FxjQ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkQq2FxjQ .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-uxkQq2FxjQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkQq2FxjQ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkQq2FxjQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkQq2FxjQ .mbr-text,
.cid-uxkQq2FxjQ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFty1pAdA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFty1MOrZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFty1MOrZ H1 {
  color: #000000;
}
.cid-uxkQr2MQ9O {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkQr2MQ9O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkQr2MQ9O .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkQr2MQ9O .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkQr2MQ9O .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkQr2MQ9O .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkQr2MQ9O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkQr2MQ9O .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkQr2MQ9O .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkQr2MQ9O .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkQr2MQ9O .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkQr2MQ9O .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-uxkQr2MQ9O .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkQr2MQ9O .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkQr2MQ9O .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkQr2MQ9O .mbr-text,
.cid-uxkQr2MQ9O .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkQshSjdX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkQshSjdX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkQshSjdX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkQshSjdX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkQshSjdX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkQshSjdX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkQshSjdX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkQshSjdX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkQshSjdX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkQshSjdX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkQshSjdX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkQshSjdX .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-uxkQshSjdX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkQshSjdX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkQshSjdX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkQshSjdX .mbr-text,
.cid-uxkQshSjdX .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFty3sey7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFty3sey7 H1 {
  color: #000000;
}
.cid-uwFty3Qgec {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwFty3Qgec h2 {
  text-align: left;
}
.cid-uwFty3Qgec h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFty3Qgec p {
  color: #767676;
  text-align: left;
}
.cid-uwFty3Qgec .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFty3Qgec .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFty3Qgec .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFty3Qgec .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFty3Qgec .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFty3Qgec .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFty3Qgec .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwFty3Qgec .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwFty3Qgec .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwFty3Qgec .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwFty3Qgec .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFty4of8k {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFty4of8k H1 {
  color: #000000;
}
.cid-uwFty4MRMD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwFty4MRMD .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFty4MRMD .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFty4MRMD .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFty4MRMD .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwFty4MRMD .box {
  right: 20%;
}
.cid-uwFty4MRMD .text-box {
  right: 0;
}
.cid-uwFty4MRMD .mbr-section-title,
.cid-uwFty4MRMD .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwFty4MRMD .text-box {
    display: none;
  }
  .cid-uwFty4MRMD .mbr-section-title,
  .cid-uwFty4MRMD .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFty4MRMD .box {
    display: none;
  }
  .cid-uwFty4MRMD .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFty4MRMD .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFty4MRMD .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFty4MRMD .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFty4MRMD .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFty4MRMD .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFty5ejC4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFty5Flrc {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwFty5Flrc h2 {
  text-align: left;
}
.cid-uwFty5Flrc h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFty5Flrc p {
  color: #767676;
  text-align: left;
}
.cid-uwFty5Flrc .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFty5Flrc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFty5Flrc .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFty5Flrc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFty5Flrc .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFty5Flrc .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFty5Flrc .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFty5Flrc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFty5Flrc .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFty5Flrc .mbr-text {
  color: #232323;
}
.cid-uwFty690Km {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwFty690Km .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFty690Km .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwFty690Km .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwFty690Km .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwFty690Km .container {
    padding: 0 26px;
  }
}
.cid-uwFty690Km .row {
  justify-content: center;
}
.cid-uwFty690Km .item {
  margin-bottom: 32px;
}
.cid-uwFty690Km .item a {
  display: block;
}
.cid-uwFty690Km .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwFty690Km .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwFty690Km .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwFty690Km .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-uwFty690Km .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwFty690Km .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwFty690Km .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-uwFty690Km .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwFty690Km .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwFty690Km .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwFty690Km .item-title {
  color: #ffffff;
}
.cid-uwFty690Km .mbr-date {
  color: #cacaca;
}
.cid-uwFty690Km .mbr-desc {
  color: #cacaca;
}
.cid-uwFty6CcZr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwFty6CcZr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFty6CcZr .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-uwFty6CcZr .container {
    padding: 0 16px;
  }
}
.cid-uwFty6CcZr .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwFty6CcZr .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFty6CcZr .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwFty6CcZr .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFty6CcZr .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwFty6CcZr .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwFty6CcZr .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwFty6CcZr .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwFty6CcZr .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwFty6CcZr .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-uwFty6CcZr .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwFty6CcZr .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwFty6CcZr .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwFty6CcZr .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwFty6CcZr .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwFty6CcZr .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwFty6CcZr .dragArea.row .form-group .form-control:hover,
.cid-uwFty6CcZr .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwFty6CcZr .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwFty6CcZr .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwFty6CcZr .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwFty6CcZr .mbr-title {
  color: #ffffff;
}
.cid-uwFty6CcZr .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwFty6CcZr .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwFty6CcZr .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwFty6CcZr .list {
  color: #08323C;
}
.cid-uwFty6CcZr label {
  color: #08323C;
}
.cid-uwFty6CcZr H3 {
  color: #000000;
}
.cid-uwFty6CcZr P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwFuwR93zb {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFuwR93zb H1 {
  text-align: center;
}
.cid-uDmRv2DpiR {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmRv2DpiR .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmRv2DpiR .video-block {
    width: 100% !important;
  }
}
.cid-uwFuwRADeZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFuwRUn2W {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwFuwRUn2W .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFuwRUn2W .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFuwRUn2W .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFuwRUn2W .box {
  left: 20%;
}
.cid-uwFuwRUn2W .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwFuwRUn2W .mbr-section-text,
.cid-uwFuwRUn2W .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwFuwRUn2W .text-box {
    display: none;
  }
  .cid-uwFuwRUn2W .mbr-section-title,
  .cid-uwFuwRUn2W .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFuwRUn2W .box {
    display: none;
  }
  .cid-uwFuwRUn2W .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFuwRUn2W .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFuwRUn2W .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFuwRUn2W .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFuwRUn2W .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFuwRUn2W .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFuwSgyhS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFuwSgyhS H1 {
  text-align: center;
}
.cid-uwFuwSA1sE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFuwST4vc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFuwST4vc h2 {
  text-align: left;
}
.cid-uwFuwST4vc h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFuwST4vc p {
  color: #767676;
  text-align: left;
}
.cid-uwFuwST4vc .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFuwST4vc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFuwST4vc .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFuwST4vc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFuwST4vc .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFuwST4vc .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFuwST4vc .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFuwST4vc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFuwST4vc .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFuwST4vc H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwFuwST4vc P {
  color: #ffffff;
  text-align: left;
}
.cid-uwFuwST4vc H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwFuwTlHhB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFuwTlHhB H1 {
  color: #000000;
}
.cid-uxkQzHu6lG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkQzHu6lG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkQzHu6lG .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkQzHu6lG .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkQzHu6lG .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkQzHu6lG .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkQzHu6lG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkQzHu6lG .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkQzHu6lG .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkQzHu6lG .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkQzHu6lG .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkQzHu6lG .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-uxkQzHu6lG .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkQzHu6lG .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkQzHu6lG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkQzHu6lG .mbr-text,
.cid-uxkQzHu6lG .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFuwUeOeT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFuwUBaFb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFuwUBaFb H1 {
  color: #000000;
}
.cid-uxkQBltxbJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkQBltxbJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkQBltxbJ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkQBltxbJ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkQBltxbJ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkQBltxbJ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkQBltxbJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkQBltxbJ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkQBltxbJ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkQBltxbJ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkQBltxbJ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkQBltxbJ .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-uxkQBltxbJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkQBltxbJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkQBltxbJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkQBltxbJ .mbr-text,
.cid-uxkQBltxbJ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkQCrIoKt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkQCrIoKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkQCrIoKt .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkQCrIoKt .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkQCrIoKt .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkQCrIoKt .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkQCrIoKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkQCrIoKt .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkQCrIoKt .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkQCrIoKt .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkQCrIoKt .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkQCrIoKt .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-uxkQCrIoKt .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkQCrIoKt .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkQCrIoKt .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkQCrIoKt .mbr-text,
.cid-uxkQCrIoKt .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFuwW2udE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFuwW2udE H1 {
  color: #000000;
}
.cid-uwFuwWqySI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwFuwWqySI h2 {
  text-align: left;
}
.cid-uwFuwWqySI h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFuwWqySI p {
  color: #767676;
  text-align: left;
}
.cid-uwFuwWqySI .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFuwWqySI .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFuwWqySI .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFuwWqySI .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFuwWqySI .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFuwWqySI .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFuwWqySI .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwFuwWqySI .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwFuwWqySI .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwFuwWqySI .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwFuwWqySI .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFuwWQhoX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFuwWQhoX H1 {
  color: #000000;
}
.cid-uwFuwXfyGk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwFuwXfyGk .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFuwXfyGk .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFuwXfyGk .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFuwXfyGk .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwFuwXfyGk .box {
  right: 20%;
}
.cid-uwFuwXfyGk .text-box {
  right: 0;
}
.cid-uwFuwXfyGk .mbr-section-title,
.cid-uwFuwXfyGk .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwFuwXfyGk .text-box {
    display: none;
  }
  .cid-uwFuwXfyGk .mbr-section-title,
  .cid-uwFuwXfyGk .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFuwXfyGk .box {
    display: none;
  }
  .cid-uwFuwXfyGk .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFuwXfyGk .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFuwXfyGk .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFuwXfyGk .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFuwXfyGk .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFuwXfyGk .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFuwXERfZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFuwY4GXv {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwFuwY4GXv h2 {
  text-align: left;
}
.cid-uwFuwY4GXv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFuwY4GXv p {
  color: #767676;
  text-align: left;
}
.cid-uwFuwY4GXv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFuwY4GXv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFuwY4GXv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFuwY4GXv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFuwY4GXv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFuwY4GXv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFuwY4GXv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFuwY4GXv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFuwY4GXv .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFuwY4GXv .mbr-text {
  color: #232323;
}
.cid-uwFuwYsfUM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwFuwYsfUM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFuwYsfUM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwFuwYsfUM .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwFuwYsfUM .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwFuwYsfUM .container {
    padding: 0 26px;
  }
}
.cid-uwFuwYsfUM .row {
  justify-content: center;
}
.cid-uwFuwYsfUM .item {
  margin-bottom: 32px;
}
.cid-uwFuwYsfUM .item a {
  display: block;
}
.cid-uwFuwYsfUM .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwFuwYsfUM .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwFuwYsfUM .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwFuwYsfUM .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-uwFuwYsfUM .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwFuwYsfUM .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwFuwYsfUM .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-uwFuwYsfUM .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwFuwYsfUM .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwFuwYsfUM .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwFuwYsfUM .item-title {
  color: #ffffff;
}
.cid-uwFuwYsfUM .mbr-date {
  color: #cacaca;
}
.cid-uwFuwYsfUM .mbr-desc {
  color: #cacaca;
}
.cid-uwFuwYR9nZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwFuwYR9nZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFuwYR9nZ .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-uwFuwYR9nZ .container {
    padding: 0 16px;
  }
}
.cid-uwFuwYR9nZ .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwFuwYR9nZ .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFuwYR9nZ .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwFuwYR9nZ .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFuwYR9nZ .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwFuwYR9nZ .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwFuwYR9nZ .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwFuwYR9nZ .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwFuwYR9nZ .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwFuwYR9nZ .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-uwFuwYR9nZ .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwFuwYR9nZ .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwFuwYR9nZ .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwFuwYR9nZ .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwFuwYR9nZ .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwFuwYR9nZ .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwFuwYR9nZ .dragArea.row .form-group .form-control:hover,
.cid-uwFuwYR9nZ .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwFuwYR9nZ .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwFuwYR9nZ .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwFuwYR9nZ .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwFuwYR9nZ .mbr-title {
  color: #ffffff;
}
.cid-uwFuwYR9nZ .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwFuwYR9nZ .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwFuwYR9nZ .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwFuwYR9nZ .list {
  color: #08323C;
}
.cid-uwFuwYR9nZ label {
  color: #08323C;
}
.cid-uwFuwYR9nZ H3 {
  color: #000000;
}
.cid-uwFuwYR9nZ P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwFuWMnprP {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFuWMnprP H1 {
  text-align: center;
}
.cid-uDmRxHI2FZ {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmRxHI2FZ .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmRxHI2FZ .video-block {
    width: 100% !important;
  }
}
.cid-uwFuWMO732 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFuWNaSW1 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwFuWNaSW1 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFuWNaSW1 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFuWNaSW1 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFuWNaSW1 .box {
  left: 20%;
}
.cid-uwFuWNaSW1 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwFuWNaSW1 .mbr-section-text,
.cid-uwFuWNaSW1 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwFuWNaSW1 .text-box {
    display: none;
  }
  .cid-uwFuWNaSW1 .mbr-section-title,
  .cid-uwFuWNaSW1 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFuWNaSW1 .box {
    display: none;
  }
  .cid-uwFuWNaSW1 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFuWNaSW1 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFuWNaSW1 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFuWNaSW1 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFuWNaSW1 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFuWNaSW1 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFuWNCM3W {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFuWNCM3W H1 {
  text-align: center;
}
.cid-uwFuWNZ1ue {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFuWOjrJi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFuWOjrJi h2 {
  text-align: left;
}
.cid-uwFuWOjrJi h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFuWOjrJi p {
  color: #767676;
  text-align: left;
}
.cid-uwFuWOjrJi .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFuWOjrJi .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFuWOjrJi .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFuWOjrJi .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFuWOjrJi .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFuWOjrJi .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFuWOjrJi .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFuWOjrJi .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFuWOjrJi .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFuWOjrJi H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwFuWOjrJi P {
  color: #ffffff;
  text-align: left;
}
.cid-uwFuWOjrJi H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwFuWOJkdq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFuWOJkdq H1 {
  color: #000000;
}
.cid-uxkQJp1fFa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkQJp1fFa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkQJp1fFa .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkQJp1fFa .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkQJp1fFa .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkQJp1fFa .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkQJp1fFa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkQJp1fFa .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkQJp1fFa .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkQJp1fFa .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkQJp1fFa .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkQJp1fFa .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-uxkQJp1fFa .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkQJp1fFa .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkQJp1fFa .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkQJp1fFa .mbr-text,
.cid-uxkQJp1fFa .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFuWPzhBw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFuWPUD4B {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFuWPUD4B H1 {
  color: #000000;
}
.cid-uxkQKeowyH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkQKeowyH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkQKeowyH .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkQKeowyH .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkQKeowyH .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkQKeowyH .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkQKeowyH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkQKeowyH .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkQKeowyH .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkQKeowyH .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkQKeowyH .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkQKeowyH .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-uxkQKeowyH .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkQKeowyH .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkQKeowyH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkQKeowyH .mbr-text,
.cid-uxkQKeowyH .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkQLexcHg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkQLexcHg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkQLexcHg .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkQLexcHg .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkQLexcHg .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkQLexcHg .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkQLexcHg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkQLexcHg .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkQLexcHg .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkQLexcHg .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkQLexcHg .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkQLexcHg .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-uxkQLexcHg .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkQLexcHg .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkQLexcHg .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkQLexcHg .mbr-text,
.cid-uxkQLexcHg .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFuWRwXc0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFuWRwXc0 H1 {
  color: #000000;
}
.cid-uwFuWRSeq1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwFuWRSeq1 h2 {
  text-align: left;
}
.cid-uwFuWRSeq1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFuWRSeq1 p {
  color: #767676;
  text-align: left;
}
.cid-uwFuWRSeq1 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFuWRSeq1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFuWRSeq1 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFuWRSeq1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFuWRSeq1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFuWRSeq1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFuWRSeq1 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwFuWRSeq1 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwFuWRSeq1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwFuWRSeq1 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwFuWRSeq1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFuWSh37w {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFuWSh37w H1 {
  color: #000000;
}
.cid-uwFuWSFr8H {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwFuWSFr8H .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFuWSFr8H .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFuWSFr8H .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFuWSFr8H .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwFuWSFr8H .box {
  right: 20%;
}
.cid-uwFuWSFr8H .text-box {
  right: 0;
}
.cid-uwFuWSFr8H .mbr-section-title,
.cid-uwFuWSFr8H .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwFuWSFr8H .text-box {
    display: none;
  }
  .cid-uwFuWSFr8H .mbr-section-title,
  .cid-uwFuWSFr8H .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFuWSFr8H .box {
    display: none;
  }
  .cid-uwFuWSFr8H .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFuWSFr8H .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFuWSFr8H .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFuWSFr8H .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFuWSFr8H .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFuWSFr8H .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFuWT4zKh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFuWTtEKw {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwFuWTtEKw h2 {
  text-align: left;
}
.cid-uwFuWTtEKw h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFuWTtEKw p {
  color: #767676;
  text-align: left;
}
.cid-uwFuWTtEKw .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFuWTtEKw .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFuWTtEKw .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFuWTtEKw .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFuWTtEKw .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFuWTtEKw .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFuWTtEKw .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFuWTtEKw .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFuWTtEKw .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFuWTtEKw .mbr-text {
  color: #232323;
}
.cid-uwFuWTTSqy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwFuWTTSqy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFuWTTSqy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwFuWTTSqy .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwFuWTTSqy .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwFuWTTSqy .container {
    padding: 0 26px;
  }
}
.cid-uwFuWTTSqy .row {
  justify-content: center;
}
.cid-uwFuWTTSqy .item {
  margin-bottom: 32px;
}
.cid-uwFuWTTSqy .item a {
  display: block;
}
.cid-uwFuWTTSqy .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwFuWTTSqy .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwFuWTTSqy .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwFuWTTSqy .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-uwFuWTTSqy .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwFuWTTSqy .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwFuWTTSqy .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-uwFuWTTSqy .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwFuWTTSqy .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwFuWTTSqy .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwFuWTTSqy .item-title {
  color: #ffffff;
}
.cid-uwFuWTTSqy .mbr-date {
  color: #cacaca;
}
.cid-uwFuWTTSqy .mbr-desc {
  color: #cacaca;
}
.cid-uwFuWUieXw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwFuWUieXw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFuWUieXw .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-uwFuWUieXw .container {
    padding: 0 16px;
  }
}
.cid-uwFuWUieXw .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwFuWUieXw .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFuWUieXw .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwFuWUieXw .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFuWUieXw .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwFuWUieXw .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwFuWUieXw .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwFuWUieXw .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwFuWUieXw .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwFuWUieXw .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-uwFuWUieXw .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwFuWUieXw .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwFuWUieXw .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwFuWUieXw .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwFuWUieXw .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwFuWUieXw .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwFuWUieXw .dragArea.row .form-group .form-control:hover,
.cid-uwFuWUieXw .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwFuWUieXw .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwFuWUieXw .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwFuWUieXw .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwFuWUieXw .mbr-title {
  color: #ffffff;
}
.cid-uwFuWUieXw .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwFuWUieXw .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwFuWUieXw .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwFuWUieXw .list {
  color: #08323C;
}
.cid-uwFuWUieXw label {
  color: #08323C;
}
.cid-uwFuWUieXw H3 {
  color: #000000;
}
.cid-uwFuWUieXw P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwFvMD5nvZ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFvMD5nvZ H1 {
  text-align: center;
}
.cid-uDmRAeO35l {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmRAeO35l .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmRAeO35l .video-block {
    width: 100% !important;
  }
}
.cid-uwFvMDwTnL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFvMDSFKk {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwFvMDSFKk .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFvMDSFKk .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFvMDSFKk .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFvMDSFKk .box {
  left: 20%;
}
.cid-uwFvMDSFKk .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwFvMDSFKk .mbr-section-text,
.cid-uwFvMDSFKk .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwFvMDSFKk .text-box {
    display: none;
  }
  .cid-uwFvMDSFKk .mbr-section-title,
  .cid-uwFvMDSFKk .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFvMDSFKk .box {
    display: none;
  }
  .cid-uwFvMDSFKk .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFvMDSFKk .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFvMDSFKk .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFvMDSFKk .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFvMDSFKk .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFvMDSFKk .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFvMEf1ci {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFvMEf1ci H1 {
  text-align: center;
}
.cid-uwFvMEAy1X {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFvMEVbFy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFvMEVbFy h2 {
  text-align: left;
}
.cid-uwFvMEVbFy h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFvMEVbFy p {
  color: #767676;
  text-align: left;
}
.cid-uwFvMEVbFy .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFvMEVbFy .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFvMEVbFy .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFvMEVbFy .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFvMEVbFy .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFvMEVbFy .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFvMEVbFy .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFvMEVbFy .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFvMEVbFy .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFvMEVbFy H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwFvMEVbFy P {
  color: #ffffff;
  text-align: left;
}
.cid-uwFvMEVbFy H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwFvMFnsWz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFvMFnsWz H1 {
  color: #000000;
}
.cid-uxkQRefLsM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkQRefLsM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkQRefLsM .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkQRefLsM .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkQRefLsM .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkQRefLsM .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkQRefLsM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkQRefLsM .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkQRefLsM .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkQRefLsM .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkQRefLsM .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkQRefLsM .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-uxkQRefLsM .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkQRefLsM .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkQRefLsM .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkQRefLsM .mbr-text,
.cid-uxkQRefLsM .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFvMGkzzx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFvMGH7pZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFvMGH7pZ H1 {
  color: #000000;
}
.cid-uxkQScCcKi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkQScCcKi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkQScCcKi .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkQScCcKi .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkQScCcKi .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkQScCcKi .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkQScCcKi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkQScCcKi .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkQScCcKi .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkQScCcKi .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkQScCcKi .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkQScCcKi .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-uxkQScCcKi .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkQScCcKi .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkQScCcKi .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkQScCcKi .mbr-text,
.cid-uxkQScCcKi .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkQTaMA8n {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkQTaMA8n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkQTaMA8n .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkQTaMA8n .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkQTaMA8n .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkQTaMA8n .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkQTaMA8n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkQTaMA8n .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkQTaMA8n .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkQTaMA8n .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkQTaMA8n .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkQTaMA8n .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-uxkQTaMA8n .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkQTaMA8n .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkQTaMA8n .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkQTaMA8n .mbr-text,
.cid-uxkQTaMA8n .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFvMIep7Z {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFvMIep7Z H1 {
  color: #000000;
}
.cid-uwFvMIBcw2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwFvMIBcw2 h2 {
  text-align: left;
}
.cid-uwFvMIBcw2 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFvMIBcw2 p {
  color: #767676;
  text-align: left;
}
.cid-uwFvMIBcw2 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFvMIBcw2 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFvMIBcw2 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFvMIBcw2 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFvMIBcw2 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFvMIBcw2 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFvMIBcw2 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwFvMIBcw2 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwFvMIBcw2 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwFvMIBcw2 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwFvMIBcw2 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFvMJ3oyH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFvMJ3oyH H1 {
  color: #000000;
}
.cid-uwFvMJrwPY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwFvMJrwPY .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFvMJrwPY .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFvMJrwPY .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFvMJrwPY .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwFvMJrwPY .box {
  right: 20%;
}
.cid-uwFvMJrwPY .text-box {
  right: 0;
}
.cid-uwFvMJrwPY .mbr-section-title,
.cid-uwFvMJrwPY .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwFvMJrwPY .text-box {
    display: none;
  }
  .cid-uwFvMJrwPY .mbr-section-title,
  .cid-uwFvMJrwPY .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFvMJrwPY .box {
    display: none;
  }
  .cid-uwFvMJrwPY .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFvMJrwPY .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFvMJrwPY .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFvMJrwPY .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFvMJrwPY .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFvMJrwPY .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFvMJQ544 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFvMKg4jW {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwFvMKg4jW h2 {
  text-align: left;
}
.cid-uwFvMKg4jW h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFvMKg4jW p {
  color: #767676;
  text-align: left;
}
.cid-uwFvMKg4jW .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFvMKg4jW .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFvMKg4jW .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFvMKg4jW .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFvMKg4jW .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFvMKg4jW .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFvMKg4jW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFvMKg4jW .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFvMKg4jW .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFvMKg4jW .mbr-text {
  color: #232323;
}
.cid-uwFvMKGEBg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwFvMKGEBg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFvMKGEBg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwFvMKGEBg .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwFvMKGEBg .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwFvMKGEBg .container {
    padding: 0 26px;
  }
}
.cid-uwFvMKGEBg .row {
  justify-content: center;
}
.cid-uwFvMKGEBg .item {
  margin-bottom: 32px;
}
.cid-uwFvMKGEBg .item a {
  display: block;
}
.cid-uwFvMKGEBg .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwFvMKGEBg .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwFvMKGEBg .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwFvMKGEBg .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-uwFvMKGEBg .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwFvMKGEBg .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwFvMKGEBg .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-uwFvMKGEBg .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwFvMKGEBg .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwFvMKGEBg .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwFvMKGEBg .item-title {
  color: #ffffff;
}
.cid-uwFvMKGEBg .mbr-date {
  color: #cacaca;
}
.cid-uwFvMKGEBg .mbr-desc {
  color: #cacaca;
}
.cid-uwFvMLb4Ak {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwFvMLb4Ak .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFvMLb4Ak .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-uwFvMLb4Ak .container {
    padding: 0 16px;
  }
}
.cid-uwFvMLb4Ak .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwFvMLb4Ak .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFvMLb4Ak .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwFvMLb4Ak .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFvMLb4Ak .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwFvMLb4Ak .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwFvMLb4Ak .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwFvMLb4Ak .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwFvMLb4Ak .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwFvMLb4Ak .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-uwFvMLb4Ak .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwFvMLb4Ak .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwFvMLb4Ak .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwFvMLb4Ak .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwFvMLb4Ak .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwFvMLb4Ak .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwFvMLb4Ak .dragArea.row .form-group .form-control:hover,
.cid-uwFvMLb4Ak .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwFvMLb4Ak .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwFvMLb4Ak .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwFvMLb4Ak .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwFvMLb4Ak .mbr-title {
  color: #ffffff;
}
.cid-uwFvMLb4Ak .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwFvMLb4Ak .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwFvMLb4Ak .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwFvMLb4Ak .list {
  color: #08323C;
}
.cid-uwFvMLb4Ak label {
  color: #08323C;
}
.cid-uwFvMLb4Ak H3 {
  color: #000000;
}
.cid-uwFvMLb4Ak P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwFyP9DIgj {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFyP9DIgj H1 {
  text-align: center;
}
.cid-uDmRCSqHz6 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmRCSqHz6 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmRCSqHz6 .video-block {
    width: 100% !important;
  }
}
.cid-uwFyPa5j0C {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFyPatj2K {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwFyPatj2K .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFyPatj2K .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFyPatj2K .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFyPatj2K .box {
  left: 20%;
}
.cid-uwFyPatj2K .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwFyPatj2K .mbr-section-text,
.cid-uwFyPatj2K .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwFyPatj2K .text-box {
    display: none;
  }
  .cid-uwFyPatj2K .mbr-section-title,
  .cid-uwFyPatj2K .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFyPatj2K .box {
    display: none;
  }
  .cid-uwFyPatj2K .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFyPatj2K .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFyPatj2K .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFyPatj2K .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFyPatj2K .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFyPatj2K .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFyPaPTsj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFyPaPTsj H1 {
  text-align: center;
}
.cid-uwFyPbbyrM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFyPbzpgT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFyPbzpgT h2 {
  text-align: left;
}
.cid-uwFyPbzpgT h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFyPbzpgT p {
  color: #767676;
  text-align: left;
}
.cid-uwFyPbzpgT .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFyPbzpgT .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFyPbzpgT .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFyPbzpgT .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFyPbzpgT .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFyPbzpgT .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFyPbzpgT .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFyPbzpgT .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFyPbzpgT .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFyPbzpgT H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwFyPbzpgT P {
  color: #ffffff;
  text-align: left;
}
.cid-uwFyPbzpgT H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwFyPc0iiD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFyPc0iiD H1 {
  color: #000000;
}
.cid-uxkRyln1sR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkRyln1sR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkRyln1sR .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkRyln1sR .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkRyln1sR .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkRyln1sR .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkRyln1sR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkRyln1sR .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkRyln1sR .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkRyln1sR .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkRyln1sR .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkRyln1sR .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-uxkRyln1sR .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkRyln1sR .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkRyln1sR .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkRyln1sR .mbr-text,
.cid-uxkRyln1sR .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFyPcZoxw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFyPdmIUp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFyPdmIUp H1 {
  color: #000000;
}
.cid-uxkRzbG6bA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkRzbG6bA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkRzbG6bA .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkRzbG6bA .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkRzbG6bA .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkRzbG6bA .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkRzbG6bA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkRzbG6bA .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkRzbG6bA .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkRzbG6bA .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkRzbG6bA .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkRzbG6bA .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-uxkRzbG6bA .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkRzbG6bA .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkRzbG6bA .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkRzbG6bA .mbr-text,
.cid-uxkRzbG6bA .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkRzW8HwW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkRzW8HwW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkRzW8HwW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkRzW8HwW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkRzW8HwW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkRzW8HwW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkRzW8HwW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkRzW8HwW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkRzW8HwW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkRzW8HwW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkRzW8HwW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkRzW8HwW .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-uxkRzW8HwW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkRzW8HwW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkRzW8HwW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkRzW8HwW .mbr-text,
.cid-uxkRzW8HwW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFyPeWWVb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFyPeWWVb H1 {
  color: #000000;
}
.cid-uwFyPfmVEV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwFyPfmVEV h2 {
  text-align: left;
}
.cid-uwFyPfmVEV h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFyPfmVEV p {
  color: #767676;
  text-align: left;
}
.cid-uwFyPfmVEV .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFyPfmVEV .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFyPfmVEV .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFyPfmVEV .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFyPfmVEV .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFyPfmVEV .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFyPfmVEV .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwFyPfmVEV .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwFyPfmVEV .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwFyPfmVEV .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwFyPfmVEV .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFyPfMgMS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFyPfMgMS H1 {
  color: #000000;
}
.cid-uwFyPg9Xtu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwFyPg9Xtu .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFyPg9Xtu .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFyPg9Xtu .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFyPg9Xtu .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwFyPg9Xtu .box {
  right: 20%;
}
.cid-uwFyPg9Xtu .text-box {
  right: 0;
}
.cid-uwFyPg9Xtu .mbr-section-title,
.cid-uwFyPg9Xtu .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwFyPg9Xtu .text-box {
    display: none;
  }
  .cid-uwFyPg9Xtu .mbr-section-title,
  .cid-uwFyPg9Xtu .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFyPg9Xtu .box {
    display: none;
  }
  .cid-uwFyPg9Xtu .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFyPg9Xtu .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFyPg9Xtu .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFyPg9Xtu .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFyPg9Xtu .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFyPg9Xtu .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFyPgCE5n {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFyPgZK1U {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwFyPgZK1U h2 {
  text-align: left;
}
.cid-uwFyPgZK1U h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFyPgZK1U p {
  color: #767676;
  text-align: left;
}
.cid-uwFyPgZK1U .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFyPgZK1U .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFyPgZK1U .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFyPgZK1U .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFyPgZK1U .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFyPgZK1U .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFyPgZK1U .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFyPgZK1U .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFyPgZK1U .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFyPgZK1U .mbr-text {
  color: #232323;
}
.cid-uwFyPhvkNa {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwFyPhvkNa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFyPhvkNa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwFyPhvkNa .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwFyPhvkNa .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwFyPhvkNa .container {
    padding: 0 26px;
  }
}
.cid-uwFyPhvkNa .row {
  justify-content: center;
}
.cid-uwFyPhvkNa .item {
  margin-bottom: 32px;
}
.cid-uwFyPhvkNa .item a {
  display: block;
}
.cid-uwFyPhvkNa .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwFyPhvkNa .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwFyPhvkNa .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwFyPhvkNa .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-uwFyPhvkNa .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwFyPhvkNa .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwFyPhvkNa .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-uwFyPhvkNa .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwFyPhvkNa .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwFyPhvkNa .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwFyPhvkNa .item-title {
  color: #ffffff;
}
.cid-uwFyPhvkNa .mbr-date {
  color: #cacaca;
}
.cid-uwFyPhvkNa .mbr-desc {
  color: #cacaca;
}
.cid-uwFyPhVkmz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwFyPhVkmz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFyPhVkmz .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-uwFyPhVkmz .container {
    padding: 0 16px;
  }
}
.cid-uwFyPhVkmz .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwFyPhVkmz .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFyPhVkmz .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwFyPhVkmz .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFyPhVkmz .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwFyPhVkmz .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwFyPhVkmz .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwFyPhVkmz .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwFyPhVkmz .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwFyPhVkmz .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-uwFyPhVkmz .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwFyPhVkmz .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwFyPhVkmz .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwFyPhVkmz .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwFyPhVkmz .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwFyPhVkmz .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwFyPhVkmz .dragArea.row .form-group .form-control:hover,
.cid-uwFyPhVkmz .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwFyPhVkmz .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwFyPhVkmz .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwFyPhVkmz .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwFyPhVkmz .mbr-title {
  color: #ffffff;
}
.cid-uwFyPhVkmz .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwFyPhVkmz .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwFyPhVkmz .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwFyPhVkmz .list {
  color: #08323C;
}
.cid-uwFyPhVkmz label {
  color: #08323C;
}
.cid-uwFyPhVkmz H3 {
  color: #000000;
}
.cid-uwFyPhVkmz P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwFzez4ST3 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFzez4ST3 H1 {
  text-align: center;
}
.cid-uDmRFycl1s {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmRFycl1s .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmRFycl1s .video-block {
    width: 100% !important;
  }
}
.cid-uwFzezzFpM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFzezUZlh {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwFzezUZlh .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFzezUZlh .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFzezUZlh .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFzezUZlh .box {
  left: 20%;
}
.cid-uwFzezUZlh .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwFzezUZlh .mbr-section-text,
.cid-uwFzezUZlh .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwFzezUZlh .text-box {
    display: none;
  }
  .cid-uwFzezUZlh .mbr-section-title,
  .cid-uwFzezUZlh .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFzezUZlh .box {
    display: none;
  }
  .cid-uwFzezUZlh .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFzezUZlh .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFzezUZlh .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFzezUZlh .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFzezUZlh .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFzezUZlh .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFzeAglzp {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFzeAglzp H1 {
  text-align: center;
}
.cid-uwFzeAE3iv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFzeAY8PU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFzeAY8PU h2 {
  text-align: left;
}
.cid-uwFzeAY8PU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFzeAY8PU p {
  color: #767676;
  text-align: left;
}
.cid-uwFzeAY8PU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFzeAY8PU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFzeAY8PU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFzeAY8PU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFzeAY8PU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFzeAY8PU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFzeAY8PU .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFzeAY8PU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFzeAY8PU .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFzeAY8PU H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwFzeAY8PU P {
  color: #ffffff;
  text-align: left;
}
.cid-uwFzeAY8PU H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwFzeBoTx1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFzeBoTx1 H1 {
  color: #000000;
}
.cid-uxkRFLs4Ez {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkRFLs4Ez .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkRFLs4Ez .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkRFLs4Ez .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkRFLs4Ez .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkRFLs4Ez .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkRFLs4Ez .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkRFLs4Ez .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkRFLs4Ez .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkRFLs4Ez .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkRFLs4Ez .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkRFLs4Ez .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-uxkRFLs4Ez .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkRFLs4Ez .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkRFLs4Ez .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkRFLs4Ez .mbr-text,
.cid-uxkRFLs4Ez .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFzeCjb04 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFzeCJBvO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFzeCJBvO H1 {
  color: #000000;
}
.cid-uxkRGCez1Z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkRGCez1Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkRGCez1Z .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkRGCez1Z .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkRGCez1Z .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkRGCez1Z .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkRGCez1Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkRGCez1Z .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkRGCez1Z .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkRGCez1Z .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkRGCez1Z .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkRGCez1Z .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-uxkRGCez1Z .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkRGCez1Z .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkRGCez1Z .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkRGCez1Z .mbr-text,
.cid-uxkRGCez1Z .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkRHnf58b {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkRHnf58b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkRHnf58b .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkRHnf58b .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkRHnf58b .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkRHnf58b .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkRHnf58b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkRHnf58b .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkRHnf58b .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkRHnf58b .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkRHnf58b .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkRHnf58b .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-uxkRHnf58b .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkRHnf58b .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkRHnf58b .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkRHnf58b .mbr-text,
.cid-uxkRHnf58b .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFzeEdu9S {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFzeEdu9S H1 {
  color: #000000;
}
.cid-uwFzeEDIpp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwFzeEDIpp h2 {
  text-align: left;
}
.cid-uwFzeEDIpp h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFzeEDIpp p {
  color: #767676;
  text-align: left;
}
.cid-uwFzeEDIpp .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFzeEDIpp .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFzeEDIpp .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFzeEDIpp .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFzeEDIpp .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFzeEDIpp .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFzeEDIpp .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwFzeEDIpp .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwFzeEDIpp .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwFzeEDIpp .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwFzeEDIpp .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFzeF5OUQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFzeF5OUQ H1 {
  color: #000000;
}
.cid-uwFzeFwXVd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwFzeFwXVd .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFzeFwXVd .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFzeFwXVd .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFzeFwXVd .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwFzeFwXVd .box {
  right: 20%;
}
.cid-uwFzeFwXVd .text-box {
  right: 0;
}
.cid-uwFzeFwXVd .mbr-section-title,
.cid-uwFzeFwXVd .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwFzeFwXVd .text-box {
    display: none;
  }
  .cid-uwFzeFwXVd .mbr-section-title,
  .cid-uwFzeFwXVd .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFzeFwXVd .box {
    display: none;
  }
  .cid-uwFzeFwXVd .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFzeFwXVd .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFzeFwXVd .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFzeFwXVd .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFzeFwXVd .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFzeFwXVd .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFzeFYdlZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFzeGsOH1 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwFzeGsOH1 h2 {
  text-align: left;
}
.cid-uwFzeGsOH1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFzeGsOH1 p {
  color: #767676;
  text-align: left;
}
.cid-uwFzeGsOH1 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFzeGsOH1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFzeGsOH1 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFzeGsOH1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFzeGsOH1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFzeGsOH1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFzeGsOH1 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFzeGsOH1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFzeGsOH1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFzeGsOH1 .mbr-text {
  color: #232323;
}
.cid-uwFzeGUubh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwFzeGUubh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFzeGUubh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwFzeGUubh .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwFzeGUubh .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwFzeGUubh .container {
    padding: 0 26px;
  }
}
.cid-uwFzeGUubh .row {
  justify-content: center;
}
.cid-uwFzeGUubh .item {
  margin-bottom: 32px;
}
.cid-uwFzeGUubh .item a {
  display: block;
}
.cid-uwFzeGUubh .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwFzeGUubh .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwFzeGUubh .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwFzeGUubh .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-uwFzeGUubh .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwFzeGUubh .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwFzeGUubh .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-uwFzeGUubh .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwFzeGUubh .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwFzeGUubh .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwFzeGUubh .item-title {
  color: #ffffff;
}
.cid-uwFzeGUubh .mbr-date {
  color: #cacaca;
}
.cid-uwFzeGUubh .mbr-desc {
  color: #cacaca;
}
.cid-uwFzeHmgh6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwFzeHmgh6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFzeHmgh6 .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-uwFzeHmgh6 .container {
    padding: 0 16px;
  }
}
.cid-uwFzeHmgh6 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwFzeHmgh6 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFzeHmgh6 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwFzeHmgh6 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFzeHmgh6 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwFzeHmgh6 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwFzeHmgh6 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwFzeHmgh6 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwFzeHmgh6 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwFzeHmgh6 .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-uwFzeHmgh6 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwFzeHmgh6 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwFzeHmgh6 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwFzeHmgh6 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwFzeHmgh6 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwFzeHmgh6 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwFzeHmgh6 .dragArea.row .form-group .form-control:hover,
.cid-uwFzeHmgh6 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwFzeHmgh6 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwFzeHmgh6 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwFzeHmgh6 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwFzeHmgh6 .mbr-title {
  color: #ffffff;
}
.cid-uwFzeHmgh6 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwFzeHmgh6 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwFzeHmgh6 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwFzeHmgh6 .list {
  color: #08323C;
}
.cid-uwFzeHmgh6 label {
  color: #08323C;
}
.cid-uwFzeHmgh6 H3 {
  color: #000000;
}
.cid-uwFzeHmgh6 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwFzGL6Lvm {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFzGL6Lvm H1 {
  text-align: center;
}
.cid-uDmRIioRCF {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmRIioRCF .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmRIioRCF .video-block {
    width: 100% !important;
  }
}
.cid-uwFzGLl7Qz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFzGLwiXe {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwFzGLwiXe .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFzGLwiXe .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFzGLwiXe .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFzGLwiXe .box {
  left: 20%;
}
.cid-uwFzGLwiXe .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwFzGLwiXe .mbr-section-text,
.cid-uwFzGLwiXe .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwFzGLwiXe .text-box {
    display: none;
  }
  .cid-uwFzGLwiXe .mbr-section-title,
  .cid-uwFzGLwiXe .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFzGLwiXe .box {
    display: none;
  }
  .cid-uwFzGLwiXe .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFzGLwiXe .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFzGLwiXe .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFzGLwiXe .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFzGLwiXe .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFzGLwiXe .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFzGLJBSd {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFzGLJBSd H1 {
  text-align: center;
}
.cid-uwFzGLRkSd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFzGM0Aec {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFzGM0Aec h2 {
  text-align: left;
}
.cid-uwFzGM0Aec h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFzGM0Aec p {
  color: #767676;
  text-align: left;
}
.cid-uwFzGM0Aec .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFzGM0Aec .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFzGM0Aec .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFzGM0Aec .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFzGM0Aec .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFzGM0Aec .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFzGM0Aec .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFzGM0Aec .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFzGM0Aec .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFzGM0Aec H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwFzGM0Aec P {
  color: #ffffff;
  text-align: left;
}
.cid-uwFzGM0Aec H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwFzGMceXA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFzGMceXA H1 {
  color: #000000;
}
.cid-uxkRNYIvoY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkRNYIvoY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkRNYIvoY .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkRNYIvoY .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkRNYIvoY .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkRNYIvoY .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkRNYIvoY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkRNYIvoY .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkRNYIvoY .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkRNYIvoY .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkRNYIvoY .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkRNYIvoY .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-uxkRNYIvoY .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkRNYIvoY .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkRNYIvoY .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkRNYIvoY .mbr-text,
.cid-uxkRNYIvoY .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFzGMPF8S {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFzGN1J6i {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFzGN1J6i H1 {
  color: #000000;
}
.cid-uxkROQk76B {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkROQk76B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkROQk76B .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkROQk76B .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkROQk76B .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkROQk76B .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkROQk76B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkROQk76B .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkROQk76B .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkROQk76B .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkROQk76B .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkROQk76B .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-uxkROQk76B .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkROQk76B .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkROQk76B .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkROQk76B .mbr-text,
.cid-uxkROQk76B .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkRPE6ORj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkRPE6ORj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkRPE6ORj .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkRPE6ORj .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkRPE6ORj .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkRPE6ORj .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkRPE6ORj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkRPE6ORj .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkRPE6ORj .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkRPE6ORj .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkRPE6ORj .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkRPE6ORj .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-uxkRPE6ORj .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkRPE6ORj .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkRPE6ORj .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkRPE6ORj .mbr-text,
.cid-uxkRPE6ORj .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFzGO0AEY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFzGO0AEY H1 {
  color: #000000;
}
.cid-uwFzGOdgdF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwFzGOdgdF h2 {
  text-align: left;
}
.cid-uwFzGOdgdF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFzGOdgdF p {
  color: #767676;
  text-align: left;
}
.cid-uwFzGOdgdF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFzGOdgdF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFzGOdgdF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFzGOdgdF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFzGOdgdF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFzGOdgdF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFzGOdgdF .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwFzGOdgdF .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwFzGOdgdF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwFzGOdgdF .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwFzGOdgdF .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFzGOumwP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFzGOumwP H1 {
  color: #000000;
}
.cid-uwFzGOIf1M {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwFzGOIf1M .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFzGOIf1M .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFzGOIf1M .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFzGOIf1M .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwFzGOIf1M .box {
  right: 20%;
}
.cid-uwFzGOIf1M .text-box {
  right: 0;
}
.cid-uwFzGOIf1M .mbr-section-title,
.cid-uwFzGOIf1M .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwFzGOIf1M .text-box {
    display: none;
  }
  .cid-uwFzGOIf1M .mbr-section-title,
  .cid-uwFzGOIf1M .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFzGOIf1M .box {
    display: none;
  }
  .cid-uwFzGOIf1M .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFzGOIf1M .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFzGOIf1M .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFzGOIf1M .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFzGOIf1M .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFzGOIf1M .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFzGOWj9S {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFzGPbFSd {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwFzGPbFSd h2 {
  text-align: left;
}
.cid-uwFzGPbFSd h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFzGPbFSd p {
  color: #767676;
  text-align: left;
}
.cid-uwFzGPbFSd .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFzGPbFSd .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFzGPbFSd .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFzGPbFSd .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFzGPbFSd .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFzGPbFSd .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFzGPbFSd .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFzGPbFSd .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFzGPbFSd .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFzGPbFSd .mbr-text {
  color: #232323;
}
.cid-uwFzGPtl3A {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwFzGPtl3A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFzGPtl3A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwFzGPtl3A .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwFzGPtl3A .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwFzGPtl3A .container {
    padding: 0 26px;
  }
}
.cid-uwFzGPtl3A .row {
  justify-content: center;
}
.cid-uwFzGPtl3A .item {
  margin-bottom: 32px;
}
.cid-uwFzGPtl3A .item a {
  display: block;
}
.cid-uwFzGPtl3A .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwFzGPtl3A .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwFzGPtl3A .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwFzGPtl3A .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-uwFzGPtl3A .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwFzGPtl3A .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwFzGPtl3A .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-uwFzGPtl3A .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwFzGPtl3A .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwFzGPtl3A .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwFzGPtl3A .item-title {
  color: #ffffff;
}
.cid-uwFzGPtl3A .mbr-date {
  color: #cacaca;
}
.cid-uwFzGPtl3A .mbr-desc {
  color: #cacaca;
}
.cid-uwFzGPJ338 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwFzGPJ338 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFzGPJ338 .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-uwFzGPJ338 .container {
    padding: 0 16px;
  }
}
.cid-uwFzGPJ338 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwFzGPJ338 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFzGPJ338 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwFzGPJ338 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFzGPJ338 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwFzGPJ338 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwFzGPJ338 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwFzGPJ338 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwFzGPJ338 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwFzGPJ338 .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-uwFzGPJ338 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwFzGPJ338 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwFzGPJ338 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwFzGPJ338 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwFzGPJ338 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwFzGPJ338 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwFzGPJ338 .dragArea.row .form-group .form-control:hover,
.cid-uwFzGPJ338 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwFzGPJ338 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwFzGPJ338 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwFzGPJ338 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwFzGPJ338 .mbr-title {
  color: #ffffff;
}
.cid-uwFzGPJ338 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwFzGPJ338 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwFzGPJ338 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwFzGPJ338 .list {
  color: #08323C;
}
.cid-uwFzGPJ338 label {
  color: #08323C;
}
.cid-uwFzGPJ338 H3 {
  color: #000000;
}
.cid-uwFzGPJ338 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwFzXWxCEs {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFzXWxCEs H1 {
  text-align: center;
}
.cid-uDmRKVxnQp {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmRKVxnQp .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmRKVxnQp .video-block {
    width: 100% !important;
  }
}
.cid-uwFzXWNG3x {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFzXWXDTh {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwFzXWXDTh .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFzXWXDTh .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFzXWXDTh .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFzXWXDTh .box {
  left: 20%;
}
.cid-uwFzXWXDTh .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwFzXWXDTh .mbr-section-text,
.cid-uwFzXWXDTh .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwFzXWXDTh .text-box {
    display: none;
  }
  .cid-uwFzXWXDTh .mbr-section-title,
  .cid-uwFzXWXDTh .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFzXWXDTh .box {
    display: none;
  }
  .cid-uwFzXWXDTh .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFzXWXDTh .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFzXWXDTh .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFzXWXDTh .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFzXWXDTh .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFzXWXDTh .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFzXX6FTo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFzXX6FTo H1 {
  text-align: center;
}
.cid-uwFzXXeuby {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFzXXmnwA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFzXXmnwA h2 {
  text-align: left;
}
.cid-uwFzXXmnwA h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFzXXmnwA p {
  color: #767676;
  text-align: left;
}
.cid-uwFzXXmnwA .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFzXXmnwA .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFzXXmnwA .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFzXXmnwA .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFzXXmnwA .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFzXXmnwA .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFzXXmnwA .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFzXXmnwA .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFzXXmnwA .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFzXXmnwA H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwFzXXmnwA P {
  color: #ffffff;
  text-align: left;
}
.cid-uwFzXXmnwA H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwFzXXBD9J {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFzXXBD9J H1 {
  color: #000000;
}
.cid-uxkRXO1Inr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkRXO1Inr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkRXO1Inr .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkRXO1Inr .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkRXO1Inr .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkRXO1Inr .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkRXO1Inr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkRXO1Inr .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkRXO1Inr .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkRXO1Inr .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkRXO1Inr .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkRXO1Inr .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-uxkRXO1Inr .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkRXO1Inr .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkRXO1Inr .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkRXO1Inr .mbr-text,
.cid-uxkRXO1Inr .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFzXY6t1j {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFzXYfneQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFzXYfneQ H1 {
  color: #000000;
}
.cid-uxkRYAEXG5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkRYAEXG5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkRYAEXG5 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkRYAEXG5 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkRYAEXG5 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkRYAEXG5 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkRYAEXG5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkRYAEXG5 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkRYAEXG5 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkRYAEXG5 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkRYAEXG5 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkRYAEXG5 .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-uxkRYAEXG5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkRYAEXG5 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkRYAEXG5 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkRYAEXG5 .mbr-text,
.cid-uxkRYAEXG5 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkRZplhOK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkRZplhOK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkRZplhOK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkRZplhOK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkRZplhOK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkRZplhOK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkRZplhOK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkRZplhOK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkRZplhOK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkRZplhOK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkRZplhOK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkRZplhOK .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-uxkRZplhOK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkRZplhOK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkRZplhOK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkRZplhOK .mbr-text,
.cid-uxkRZplhOK .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFzXZb5jT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFzXZb5jT H1 {
  color: #000000;
}
.cid-uwFzXZpjAF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwFzXZpjAF h2 {
  text-align: left;
}
.cid-uwFzXZpjAF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFzXZpjAF p {
  color: #767676;
  text-align: left;
}
.cid-uwFzXZpjAF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFzXZpjAF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFzXZpjAF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFzXZpjAF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFzXZpjAF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFzXZpjAF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFzXZpjAF .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwFzXZpjAF .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwFzXZpjAF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwFzXZpjAF .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwFzXZpjAF .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFzXZCZ1q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFzXZCZ1q H1 {
  color: #000000;
}
.cid-uwFzXZOv1g {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwFzXZOv1g .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFzXZOv1g .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFzXZOv1g .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFzXZOv1g .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwFzXZOv1g .box {
  right: 20%;
}
.cid-uwFzXZOv1g .text-box {
  right: 0;
}
.cid-uwFzXZOv1g .mbr-section-title,
.cid-uwFzXZOv1g .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwFzXZOv1g .text-box {
    display: none;
  }
  .cid-uwFzXZOv1g .mbr-section-title,
  .cid-uwFzXZOv1g .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFzXZOv1g .box {
    display: none;
  }
  .cid-uwFzXZOv1g .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFzXZOv1g .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFzXZOv1g .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFzXZOv1g .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFzXZOv1g .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFzXZOv1g .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFzY023Q7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFzY0h0z3 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwFzY0h0z3 h2 {
  text-align: left;
}
.cid-uwFzY0h0z3 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFzY0h0z3 p {
  color: #767676;
  text-align: left;
}
.cid-uwFzY0h0z3 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFzY0h0z3 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFzY0h0z3 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFzY0h0z3 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFzY0h0z3 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFzY0h0z3 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFzY0h0z3 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFzY0h0z3 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFzY0h0z3 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFzY0h0z3 .mbr-text {
  color: #232323;
}
.cid-uwFzY0v0qB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwFzY0v0qB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFzY0v0qB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwFzY0v0qB .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwFzY0v0qB .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwFzY0v0qB .container {
    padding: 0 26px;
  }
}
.cid-uwFzY0v0qB .row {
  justify-content: center;
}
.cid-uwFzY0v0qB .item {
  margin-bottom: 32px;
}
.cid-uwFzY0v0qB .item a {
  display: block;
}
.cid-uwFzY0v0qB .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwFzY0v0qB .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwFzY0v0qB .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwFzY0v0qB .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-uwFzY0v0qB .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwFzY0v0qB .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwFzY0v0qB .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-uwFzY0v0qB .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwFzY0v0qB .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwFzY0v0qB .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwFzY0v0qB .item-title {
  color: #ffffff;
}
.cid-uwFzY0v0qB .mbr-date {
  color: #cacaca;
}
.cid-uwFzY0v0qB .mbr-desc {
  color: #cacaca;
}
.cid-uwFzY0IOce {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwFzY0IOce .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFzY0IOce .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-uwFzY0IOce .container {
    padding: 0 16px;
  }
}
.cid-uwFzY0IOce .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwFzY0IOce .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFzY0IOce .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwFzY0IOce .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFzY0IOce .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwFzY0IOce .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwFzY0IOce .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwFzY0IOce .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwFzY0IOce .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwFzY0IOce .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-uwFzY0IOce .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwFzY0IOce .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwFzY0IOce .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwFzY0IOce .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwFzY0IOce .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwFzY0IOce .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwFzY0IOce .dragArea.row .form-group .form-control:hover,
.cid-uwFzY0IOce .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwFzY0IOce .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwFzY0IOce .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwFzY0IOce .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwFzY0IOce .mbr-title {
  color: #ffffff;
}
.cid-uwFzY0IOce .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwFzY0IOce .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwFzY0IOce .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwFzY0IOce .list {
  color: #08323C;
}
.cid-uwFzY0IOce label {
  color: #08323C;
}
.cid-uwFzY0IOce H3 {
  color: #000000;
}
.cid-uwFzY0IOce P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwFAfbwVZh {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFAfbwVZh H1 {
  text-align: center;
}
.cid-uDmRNLHYMB {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmRNLHYMB .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmRNLHYMB .video-block {
    width: 100% !important;
  }
}
.cid-uwFAfbKZDa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFAfbTRyE {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwFAfbTRyE .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFAfbTRyE .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFAfbTRyE .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFAfbTRyE .box {
  left: 20%;
}
.cid-uwFAfbTRyE .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwFAfbTRyE .mbr-section-text,
.cid-uwFAfbTRyE .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwFAfbTRyE .text-box {
    display: none;
  }
  .cid-uwFAfbTRyE .mbr-section-title,
  .cid-uwFAfbTRyE .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFAfbTRyE .box {
    display: none;
  }
  .cid-uwFAfbTRyE .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFAfbTRyE .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFAfbTRyE .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFAfbTRyE .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFAfbTRyE .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFAfbTRyE .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFAfc230R {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFAfc230R H1 {
  text-align: center;
}
.cid-uwFAfcb49A {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFAfcmkD1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFAfcmkD1 h2 {
  text-align: left;
}
.cid-uwFAfcmkD1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFAfcmkD1 p {
  color: #767676;
  text-align: left;
}
.cid-uwFAfcmkD1 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFAfcmkD1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFAfcmkD1 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFAfcmkD1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFAfcmkD1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFAfcmkD1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFAfcmkD1 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFAfcmkD1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFAfcmkD1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFAfcmkD1 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwFAfcmkD1 P {
  color: #ffffff;
  text-align: left;
}
.cid-uwFAfcmkD1 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwFAfcCQKs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFAfcCQKs H1 {
  color: #000000;
}
.cid-uxkS5u281v {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkS5u281v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkS5u281v .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkS5u281v .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkS5u281v .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkS5u281v .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkS5u281v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkS5u281v .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkS5u281v .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkS5u281v .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkS5u281v .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkS5u281v .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-uxkS5u281v .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkS5u281v .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkS5u281v .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkS5u281v .mbr-text,
.cid-uxkS5u281v .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFAfd4j1B {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFAfdjagt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFAfdjagt H1 {
  color: #000000;
}
.cid-uxkS6tguWP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkS6tguWP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkS6tguWP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkS6tguWP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkS6tguWP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkS6tguWP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkS6tguWP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkS6tguWP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkS6tguWP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkS6tguWP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkS6tguWP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkS6tguWP .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-uxkS6tguWP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkS6tguWP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkS6tguWP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkS6tguWP .mbr-text,
.cid-uxkS6tguWP .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkS7nkvE6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkS7nkvE6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkS7nkvE6 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkS7nkvE6 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkS7nkvE6 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkS7nkvE6 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkS7nkvE6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkS7nkvE6 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkS7nkvE6 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkS7nkvE6 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkS7nkvE6 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkS7nkvE6 .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-uxkS7nkvE6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkS7nkvE6 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkS7nkvE6 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkS7nkvE6 .mbr-text,
.cid-uxkS7nkvE6 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFAfecoA7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFAfecoA7 H1 {
  color: #000000;
}
.cid-uwFAfend1V {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwFAfend1V h2 {
  text-align: left;
}
.cid-uwFAfend1V h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFAfend1V p {
  color: #767676;
  text-align: left;
}
.cid-uwFAfend1V .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFAfend1V .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFAfend1V .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFAfend1V .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFAfend1V .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFAfend1V .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFAfend1V .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwFAfend1V .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwFAfend1V .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwFAfend1V .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwFAfend1V .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFAfeAPWA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFAfeAPWA H1 {
  color: #000000;
}
.cid-uwFAfeNQJ8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwFAfeNQJ8 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFAfeNQJ8 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFAfeNQJ8 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFAfeNQJ8 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwFAfeNQJ8 .box {
  right: 20%;
}
.cid-uwFAfeNQJ8 .text-box {
  right: 0;
}
.cid-uwFAfeNQJ8 .mbr-section-title,
.cid-uwFAfeNQJ8 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwFAfeNQJ8 .text-box {
    display: none;
  }
  .cid-uwFAfeNQJ8 .mbr-section-title,
  .cid-uwFAfeNQJ8 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFAfeNQJ8 .box {
    display: none;
  }
  .cid-uwFAfeNQJ8 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFAfeNQJ8 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFAfeNQJ8 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFAfeNQJ8 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFAfeNQJ8 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFAfeNQJ8 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFAff1FWd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFAffcwWC {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwFAffcwWC h2 {
  text-align: left;
}
.cid-uwFAffcwWC h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFAffcwWC p {
  color: #767676;
  text-align: left;
}
.cid-uwFAffcwWC .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFAffcwWC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFAffcwWC .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFAffcwWC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFAffcwWC .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFAffcwWC .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFAffcwWC .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFAffcwWC .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFAffcwWC .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFAffcwWC .mbr-text {
  color: #232323;
}
.cid-uwFAfft1h2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwFAfft1h2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFAfft1h2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwFAfft1h2 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwFAfft1h2 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwFAfft1h2 .container {
    padding: 0 26px;
  }
}
.cid-uwFAfft1h2 .row {
  justify-content: center;
}
.cid-uwFAfft1h2 .item {
  margin-bottom: 32px;
}
.cid-uwFAfft1h2 .item a {
  display: block;
}
.cid-uwFAfft1h2 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwFAfft1h2 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwFAfft1h2 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwFAfft1h2 .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-uwFAfft1h2 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwFAfft1h2 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwFAfft1h2 .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-uwFAfft1h2 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwFAfft1h2 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwFAfft1h2 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwFAfft1h2 .item-title {
  color: #ffffff;
}
.cid-uwFAfft1h2 .mbr-date {
  color: #cacaca;
}
.cid-uwFAfft1h2 .mbr-desc {
  color: #cacaca;
}
.cid-uwFAffLnK6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwFAffLnK6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFAffLnK6 .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-uwFAffLnK6 .container {
    padding: 0 16px;
  }
}
.cid-uwFAffLnK6 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwFAffLnK6 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFAffLnK6 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwFAffLnK6 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFAffLnK6 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwFAffLnK6 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwFAffLnK6 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwFAffLnK6 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwFAffLnK6 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwFAffLnK6 .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-uwFAffLnK6 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwFAffLnK6 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwFAffLnK6 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwFAffLnK6 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwFAffLnK6 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwFAffLnK6 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwFAffLnK6 .dragArea.row .form-group .form-control:hover,
.cid-uwFAffLnK6 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwFAffLnK6 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwFAffLnK6 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwFAffLnK6 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwFAffLnK6 .mbr-title {
  color: #ffffff;
}
.cid-uwFAffLnK6 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwFAffLnK6 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwFAffLnK6 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwFAffLnK6 .list {
  color: #08323C;
}
.cid-uwFAffLnK6 label {
  color: #08323C;
}
.cid-uwFAffLnK6 H3 {
  color: #000000;
}
.cid-uwFAffLnK6 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwFAB6Xik1 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFAB6Xik1 H1 {
  text-align: center;
}
.cid-uDmRQnnLxX {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmRQnnLxX .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmRQnnLxX .video-block {
    width: 100% !important;
  }
}
.cid-uwFAB7dr4z {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFAB7oPOr {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwFAB7oPOr .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFAB7oPOr .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFAB7oPOr .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFAB7oPOr .box {
  left: 20%;
}
.cid-uwFAB7oPOr .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwFAB7oPOr .mbr-section-text,
.cid-uwFAB7oPOr .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwFAB7oPOr .text-box {
    display: none;
  }
  .cid-uwFAB7oPOr .mbr-section-title,
  .cid-uwFAB7oPOr .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFAB7oPOr .box {
    display: none;
  }
  .cid-uwFAB7oPOr .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFAB7oPOr .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFAB7oPOr .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFAB7oPOr .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFAB7oPOr .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFAB7oPOr .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFAB7yhYF {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFAB7yhYF H1 {
  text-align: center;
}
.cid-uwFAB7H84F {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFAB7SyGM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFAB7SyGM h2 {
  text-align: left;
}
.cid-uwFAB7SyGM h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFAB7SyGM p {
  color: #767676;
  text-align: left;
}
.cid-uwFAB7SyGM .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFAB7SyGM .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFAB7SyGM .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFAB7SyGM .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFAB7SyGM .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFAB7SyGM .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFAB7SyGM .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFAB7SyGM .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFAB7SyGM .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFAB7SyGM H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwFAB7SyGM P {
  color: #ffffff;
  text-align: left;
}
.cid-uwFAB7SyGM H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwFAB87nis {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFAB87nis H1 {
  color: #000000;
}
.cid-uxkSd0hmEh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkSd0hmEh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkSd0hmEh .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkSd0hmEh .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkSd0hmEh .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkSd0hmEh .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkSd0hmEh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkSd0hmEh .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkSd0hmEh .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkSd0hmEh .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkSd0hmEh .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkSd0hmEh .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-uxkSd0hmEh .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkSd0hmEh .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkSd0hmEh .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkSd0hmEh .mbr-text,
.cid-uxkSd0hmEh .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFAB8Cy0G {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFAB8R2QW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFAB8R2QW H1 {
  color: #000000;
}
.cid-uxkSdVWotl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkSdVWotl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkSdVWotl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkSdVWotl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkSdVWotl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkSdVWotl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkSdVWotl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkSdVWotl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkSdVWotl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkSdVWotl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkSdVWotl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkSdVWotl .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-uxkSdVWotl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkSdVWotl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkSdVWotl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkSdVWotl .mbr-text,
.cid-uxkSdVWotl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkSePIC6I {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkSePIC6I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkSePIC6I .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkSePIC6I .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkSePIC6I .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkSePIC6I .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkSePIC6I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkSePIC6I .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkSePIC6I .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkSePIC6I .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkSePIC6I .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkSePIC6I .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-uxkSePIC6I .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkSePIC6I .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkSePIC6I .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkSePIC6I .mbr-text,
.cid-uxkSePIC6I .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFAB9NsD7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFAB9NsD7 H1 {
  color: #000000;
}
.cid-uwFABa3tfI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwFABa3tfI h2 {
  text-align: left;
}
.cid-uwFABa3tfI h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFABa3tfI p {
  color: #767676;
  text-align: left;
}
.cid-uwFABa3tfI .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFABa3tfI .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFABa3tfI .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFABa3tfI .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFABa3tfI .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFABa3tfI .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFABa3tfI .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwFABa3tfI .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwFABa3tfI .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwFABa3tfI .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwFABa3tfI .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFABalkSx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFABalkSx H1 {
  color: #000000;
}
.cid-uwFABazKie {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwFABazKie .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFABazKie .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFABazKie .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFABazKie .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwFABazKie .box {
  right: 20%;
}
.cid-uwFABazKie .text-box {
  right: 0;
}
.cid-uwFABazKie .mbr-section-title,
.cid-uwFABazKie .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwFABazKie .text-box {
    display: none;
  }
  .cid-uwFABazKie .mbr-section-title,
  .cid-uwFABazKie .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFABazKie .box {
    display: none;
  }
  .cid-uwFABazKie .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFABazKie .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFABazKie .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFABazKie .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFABazKie .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFABazKie .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFABaQMKm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFABb7Km0 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwFABb7Km0 h2 {
  text-align: left;
}
.cid-uwFABb7Km0 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFABb7Km0 p {
  color: #767676;
  text-align: left;
}
.cid-uwFABb7Km0 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFABb7Km0 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFABb7Km0 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFABb7Km0 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFABb7Km0 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFABb7Km0 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFABb7Km0 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFABb7Km0 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFABb7Km0 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFABb7Km0 .mbr-text {
  color: #232323;
}
.cid-uwFABbmJCV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwFABbmJCV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFABbmJCV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwFABbmJCV .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwFABbmJCV .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwFABbmJCV .container {
    padding: 0 26px;
  }
}
.cid-uwFABbmJCV .row {
  justify-content: center;
}
.cid-uwFABbmJCV .item {
  margin-bottom: 32px;
}
.cid-uwFABbmJCV .item a {
  display: block;
}
.cid-uwFABbmJCV .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwFABbmJCV .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwFABbmJCV .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwFABbmJCV .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-uwFABbmJCV .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwFABbmJCV .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwFABbmJCV .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-uwFABbmJCV .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwFABbmJCV .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwFABbmJCV .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwFABbmJCV .item-title {
  color: #ffffff;
}
.cid-uwFABbmJCV .mbr-date {
  color: #cacaca;
}
.cid-uwFABbmJCV .mbr-desc {
  color: #cacaca;
}
.cid-uwFABbCsp3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwFABbCsp3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFABbCsp3 .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-uwFABbCsp3 .container {
    padding: 0 16px;
  }
}
.cid-uwFABbCsp3 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwFABbCsp3 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFABbCsp3 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwFABbCsp3 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFABbCsp3 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwFABbCsp3 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwFABbCsp3 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwFABbCsp3 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwFABbCsp3 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwFABbCsp3 .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-uwFABbCsp3 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwFABbCsp3 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwFABbCsp3 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwFABbCsp3 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwFABbCsp3 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwFABbCsp3 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwFABbCsp3 .dragArea.row .form-group .form-control:hover,
.cid-uwFABbCsp3 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwFABbCsp3 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwFABbCsp3 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwFABbCsp3 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwFABbCsp3 .mbr-title {
  color: #ffffff;
}
.cid-uwFABbCsp3 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwFABbCsp3 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwFABbCsp3 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwFABbCsp3 .list {
  color: #08323C;
}
.cid-uwFABbCsp3 label {
  color: #08323C;
}
.cid-uwFABbCsp3 H3 {
  color: #000000;
}
.cid-uwFABbCsp3 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwFAWyEnLU {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFAWyEnLU H1 {
  text-align: center;
}
.cid-uDmRT7aAgR {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmRT7aAgR .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmRT7aAgR .video-block {
    width: 100% !important;
  }
}
.cid-uwFAWySlpz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFAWz3WZz {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwFAWz3WZz .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFAWz3WZz .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFAWz3WZz .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFAWz3WZz .box {
  left: 20%;
}
.cid-uwFAWz3WZz .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwFAWz3WZz .mbr-section-text,
.cid-uwFAWz3WZz .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwFAWz3WZz .text-box {
    display: none;
  }
  .cid-uwFAWz3WZz .mbr-section-title,
  .cid-uwFAWz3WZz .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFAWz3WZz .box {
    display: none;
  }
  .cid-uwFAWz3WZz .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFAWz3WZz .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFAWz3WZz .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFAWz3WZz .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFAWz3WZz .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFAWz3WZz .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFAWzdpKk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFAWzdpKk H1 {
  text-align: center;
}
.cid-uwFAWzoXMe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFAWzCsYh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFAWzCsYh h2 {
  text-align: left;
}
.cid-uwFAWzCsYh h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFAWzCsYh p {
  color: #767676;
  text-align: left;
}
.cid-uwFAWzCsYh .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFAWzCsYh .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFAWzCsYh .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFAWzCsYh .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFAWzCsYh .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFAWzCsYh .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFAWzCsYh .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFAWzCsYh .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFAWzCsYh .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFAWzCsYh H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwFAWzCsYh P {
  color: #ffffff;
  text-align: left;
}
.cid-uwFAWzCsYh H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwFAWzS6tG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFAWzS6tG H1 {
  color: #000000;
}
.cid-uxkSlFU6oK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkSlFU6oK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkSlFU6oK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkSlFU6oK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkSlFU6oK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkSlFU6oK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkSlFU6oK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkSlFU6oK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkSlFU6oK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkSlFU6oK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkSlFU6oK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkSlFU6oK .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-uxkSlFU6oK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkSlFU6oK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkSlFU6oK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkSlFU6oK .mbr-text,
.cid-uxkSlFU6oK .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFAWAokKk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFAWAzLVU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFAWAzLVU H1 {
  color: #000000;
}
.cid-uxkSmw7kNP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkSmw7kNP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkSmw7kNP .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkSmw7kNP .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkSmw7kNP .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkSmw7kNP .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkSmw7kNP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkSmw7kNP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkSmw7kNP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkSmw7kNP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkSmw7kNP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkSmw7kNP .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-uxkSmw7kNP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkSmw7kNP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkSmw7kNP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkSmw7kNP .mbr-text,
.cid-uxkSmw7kNP .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkSnpt0dv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkSnpt0dv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkSnpt0dv .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkSnpt0dv .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkSnpt0dv .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkSnpt0dv .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkSnpt0dv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkSnpt0dv .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkSnpt0dv .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkSnpt0dv .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkSnpt0dv .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkSnpt0dv .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-uxkSnpt0dv .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkSnpt0dv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkSnpt0dv .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkSnpt0dv .mbr-text,
.cid-uxkSnpt0dv .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFAWBwqcx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFAWBwqcx H1 {
  color: #000000;
}
.cid-uwFAWBIofs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwFAWBIofs h2 {
  text-align: left;
}
.cid-uwFAWBIofs h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFAWBIofs p {
  color: #767676;
  text-align: left;
}
.cid-uwFAWBIofs .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFAWBIofs .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFAWBIofs .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFAWBIofs .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFAWBIofs .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFAWBIofs .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFAWBIofs .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwFAWBIofs .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwFAWBIofs .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwFAWBIofs .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwFAWBIofs .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFAWBX5OB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFAWBX5OB H1 {
  color: #000000;
}
.cid-uwFAWCejj1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwFAWCejj1 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFAWCejj1 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFAWCejj1 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFAWCejj1 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwFAWCejj1 .box {
  right: 20%;
}
.cid-uwFAWCejj1 .text-box {
  right: 0;
}
.cid-uwFAWCejj1 .mbr-section-title,
.cid-uwFAWCejj1 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwFAWCejj1 .text-box {
    display: none;
  }
  .cid-uwFAWCejj1 .mbr-section-title,
  .cid-uwFAWCejj1 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFAWCejj1 .box {
    display: none;
  }
  .cid-uwFAWCejj1 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFAWCejj1 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFAWCejj1 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFAWCejj1 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFAWCejj1 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFAWCejj1 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFAWCuBss {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFAWCHQOv {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwFAWCHQOv h2 {
  text-align: left;
}
.cid-uwFAWCHQOv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFAWCHQOv p {
  color: #767676;
  text-align: left;
}
.cid-uwFAWCHQOv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFAWCHQOv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFAWCHQOv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFAWCHQOv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFAWCHQOv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFAWCHQOv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFAWCHQOv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFAWCHQOv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFAWCHQOv .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFAWCHQOv .mbr-text {
  color: #232323;
}
.cid-uwFAWCYDwP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwFAWCYDwP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFAWCYDwP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwFAWCYDwP .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwFAWCYDwP .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwFAWCYDwP .container {
    padding: 0 26px;
  }
}
.cid-uwFAWCYDwP .row {
  justify-content: center;
}
.cid-uwFAWCYDwP .item {
  margin-bottom: 32px;
}
.cid-uwFAWCYDwP .item a {
  display: block;
}
.cid-uwFAWCYDwP .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwFAWCYDwP .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwFAWCYDwP .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwFAWCYDwP .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-uwFAWCYDwP .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwFAWCYDwP .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwFAWCYDwP .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-uwFAWCYDwP .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwFAWCYDwP .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwFAWCYDwP .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwFAWCYDwP .item-title {
  color: #ffffff;
}
.cid-uwFAWCYDwP .mbr-date {
  color: #cacaca;
}
.cid-uwFAWCYDwP .mbr-desc {
  color: #cacaca;
}
.cid-uwFAWDfT1z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwFAWDfT1z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFAWDfT1z .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-uwFAWDfT1z .container {
    padding: 0 16px;
  }
}
.cid-uwFAWDfT1z .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwFAWDfT1z .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFAWDfT1z .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwFAWDfT1z .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFAWDfT1z .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwFAWDfT1z .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwFAWDfT1z .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwFAWDfT1z .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwFAWDfT1z .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwFAWDfT1z .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-uwFAWDfT1z .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwFAWDfT1z .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwFAWDfT1z .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwFAWDfT1z .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwFAWDfT1z .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwFAWDfT1z .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwFAWDfT1z .dragArea.row .form-group .form-control:hover,
.cid-uwFAWDfT1z .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwFAWDfT1z .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwFAWDfT1z .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwFAWDfT1z .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwFAWDfT1z .mbr-title {
  color: #ffffff;
}
.cid-uwFAWDfT1z .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwFAWDfT1z .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwFAWDfT1z .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwFAWDfT1z .list {
  color: #08323C;
}
.cid-uwFAWDfT1z label {
  color: #08323C;
}
.cid-uwFAWDfT1z H3 {
  color: #000000;
}
.cid-uwFAWDfT1z P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwFBIAdcHn {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFBIAdcHn H1 {
  text-align: center;
}
.cid-uDmRW83iw7 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmRW83iw7 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmRW83iw7 .video-block {
    width: 100% !important;
  }
}
.cid-uwFBIAyzwq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFBIAOvoe {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwFBIAOvoe .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFBIAOvoe .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFBIAOvoe .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFBIAOvoe .box {
  left: 20%;
}
.cid-uwFBIAOvoe .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwFBIAOvoe .mbr-section-text,
.cid-uwFBIAOvoe .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwFBIAOvoe .text-box {
    display: none;
  }
  .cid-uwFBIAOvoe .mbr-section-title,
  .cid-uwFBIAOvoe .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFBIAOvoe .box {
    display: none;
  }
  .cid-uwFBIAOvoe .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFBIAOvoe .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFBIAOvoe .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFBIAOvoe .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFBIAOvoe .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFBIAOvoe .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFBIAZbBZ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFBIAZbBZ H1 {
  text-align: center;
}
.cid-uwFBIBb69O {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFBIBm6kL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwFBIBm6kL h2 {
  text-align: left;
}
.cid-uwFBIBm6kL h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFBIBm6kL p {
  color: #767676;
  text-align: left;
}
.cid-uwFBIBm6kL .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFBIBm6kL .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFBIBm6kL .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFBIBm6kL .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFBIBm6kL .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFBIBm6kL .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFBIBm6kL .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFBIBm6kL .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFBIBm6kL .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFBIBm6kL H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwFBIBm6kL P {
  color: #ffffff;
  text-align: left;
}
.cid-uwFBIBm6kL H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwFBIBBLi7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFBIBBLi7 H1 {
  color: #000000;
}
.cid-uxkStvfuNY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkStvfuNY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkStvfuNY .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkStvfuNY .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkStvfuNY .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkStvfuNY .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkStvfuNY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkStvfuNY .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkStvfuNY .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkStvfuNY .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkStvfuNY .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkStvfuNY .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-uxkStvfuNY .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkStvfuNY .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkStvfuNY .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkStvfuNY .mbr-text,
.cid-uxkStvfuNY .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFBICa97f {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFBICmoMa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwFBICmoMa H1 {
  color: #000000;
}
.cid-uxkSulIxlW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkSulIxlW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkSulIxlW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkSulIxlW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkSulIxlW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkSulIxlW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkSulIxlW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkSulIxlW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkSulIxlW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkSulIxlW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkSulIxlW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkSulIxlW .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-uxkSulIxlW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkSulIxlW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkSulIxlW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkSulIxlW .mbr-text,
.cid-uxkSulIxlW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkSv6zkQO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkSv6zkQO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkSv6zkQO .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkSv6zkQO .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkSv6zkQO .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkSv6zkQO .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkSv6zkQO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkSv6zkQO .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkSv6zkQO .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkSv6zkQO .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkSv6zkQO .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkSv6zkQO .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-uxkSv6zkQO .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkSv6zkQO .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkSv6zkQO .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkSv6zkQO .mbr-text,
.cid-uxkSv6zkQO .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwFBIDldVW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFBIDldVW H1 {
  color: #000000;
}
.cid-uwFBIDDO4r {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwFBIDDO4r h2 {
  text-align: left;
}
.cid-uwFBIDDO4r h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFBIDDO4r p {
  color: #767676;
  text-align: left;
}
.cid-uwFBIDDO4r .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFBIDDO4r .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFBIDDO4r .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFBIDDO4r .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFBIDDO4r .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFBIDDO4r .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFBIDDO4r .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwFBIDDO4r .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwFBIDDO4r .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwFBIDDO4r .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwFBIDDO4r .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFBIDWrH7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwFBIDWrH7 H1 {
  color: #000000;
}
.cid-uwFBIE9lqm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwFBIE9lqm .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwFBIE9lqm .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwFBIE9lqm .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwFBIE9lqm .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwFBIE9lqm .box {
  right: 20%;
}
.cid-uwFBIE9lqm .text-box {
  right: 0;
}
.cid-uwFBIE9lqm .mbr-section-title,
.cid-uwFBIE9lqm .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwFBIE9lqm .text-box {
    display: none;
  }
  .cid-uwFBIE9lqm .mbr-section-title,
  .cid-uwFBIE9lqm .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwFBIE9lqm .box {
    display: none;
  }
  .cid-uwFBIE9lqm .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwFBIE9lqm .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwFBIE9lqm .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwFBIE9lqm .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwFBIE9lqm .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwFBIE9lqm .mbr-section-text DIV {
  text-align: center;
}
.cid-uwFBIEtFzH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwFBIEJTSN {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwFBIEJTSN h2 {
  text-align: left;
}
.cid-uwFBIEJTSN h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwFBIEJTSN p {
  color: #767676;
  text-align: left;
}
.cid-uwFBIEJTSN .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwFBIEJTSN .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwFBIEJTSN .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwFBIEJTSN .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwFBIEJTSN .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwFBIEJTSN .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwFBIEJTSN .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwFBIEJTSN .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwFBIEJTSN .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwFBIEJTSN .mbr-text {
  color: #232323;
}
.cid-uwFBIF0A3A {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwFBIF0A3A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFBIF0A3A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwFBIF0A3A .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwFBIF0A3A .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwFBIF0A3A .container {
    padding: 0 26px;
  }
}
.cid-uwFBIF0A3A .row {
  justify-content: center;
}
.cid-uwFBIF0A3A .item {
  margin-bottom: 32px;
}
.cid-uwFBIF0A3A .item a {
  display: block;
}
.cid-uwFBIF0A3A .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwFBIF0A3A .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwFBIF0A3A .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwFBIF0A3A .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-uwFBIF0A3A .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwFBIF0A3A .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwFBIF0A3A .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-uwFBIF0A3A .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwFBIF0A3A .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwFBIF0A3A .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwFBIF0A3A .item-title {
  color: #ffffff;
}
.cid-uwFBIF0A3A .mbr-date {
  color: #cacaca;
}
.cid-uwFBIF0A3A .mbr-desc {
  color: #cacaca;
}
.cid-uwFBIFi2qz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwFBIFi2qz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwFBIFi2qz .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-uwFBIFi2qz .container {
    padding: 0 16px;
  }
}
.cid-uwFBIFi2qz .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwFBIFi2qz .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFBIFi2qz .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwFBIFi2qz .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwFBIFi2qz .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwFBIFi2qz .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwFBIFi2qz .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwFBIFi2qz .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwFBIFi2qz .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwFBIFi2qz .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-uwFBIFi2qz .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwFBIFi2qz .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwFBIFi2qz .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwFBIFi2qz .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwFBIFi2qz .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwFBIFi2qz .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwFBIFi2qz .dragArea.row .form-group .form-control:hover,
.cid-uwFBIFi2qz .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwFBIFi2qz .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwFBIFi2qz .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwFBIFi2qz .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwFBIFi2qz .mbr-title {
  color: #ffffff;
}
.cid-uwFBIFi2qz .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwFBIFi2qz .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwFBIFi2qz .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwFBIFi2qz .list {
  color: #08323C;
}
.cid-uwFBIFi2qz label {
  color: #08323C;
}
.cid-uwFBIFi2qz H3 {
  color: #000000;
}
.cid-uwFBIFi2qz P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwQwikndVl {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQwikndVl H1 {
  text-align: center;
}
.cid-uDmTLcVjNH {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmTLcVjNH .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmTLcVjNH .video-block {
    width: 100% !important;
  }
}
.cid-uwQwikE1OJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQwikSV9V {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQwikSV9V .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQwikSV9V .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQwikSV9V .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQwikSV9V .box {
  left: 20%;
}
.cid-uwQwikSV9V .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwQwikSV9V .mbr-section-text,
.cid-uwQwikSV9V .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwQwikSV9V .text-box {
    display: none;
  }
  .cid-uwQwikSV9V .mbr-section-title,
  .cid-uwQwikSV9V .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQwikSV9V .box {
    display: none;
  }
  .cid-uwQwikSV9V .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQwikSV9V .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQwikSV9V .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQwikSV9V .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQwikSV9V .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQwikSV9V .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQwil6reP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQwil6reP H1 {
  text-align: center;
}
.cid-uwQwilhvpr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQwilwRFA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQwilwRFA h2 {
  text-align: left;
}
.cid-uwQwilwRFA h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQwilwRFA p {
  color: #767676;
  text-align: left;
}
.cid-uwQwilwRFA .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQwilwRFA .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQwilwRFA .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQwilwRFA .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQwilwRFA .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQwilwRFA .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQwilwRFA .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQwilwRFA .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQwilwRFA .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQwilwRFA H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwQwilwRFA P {
  color: #ffffff;
  text-align: left;
}
.cid-uwQwilwRFA H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxl2ON0llH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxl2ON0llH H1 {
  color: #000000;
}
.cid-uxl2PXOrze {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl2PXOrze .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl2PXOrze .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl2PXOrze .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl2PXOrze .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl2PXOrze .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl2PXOrze .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl2PXOrze .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl2PXOrze .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl2PXOrze .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl2PXOrze .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl2PXOrze .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-uxl2PXOrze .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl2PXOrze .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl2PXOrze .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl2PXOrze .mbr-text,
.cid-uxl2PXOrze .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQwimrPp4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQwimLMtX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQwimLMtX H1 {
  color: #000000;
}
.cid-uxl2QWNBvW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl2QWNBvW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl2QWNBvW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl2QWNBvW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl2QWNBvW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl2QWNBvW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl2QWNBvW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl2QWNBvW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl2QWNBvW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl2QWNBvW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl2QWNBvW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl2QWNBvW .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-uxl2QWNBvW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl2QWNBvW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl2QWNBvW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl2QWNBvW .mbr-text,
.cid-uxl2QWNBvW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxl2RWiFHp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl2RWiFHp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl2RWiFHp .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl2RWiFHp .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl2RWiFHp .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl2RWiFHp .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl2RWiFHp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl2RWiFHp .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl2RWiFHp .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl2RWiFHp .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl2RWiFHp .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl2RWiFHp .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-uxl2RWiFHp .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl2RWiFHp .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl2RWiFHp .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl2RWiFHp .mbr-text,
.cid-uxl2RWiFHp .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQwinMbR9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQwinMbR9 H1 {
  color: #000000;
}
.cid-uwQwio3UPE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwQwio3UPE h2 {
  text-align: left;
}
.cid-uwQwio3UPE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQwio3UPE p {
  color: #767676;
  text-align: left;
}
.cid-uwQwio3UPE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQwio3UPE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQwio3UPE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQwio3UPE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQwio3UPE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQwio3UPE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQwio3UPE .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwQwio3UPE .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwQwio3UPE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwQwio3UPE .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwQwio3UPE .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQwioodND {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQwioodND H1 {
  color: #000000;
}
.cid-uwQwioCfmU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQwioCfmU .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQwioCfmU .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQwioCfmU .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQwioCfmU .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwQwioCfmU .box {
  right: 20%;
}
.cid-uwQwioCfmU .text-box {
  right: 0;
}
.cid-uwQwioCfmU .mbr-section-title,
.cid-uwQwioCfmU .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwQwioCfmU .text-box {
    display: none;
  }
  .cid-uwQwioCfmU .mbr-section-title,
  .cid-uwQwioCfmU .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQwioCfmU .box {
    display: none;
  }
  .cid-uwQwioCfmU .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQwioCfmU .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQwioCfmU .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQwioCfmU .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQwioCfmU .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQwioCfmU .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQwioUrJZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQwip6L9g {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwQwip6L9g h2 {
  text-align: left;
}
.cid-uwQwip6L9g h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQwip6L9g p {
  color: #767676;
  text-align: left;
}
.cid-uwQwip6L9g .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQwip6L9g .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQwip6L9g .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQwip6L9g .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQwip6L9g .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQwip6L9g .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQwip6L9g .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQwip6L9g .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQwip6L9g .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQwip6L9g .mbr-text {
  color: #232323;
}
.cid-uwQwipxsUD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwQwipxsUD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQwipxsUD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQwipxsUD .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwQwipxsUD .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwQwipxsUD .container {
    padding: 0 26px;
  }
}
.cid-uwQwipxsUD .row {
  justify-content: center;
}
.cid-uwQwipxsUD .item {
  margin-bottom: 32px;
}
.cid-uwQwipxsUD .item a {
  display: block;
}
.cid-uwQwipxsUD .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwQwipxsUD .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwQwipxsUD .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwQwipxsUD .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-uwQwipxsUD .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwQwipxsUD .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwQwipxsUD .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-uwQwipxsUD .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwQwipxsUD .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwQwipxsUD .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwQwipxsUD .item-title {
  color: #ffffff;
}
.cid-uwQwipxsUD .mbr-date {
  color: #cacaca;
}
.cid-uwQwipxsUD .mbr-desc {
  color: #cacaca;
}
.cid-uwQwipUku7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwQwipUku7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQwipUku7 .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-uwQwipUku7 .container {
    padding: 0 16px;
  }
}
.cid-uwQwipUku7 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwQwipUku7 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQwipUku7 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwQwipUku7 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQwipUku7 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwQwipUku7 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwQwipUku7 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwQwipUku7 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwQwipUku7 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwQwipUku7 .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-uwQwipUku7 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwQwipUku7 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwQwipUku7 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwQwipUku7 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwQwipUku7 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwQwipUku7 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwQwipUku7 .dragArea.row .form-group .form-control:hover,
.cid-uwQwipUku7 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwQwipUku7 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwQwipUku7 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwQwipUku7 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwQwipUku7 .mbr-title {
  color: #ffffff;
}
.cid-uwQwipUku7 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwQwipUku7 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwQwipUku7 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwQwipUku7 .list {
  color: #08323C;
}
.cid-uwQwipUku7 label {
  color: #08323C;
}
.cid-uwQwipUku7 H3 {
  color: #000000;
}
.cid-uwQwipUku7 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwQwDuBmDi {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQwDuBmDi H1 {
  text-align: center;
}
.cid-uDmTS05uuh {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmTS05uuh .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmTS05uuh .video-block {
    width: 100% !important;
  }
}
.cid-uwQwDuT9gX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQwDv6OEj {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQwDv6OEj .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQwDv6OEj .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQwDv6OEj .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQwDv6OEj .box {
  left: 20%;
}
.cid-uwQwDv6OEj .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwQwDv6OEj .mbr-section-text,
.cid-uwQwDv6OEj .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwQwDv6OEj .text-box {
    display: none;
  }
  .cid-uwQwDv6OEj .mbr-section-title,
  .cid-uwQwDv6OEj .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQwDv6OEj .box {
    display: none;
  }
  .cid-uwQwDv6OEj .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQwDv6OEj .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQwDv6OEj .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQwDv6OEj .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQwDv6OEj .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQwDv6OEj .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQwDvjRJk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQwDvjRJk H1 {
  text-align: center;
}
.cid-uwQwDvuSkt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQwDvIrg9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQwDvIrg9 h2 {
  text-align: left;
}
.cid-uwQwDvIrg9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQwDvIrg9 p {
  color: #767676;
  text-align: left;
}
.cid-uwQwDvIrg9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQwDvIrg9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQwDvIrg9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQwDvIrg9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQwDvIrg9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQwDvIrg9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQwDvIrg9 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQwDvIrg9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQwDvIrg9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQwDvIrg9 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwQwDvIrg9 P {
  color: #ffffff;
  text-align: left;
}
.cid-uwQwDvIrg9 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxl30Sokgw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxl30Sokgw H1 {
  color: #000000;
}
.cid-uxl31S9tH7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl31S9tH7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl31S9tH7 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl31S9tH7 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl31S9tH7 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl31S9tH7 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl31S9tH7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl31S9tH7 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl31S9tH7 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl31S9tH7 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl31S9tH7 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl31S9tH7 .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-uxl31S9tH7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl31S9tH7 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl31S9tH7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl31S9tH7 .mbr-text,
.cid-uxl31S9tH7 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQwDwD1xr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQwDwROvW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQwDwROvW H1 {
  color: #000000;
}
.cid-uxl32NDM52 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl32NDM52 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl32NDM52 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl32NDM52 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl32NDM52 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl32NDM52 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl32NDM52 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl32NDM52 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl32NDM52 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl32NDM52 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl32NDM52 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl32NDM52 .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-uxl32NDM52 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl32NDM52 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl32NDM52 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl32NDM52 .mbr-text,
.cid-uxl32NDM52 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxl33JHDYW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl33JHDYW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl33JHDYW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl33JHDYW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl33JHDYW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl33JHDYW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl33JHDYW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl33JHDYW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl33JHDYW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl33JHDYW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl33JHDYW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl33JHDYW .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-uxl33JHDYW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl33JHDYW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl33JHDYW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl33JHDYW .mbr-text,
.cid-uxl33JHDYW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQwDxZOYb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQwDxZOYb H1 {
  color: #000000;
}
.cid-uwQwDyleVr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwQwDyleVr h2 {
  text-align: left;
}
.cid-uwQwDyleVr h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQwDyleVr p {
  color: #767676;
  text-align: left;
}
.cid-uwQwDyleVr .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQwDyleVr .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQwDyleVr .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQwDyleVr .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQwDyleVr .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQwDyleVr .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQwDyleVr .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwQwDyleVr .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwQwDyleVr .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwQwDyleVr .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwQwDyleVr .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQwDyG8ex {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQwDyG8ex H1 {
  color: #000000;
}
.cid-uwQwDyXH7V {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQwDyXH7V .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQwDyXH7V .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQwDyXH7V .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQwDyXH7V .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwQwDyXH7V .box {
  right: 20%;
}
.cid-uwQwDyXH7V .text-box {
  right: 0;
}
.cid-uwQwDyXH7V .mbr-section-title,
.cid-uwQwDyXH7V .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwQwDyXH7V .text-box {
    display: none;
  }
  .cid-uwQwDyXH7V .mbr-section-title,
  .cid-uwQwDyXH7V .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQwDyXH7V .box {
    display: none;
  }
  .cid-uwQwDyXH7V .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQwDyXH7V .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQwDyXH7V .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQwDyXH7V .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQwDyXH7V .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQwDyXH7V .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQwDze8yV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQwDzunEy {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwQwDzunEy h2 {
  text-align: left;
}
.cid-uwQwDzunEy h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQwDzunEy p {
  color: #767676;
  text-align: left;
}
.cid-uwQwDzunEy .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQwDzunEy .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQwDzunEy .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQwDzunEy .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQwDzunEy .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQwDzunEy .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQwDzunEy .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQwDzunEy .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQwDzunEy .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQwDzunEy .mbr-text {
  color: #232323;
}
.cid-uwQwDzOlIX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwQwDzOlIX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQwDzOlIX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQwDzOlIX .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwQwDzOlIX .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwQwDzOlIX .container {
    padding: 0 26px;
  }
}
.cid-uwQwDzOlIX .row {
  justify-content: center;
}
.cid-uwQwDzOlIX .item {
  margin-bottom: 32px;
}
.cid-uwQwDzOlIX .item a {
  display: block;
}
.cid-uwQwDzOlIX .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwQwDzOlIX .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwQwDzOlIX .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwQwDzOlIX .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-uwQwDzOlIX .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwQwDzOlIX .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwQwDzOlIX .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-uwQwDzOlIX .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwQwDzOlIX .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwQwDzOlIX .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwQwDzOlIX .item-title {
  color: #ffffff;
}
.cid-uwQwDzOlIX .mbr-date {
  color: #cacaca;
}
.cid-uwQwDzOlIX .mbr-desc {
  color: #cacaca;
}
.cid-uwQwDA8u9n {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwQwDA8u9n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQwDA8u9n .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-uwQwDA8u9n .container {
    padding: 0 16px;
  }
}
.cid-uwQwDA8u9n .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwQwDA8u9n .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQwDA8u9n .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwQwDA8u9n .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQwDA8u9n .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwQwDA8u9n .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwQwDA8u9n .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwQwDA8u9n .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwQwDA8u9n .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwQwDA8u9n .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-uwQwDA8u9n .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwQwDA8u9n .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwQwDA8u9n .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwQwDA8u9n .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwQwDA8u9n .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwQwDA8u9n .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwQwDA8u9n .dragArea.row .form-group .form-control:hover,
.cid-uwQwDA8u9n .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwQwDA8u9n .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwQwDA8u9n .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwQwDA8u9n .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwQwDA8u9n .mbr-title {
  color: #ffffff;
}
.cid-uwQwDA8u9n .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwQwDA8u9n .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwQwDA8u9n .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwQwDA8u9n .list {
  color: #08323C;
}
.cid-uwQwDA8u9n label {
  color: #08323C;
}
.cid-uwQwDA8u9n H3 {
  color: #000000;
}
.cid-uwQwDA8u9n P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwQwZGzFsn {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQwZGzFsn H1 {
  text-align: center;
}
.cid-uDmTV7T46o {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmTV7T46o .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmTV7T46o .video-block {
    width: 100% !important;
  }
}
.cid-uwQwZHblAG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQwZHmzUq {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQwZHmzUq .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQwZHmzUq .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQwZHmzUq .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQwZHmzUq .box {
  left: 20%;
}
.cid-uwQwZHmzUq .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwQwZHmzUq .mbr-section-text,
.cid-uwQwZHmzUq .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwQwZHmzUq .text-box {
    display: none;
  }
  .cid-uwQwZHmzUq .mbr-section-title,
  .cid-uwQwZHmzUq .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQwZHmzUq .box {
    display: none;
  }
  .cid-uwQwZHmzUq .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQwZHmzUq .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQwZHmzUq .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQwZHmzUq .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQwZHmzUq .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQwZHmzUq .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQwZHCbH8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQwZHCbH8 H1 {
  text-align: center;
}
.cid-uwQwZHOP0T {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQwZI0se9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQwZI0se9 h2 {
  text-align: left;
}
.cid-uwQwZI0se9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQwZI0se9 p {
  color: #767676;
  text-align: left;
}
.cid-uwQwZI0se9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQwZI0se9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQwZI0se9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQwZI0se9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQwZI0se9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQwZI0se9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQwZI0se9 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQwZI0se9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQwZI0se9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQwZI0se9 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwQwZI0se9 P {
  color: #ffffff;
  text-align: left;
}
.cid-uwQwZI0se9 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxl3dcV3JC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxl3dcV3JC H1 {
  color: #000000;
}
.cid-uxl3heeg9G {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl3heeg9G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl3heeg9G .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl3heeg9G .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl3heeg9G .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl3heeg9G .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl3heeg9G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl3heeg9G .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl3heeg9G .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl3heeg9G .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl3heeg9G .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl3heeg9G .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-uxl3heeg9G .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl3heeg9G .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl3heeg9G .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl3heeg9G .mbr-text,
.cid-uxl3heeg9G .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQwZJJxHX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQwZJV2L7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQwZJV2L7 H1 {
  color: #000000;
}
.cid-uxl3ibU0uF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl3ibU0uF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl3ibU0uF .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl3ibU0uF .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl3ibU0uF .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl3ibU0uF .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl3ibU0uF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl3ibU0uF .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl3ibU0uF .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl3ibU0uF .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl3ibU0uF .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl3ibU0uF .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-uxl3ibU0uF .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl3ibU0uF .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl3ibU0uF .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl3ibU0uF .mbr-text,
.cid-uxl3ibU0uF .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxl3jdq590 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl3jdq590 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl3jdq590 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl3jdq590 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl3jdq590 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl3jdq590 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl3jdq590 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl3jdq590 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl3jdq590 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl3jdq590 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl3jdq590 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl3jdq590 .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-uxl3jdq590 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl3jdq590 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl3jdq590 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl3jdq590 .mbr-text,
.cid-uxl3jdq590 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQwZKZrVx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQwZKZrVx H1 {
  color: #000000;
}
.cid-uwQwZLesgU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwQwZLesgU h2 {
  text-align: left;
}
.cid-uwQwZLesgU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQwZLesgU p {
  color: #767676;
  text-align: left;
}
.cid-uwQwZLesgU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQwZLesgU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQwZLesgU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQwZLesgU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQwZLesgU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQwZLesgU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQwZLesgU .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwQwZLesgU .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwQwZLesgU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwQwZLesgU .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwQwZLesgU .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQwZLyjy1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQwZLyjy1 H1 {
  color: #000000;
}
.cid-uwQwZLOCxC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQwZLOCxC .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQwZLOCxC .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQwZLOCxC .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQwZLOCxC .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwQwZLOCxC .box {
  right: 20%;
}
.cid-uwQwZLOCxC .text-box {
  right: 0;
}
.cid-uwQwZLOCxC .mbr-section-title,
.cid-uwQwZLOCxC .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwQwZLOCxC .text-box {
    display: none;
  }
  .cid-uwQwZLOCxC .mbr-section-title,
  .cid-uwQwZLOCxC .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQwZLOCxC .box {
    display: none;
  }
  .cid-uwQwZLOCxC .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQwZLOCxC .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQwZLOCxC .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQwZLOCxC .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQwZLOCxC .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQwZLOCxC .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQwZM5ZmR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQwZMnHwB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwQwZMnHwB h2 {
  text-align: left;
}
.cid-uwQwZMnHwB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQwZMnHwB p {
  color: #767676;
  text-align: left;
}
.cid-uwQwZMnHwB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQwZMnHwB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQwZMnHwB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQwZMnHwB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQwZMnHwB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQwZMnHwB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQwZMnHwB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQwZMnHwB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQwZMnHwB .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQwZMnHwB .mbr-text {
  color: #232323;
}
.cid-uwQwZMF0Oa {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwQwZMF0Oa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQwZMF0Oa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQwZMF0Oa .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwQwZMF0Oa .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwQwZMF0Oa .container {
    padding: 0 26px;
  }
}
.cid-uwQwZMF0Oa .row {
  justify-content: center;
}
.cid-uwQwZMF0Oa .item {
  margin-bottom: 32px;
}
.cid-uwQwZMF0Oa .item a {
  display: block;
}
.cid-uwQwZMF0Oa .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwQwZMF0Oa .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwQwZMF0Oa .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwQwZMF0Oa .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-uwQwZMF0Oa .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwQwZMF0Oa .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwQwZMF0Oa .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-uwQwZMF0Oa .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwQwZMF0Oa .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwQwZMF0Oa .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwQwZMF0Oa .item-title {
  color: #ffffff;
}
.cid-uwQwZMF0Oa .mbr-date {
  color: #cacaca;
}
.cid-uwQwZMF0Oa .mbr-desc {
  color: #cacaca;
}
.cid-uwQwZN1An2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwQwZN1An2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQwZN1An2 .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-uwQwZN1An2 .container {
    padding: 0 16px;
  }
}
.cid-uwQwZN1An2 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwQwZN1An2 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQwZN1An2 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwQwZN1An2 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQwZN1An2 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwQwZN1An2 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwQwZN1An2 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwQwZN1An2 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwQwZN1An2 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwQwZN1An2 .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-uwQwZN1An2 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwQwZN1An2 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwQwZN1An2 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwQwZN1An2 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwQwZN1An2 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwQwZN1An2 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwQwZN1An2 .dragArea.row .form-group .form-control:hover,
.cid-uwQwZN1An2 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwQwZN1An2 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwQwZN1An2 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwQwZN1An2 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwQwZN1An2 .mbr-title {
  color: #ffffff;
}
.cid-uwQwZN1An2 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwQwZN1An2 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwQwZN1An2 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwQwZN1An2 .list {
  color: #08323C;
}
.cid-uwQwZN1An2 label {
  color: #08323C;
}
.cid-uwQwZN1An2 H3 {
  color: #000000;
}
.cid-uwQwZN1An2 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwQxuMVNeS {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQxuMVNeS H1 {
  text-align: center;
}
.cid-uDmU0oBauL {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmU0oBauL .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmU0oBauL .video-block {
    width: 100% !important;
  }
}
.cid-uwQxuNfxia {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQxuNv3pN {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQxuNv3pN .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQxuNv3pN .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQxuNv3pN .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQxuNv3pN .box {
  left: 20%;
}
.cid-uwQxuNv3pN .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwQxuNv3pN .mbr-section-text,
.cid-uwQxuNv3pN .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwQxuNv3pN .text-box {
    display: none;
  }
  .cid-uwQxuNv3pN .mbr-section-title,
  .cid-uwQxuNv3pN .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQxuNv3pN .box {
    display: none;
  }
  .cid-uwQxuNv3pN .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQxuNv3pN .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQxuNv3pN .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQxuNv3pN .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQxuNv3pN .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQxuNv3pN .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQxuNMk5m {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQxuNMk5m H1 {
  text-align: center;
}
.cid-uwQxuO0nLl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQxuOkzPe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQxuOkzPe h2 {
  text-align: left;
}
.cid-uwQxuOkzPe h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQxuOkzPe p {
  color: #767676;
  text-align: left;
}
.cid-uwQxuOkzPe .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQxuOkzPe .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQxuOkzPe .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQxuOkzPe .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQxuOkzPe .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQxuOkzPe .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQxuOkzPe .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQxuOkzPe .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQxuOkzPe .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQxuOkzPe H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwQxuOkzPe P {
  color: #ffffff;
  text-align: left;
}
.cid-uwQxuOkzPe H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxl3sdh5RR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxl3sdh5RR H1 {
  color: #000000;
}
.cid-uxl3tbuDI2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl3tbuDI2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl3tbuDI2 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl3tbuDI2 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl3tbuDI2 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl3tbuDI2 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl3tbuDI2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl3tbuDI2 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl3tbuDI2 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl3tbuDI2 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl3tbuDI2 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl3tbuDI2 .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-uxl3tbuDI2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl3tbuDI2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl3tbuDI2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl3tbuDI2 .mbr-text,
.cid-uxl3tbuDI2 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQxuPkYbp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQxuPzsK4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQxuPzsK4 H1 {
  color: #000000;
}
.cid-uxl3u1aSfi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl3u1aSfi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl3u1aSfi .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl3u1aSfi .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl3u1aSfi .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl3u1aSfi .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl3u1aSfi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl3u1aSfi .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl3u1aSfi .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl3u1aSfi .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl3u1aSfi .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl3u1aSfi .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-uxl3u1aSfi .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl3u1aSfi .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl3u1aSfi .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl3u1aSfi .mbr-text,
.cid-uxl3u1aSfi .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxl3uV8jd1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl3uV8jd1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl3uV8jd1 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl3uV8jd1 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl3uV8jd1 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl3uV8jd1 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl3uV8jd1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl3uV8jd1 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl3uV8jd1 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl3uV8jd1 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl3uV8jd1 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl3uV8jd1 .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-uxl3uV8jd1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl3uV8jd1 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl3uV8jd1 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl3uV8jd1 .mbr-text,
.cid-uxl3uV8jd1 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQxuQBNhc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQxuQBNhc H1 {
  color: #000000;
}
.cid-uwQxuQP25p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwQxuQP25p h2 {
  text-align: left;
}
.cid-uwQxuQP25p h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQxuQP25p p {
  color: #767676;
  text-align: left;
}
.cid-uwQxuQP25p .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQxuQP25p .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQxuQP25p .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQxuQP25p .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQxuQP25p .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQxuQP25p .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQxuQP25p .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwQxuQP25p .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwQxuQP25p .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwQxuQP25p .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwQxuQP25p .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQxuR7exl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQxuR7exl H1 {
  color: #000000;
}
.cid-uwQxuRnoSK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQxuRnoSK .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQxuRnoSK .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQxuRnoSK .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQxuRnoSK .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwQxuRnoSK .box {
  right: 20%;
}
.cid-uwQxuRnoSK .text-box {
  right: 0;
}
.cid-uwQxuRnoSK .mbr-section-title,
.cid-uwQxuRnoSK .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwQxuRnoSK .text-box {
    display: none;
  }
  .cid-uwQxuRnoSK .mbr-section-title,
  .cid-uwQxuRnoSK .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQxuRnoSK .box {
    display: none;
  }
  .cid-uwQxuRnoSK .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQxuRnoSK .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQxuRnoSK .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQxuRnoSK .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQxuRnoSK .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQxuRnoSK .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQxuREfpY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQxuRVDD4 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwQxuRVDD4 h2 {
  text-align: left;
}
.cid-uwQxuRVDD4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQxuRVDD4 p {
  color: #767676;
  text-align: left;
}
.cid-uwQxuRVDD4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQxuRVDD4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQxuRVDD4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQxuRVDD4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQxuRVDD4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQxuRVDD4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQxuRVDD4 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQxuRVDD4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQxuRVDD4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQxuRVDD4 .mbr-text {
  color: #232323;
}
.cid-uwQxuSaKtA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwQxuSaKtA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQxuSaKtA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQxuSaKtA .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwQxuSaKtA .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwQxuSaKtA .container {
    padding: 0 26px;
  }
}
.cid-uwQxuSaKtA .row {
  justify-content: center;
}
.cid-uwQxuSaKtA .item {
  margin-bottom: 32px;
}
.cid-uwQxuSaKtA .item a {
  display: block;
}
.cid-uwQxuSaKtA .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwQxuSaKtA .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwQxuSaKtA .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwQxuSaKtA .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-uwQxuSaKtA .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwQxuSaKtA .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwQxuSaKtA .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-uwQxuSaKtA .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwQxuSaKtA .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwQxuSaKtA .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwQxuSaKtA .item-title {
  color: #ffffff;
}
.cid-uwQxuSaKtA .mbr-date {
  color: #cacaca;
}
.cid-uwQxuSaKtA .mbr-desc {
  color: #cacaca;
}
.cid-uwQxuStTPj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwQxuStTPj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQxuStTPj .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-uwQxuStTPj .container {
    padding: 0 16px;
  }
}
.cid-uwQxuStTPj .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwQxuStTPj .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQxuStTPj .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwQxuStTPj .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQxuStTPj .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwQxuStTPj .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwQxuStTPj .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwQxuStTPj .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwQxuStTPj .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwQxuStTPj .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-uwQxuStTPj .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwQxuStTPj .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwQxuStTPj .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwQxuStTPj .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwQxuStTPj .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwQxuStTPj .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwQxuStTPj .dragArea.row .form-group .form-control:hover,
.cid-uwQxuStTPj .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwQxuStTPj .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwQxuStTPj .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwQxuStTPj .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwQxuStTPj .mbr-title {
  color: #ffffff;
}
.cid-uwQxuStTPj .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwQxuStTPj .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwQxuStTPj .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwQxuStTPj .list {
  color: #08323C;
}
.cid-uwQxuStTPj label {
  color: #08323C;
}
.cid-uwQxuStTPj H3 {
  color: #000000;
}
.cid-uwQxuStTPj P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwQyrlpxut {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQyrlpxut H1 {
  text-align: center;
}
.cid-uDmUaxPD9k {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmUaxPD9k .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmUaxPD9k .video-block {
    width: 100% !important;
  }
}
.cid-uwQyrlII4D {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQyrlVmqf {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQyrlVmqf .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQyrlVmqf .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQyrlVmqf .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQyrlVmqf .box {
  left: 20%;
}
.cid-uwQyrlVmqf .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwQyrlVmqf .mbr-section-text,
.cid-uwQyrlVmqf .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwQyrlVmqf .text-box {
    display: none;
  }
  .cid-uwQyrlVmqf .mbr-section-title,
  .cid-uwQyrlVmqf .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQyrlVmqf .box {
    display: none;
  }
  .cid-uwQyrlVmqf .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQyrlVmqf .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQyrlVmqf .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQyrlVmqf .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQyrlVmqf .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQyrlVmqf .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQyrm9uz5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQyrm9uz5 H1 {
  text-align: center;
}
.cid-uwQyrmnS10 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQyrmAhcG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQyrmAhcG h2 {
  text-align: left;
}
.cid-uwQyrmAhcG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQyrmAhcG p {
  color: #767676;
  text-align: left;
}
.cid-uwQyrmAhcG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQyrmAhcG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQyrmAhcG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQyrmAhcG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQyrmAhcG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQyrmAhcG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQyrmAhcG .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQyrmAhcG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQyrmAhcG .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQyrmAhcG H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwQyrmAhcG P {
  color: #ffffff;
  text-align: left;
}
.cid-uwQyrmAhcG H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxl3KQmPjO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxl3KQmPjO H1 {
  color: #000000;
}
.cid-uxl3LQVQoA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl3LQVQoA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl3LQVQoA .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl3LQVQoA .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl3LQVQoA .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl3LQVQoA .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl3LQVQoA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl3LQVQoA .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl3LQVQoA .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl3LQVQoA .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl3LQVQoA .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl3LQVQoA .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-uxl3LQVQoA .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl3LQVQoA .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl3LQVQoA .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl3LQVQoA .mbr-text,
.cid-uxl3LQVQoA .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQyrnBadn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQyrnRx3j {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQyrnRx3j H1 {
  color: #000000;
}
.cid-uxl3MGMM2U {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl3MGMM2U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl3MGMM2U .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl3MGMM2U .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl3MGMM2U .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl3MGMM2U .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl3MGMM2U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl3MGMM2U .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl3MGMM2U .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl3MGMM2U .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl3MGMM2U .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl3MGMM2U .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-uxl3MGMM2U .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl3MGMM2U .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl3MGMM2U .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl3MGMM2U .mbr-text,
.cid-uxl3MGMM2U .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxl3NzET7J {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl3NzET7J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl3NzET7J .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl3NzET7J .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl3NzET7J .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl3NzET7J .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl3NzET7J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl3NzET7J .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl3NzET7J .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl3NzET7J .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl3NzET7J .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl3NzET7J .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-uxl3NzET7J .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl3NzET7J .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl3NzET7J .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl3NzET7J .mbr-text,
.cid-uxl3NzET7J .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQyrp2ZIq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQyrp2ZIq H1 {
  color: #000000;
}
.cid-uwQyrpjZWg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwQyrpjZWg h2 {
  text-align: left;
}
.cid-uwQyrpjZWg h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQyrpjZWg p {
  color: #767676;
  text-align: left;
}
.cid-uwQyrpjZWg .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQyrpjZWg .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQyrpjZWg .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQyrpjZWg .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQyrpjZWg .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQyrpjZWg .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQyrpjZWg .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwQyrpjZWg .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwQyrpjZWg .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwQyrpjZWg .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwQyrpjZWg .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQyrpCwXM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQyrpCwXM H1 {
  color: #000000;
}
.cid-uwQyrpRGqW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQyrpRGqW .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQyrpRGqW .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQyrpRGqW .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQyrpRGqW .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwQyrpRGqW .box {
  right: 20%;
}
.cid-uwQyrpRGqW .text-box {
  right: 0;
}
.cid-uwQyrpRGqW .mbr-section-title,
.cid-uwQyrpRGqW .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwQyrpRGqW .text-box {
    display: none;
  }
  .cid-uwQyrpRGqW .mbr-section-title,
  .cid-uwQyrpRGqW .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQyrpRGqW .box {
    display: none;
  }
  .cid-uwQyrpRGqW .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQyrpRGqW .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQyrpRGqW .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQyrpRGqW .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQyrpRGqW .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQyrpRGqW .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQyrq8S2D {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQyrqnMVc {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwQyrqnMVc h2 {
  text-align: left;
}
.cid-uwQyrqnMVc h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQyrqnMVc p {
  color: #767676;
  text-align: left;
}
.cid-uwQyrqnMVc .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQyrqnMVc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQyrqnMVc .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQyrqnMVc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQyrqnMVc .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQyrqnMVc .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQyrqnMVc .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQyrqnMVc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQyrqnMVc .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQyrqnMVc .mbr-text {
  color: #232323;
}
.cid-uwQyrqIgM0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwQyrqIgM0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQyrqIgM0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQyrqIgM0 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwQyrqIgM0 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwQyrqIgM0 .container {
    padding: 0 26px;
  }
}
.cid-uwQyrqIgM0 .row {
  justify-content: center;
}
.cid-uwQyrqIgM0 .item {
  margin-bottom: 32px;
}
.cid-uwQyrqIgM0 .item a {
  display: block;
}
.cid-uwQyrqIgM0 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwQyrqIgM0 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwQyrqIgM0 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwQyrqIgM0 .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-uwQyrqIgM0 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwQyrqIgM0 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwQyrqIgM0 .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-uwQyrqIgM0 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwQyrqIgM0 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwQyrqIgM0 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwQyrqIgM0 .item-title {
  color: #ffffff;
}
.cid-uwQyrqIgM0 .mbr-date {
  color: #cacaca;
}
.cid-uwQyrqIgM0 .mbr-desc {
  color: #cacaca;
}
.cid-uwQyrr0KJ8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwQyrr0KJ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQyrr0KJ8 .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-uwQyrr0KJ8 .container {
    padding: 0 16px;
  }
}
.cid-uwQyrr0KJ8 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwQyrr0KJ8 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQyrr0KJ8 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwQyrr0KJ8 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQyrr0KJ8 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwQyrr0KJ8 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwQyrr0KJ8 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwQyrr0KJ8 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwQyrr0KJ8 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwQyrr0KJ8 .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-uwQyrr0KJ8 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwQyrr0KJ8 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwQyrr0KJ8 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwQyrr0KJ8 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwQyrr0KJ8 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwQyrr0KJ8 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwQyrr0KJ8 .dragArea.row .form-group .form-control:hover,
.cid-uwQyrr0KJ8 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwQyrr0KJ8 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwQyrr0KJ8 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwQyrr0KJ8 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwQyrr0KJ8 .mbr-title {
  color: #ffffff;
}
.cid-uwQyrr0KJ8 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwQyrr0KJ8 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwQyrr0KJ8 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwQyrr0KJ8 .list {
  color: #08323C;
}
.cid-uwQyrr0KJ8 label {
  color: #08323C;
}
.cid-uwQyrr0KJ8 H3 {
  color: #000000;
}
.cid-uwQyrr0KJ8 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwQyQV5Iwa {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQyQV5Iwa H1 {
  text-align: center;
}
.cid-uDmUdt5wKX {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmUdt5wKX .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmUdt5wKX .video-block {
    width: 100% !important;
  }
}
.cid-uwQyQVp2Ie {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQyQVEZbS {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQyQVEZbS .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQyQVEZbS .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQyQVEZbS .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQyQVEZbS .box {
  left: 20%;
}
.cid-uwQyQVEZbS .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwQyQVEZbS .mbr-section-text,
.cid-uwQyQVEZbS .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwQyQVEZbS .text-box {
    display: none;
  }
  .cid-uwQyQVEZbS .mbr-section-title,
  .cid-uwQyQVEZbS .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQyQVEZbS .box {
    display: none;
  }
  .cid-uwQyQVEZbS .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQyQVEZbS .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQyQVEZbS .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQyQVEZbS .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQyQVEZbS .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQyQVEZbS .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQyQVT64q {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQyQVT64q H1 {
  text-align: center;
}
.cid-uwQyQW6UvC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQyQWn8UL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQyQWn8UL h2 {
  text-align: left;
}
.cid-uwQyQWn8UL h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQyQWn8UL p {
  color: #767676;
  text-align: left;
}
.cid-uwQyQWn8UL .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQyQWn8UL .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQyQWn8UL .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQyQWn8UL .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQyQWn8UL .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQyQWn8UL .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQyQWn8UL .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQyQWn8UL .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQyQWn8UL .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQyQWn8UL H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwQyQWn8UL P {
  color: #ffffff;
  text-align: left;
}
.cid-uwQyQWn8UL H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxl3U8bckf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxl3U8bckf H1 {
  color: #000000;
}
.cid-uxl3Vck5pl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl3Vck5pl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl3Vck5pl .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl3Vck5pl .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl3Vck5pl .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl3Vck5pl .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl3Vck5pl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl3Vck5pl .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl3Vck5pl .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl3Vck5pl .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl3Vck5pl .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl3Vck5pl .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-uxl3Vck5pl .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl3Vck5pl .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl3Vck5pl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl3Vck5pl .mbr-text,
.cid-uxl3Vck5pl .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQyQXs7VO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQyQXIEfQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQyQXIEfQ H1 {
  color: #000000;
}
.cid-uxl3W5wXbm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl3W5wXbm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl3W5wXbm .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl3W5wXbm .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl3W5wXbm .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl3W5wXbm .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl3W5wXbm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl3W5wXbm .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl3W5wXbm .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl3W5wXbm .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl3W5wXbm .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl3W5wXbm .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-uxl3W5wXbm .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl3W5wXbm .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl3W5wXbm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl3W5wXbm .mbr-text,
.cid-uxl3W5wXbm .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxl3WTdvsI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl3WTdvsI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl3WTdvsI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl3WTdvsI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl3WTdvsI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl3WTdvsI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl3WTdvsI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl3WTdvsI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl3WTdvsI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl3WTdvsI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl3WTdvsI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl3WTdvsI .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-uxl3WTdvsI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl3WTdvsI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl3WTdvsI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl3WTdvsI .mbr-text,
.cid-uxl3WTdvsI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQyQYMo8t {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQyQYMo8t H1 {
  color: #000000;
}
.cid-uwQyQZ1Yp4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwQyQZ1Yp4 h2 {
  text-align: left;
}
.cid-uwQyQZ1Yp4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQyQZ1Yp4 p {
  color: #767676;
  text-align: left;
}
.cid-uwQyQZ1Yp4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQyQZ1Yp4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQyQZ1Yp4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQyQZ1Yp4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQyQZ1Yp4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQyQZ1Yp4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQyQZ1Yp4 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwQyQZ1Yp4 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwQyQZ1Yp4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwQyQZ1Yp4 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwQyQZ1Yp4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQyQZl2RT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQyQZl2RT H1 {
  color: #000000;
}
.cid-uwQyQZBCuh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQyQZBCuh .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQyQZBCuh .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQyQZBCuh .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQyQZBCuh .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwQyQZBCuh .box {
  right: 20%;
}
.cid-uwQyQZBCuh .text-box {
  right: 0;
}
.cid-uwQyQZBCuh .mbr-section-title,
.cid-uwQyQZBCuh .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwQyQZBCuh .text-box {
    display: none;
  }
  .cid-uwQyQZBCuh .mbr-section-title,
  .cid-uwQyQZBCuh .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQyQZBCuh .box {
    display: none;
  }
  .cid-uwQyQZBCuh .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQyQZBCuh .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQyQZBCuh .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQyQZBCuh .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQyQZBCuh .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQyQZBCuh .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQyQZRgR3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQyR06uUF {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwQyR06uUF h2 {
  text-align: left;
}
.cid-uwQyR06uUF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQyR06uUF p {
  color: #767676;
  text-align: left;
}
.cid-uwQyR06uUF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQyR06uUF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQyR06uUF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQyR06uUF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQyR06uUF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQyR06uUF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQyR06uUF .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQyR06uUF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQyR06uUF .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQyR06uUF .mbr-text {
  color: #232323;
}
.cid-uwQyR0n7PS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwQyR0n7PS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQyR0n7PS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQyR0n7PS .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwQyR0n7PS .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwQyR0n7PS .container {
    padding: 0 26px;
  }
}
.cid-uwQyR0n7PS .row {
  justify-content: center;
}
.cid-uwQyR0n7PS .item {
  margin-bottom: 32px;
}
.cid-uwQyR0n7PS .item a {
  display: block;
}
.cid-uwQyR0n7PS .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwQyR0n7PS .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwQyR0n7PS .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwQyR0n7PS .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-uwQyR0n7PS .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwQyR0n7PS .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwQyR0n7PS .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-uwQyR0n7PS .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwQyR0n7PS .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwQyR0n7PS .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwQyR0n7PS .item-title {
  color: #ffffff;
}
.cid-uwQyR0n7PS .mbr-date {
  color: #cacaca;
}
.cid-uwQyR0n7PS .mbr-desc {
  color: #cacaca;
}
.cid-uwQyR0J9dZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwQyR0J9dZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQyR0J9dZ .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-uwQyR0J9dZ .container {
    padding: 0 16px;
  }
}
.cid-uwQyR0J9dZ .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwQyR0J9dZ .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQyR0J9dZ .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwQyR0J9dZ .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQyR0J9dZ .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwQyR0J9dZ .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwQyR0J9dZ .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwQyR0J9dZ .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwQyR0J9dZ .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwQyR0J9dZ .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-uwQyR0J9dZ .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwQyR0J9dZ .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwQyR0J9dZ .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwQyR0J9dZ .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwQyR0J9dZ .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwQyR0J9dZ .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwQyR0J9dZ .dragArea.row .form-group .form-control:hover,
.cid-uwQyR0J9dZ .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwQyR0J9dZ .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwQyR0J9dZ .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwQyR0J9dZ .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwQyR0J9dZ .mbr-title {
  color: #ffffff;
}
.cid-uwQyR0J9dZ .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwQyR0J9dZ .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwQyR0J9dZ .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwQyR0J9dZ .list {
  color: #08323C;
}
.cid-uwQyR0J9dZ label {
  color: #08323C;
}
.cid-uwQyR0J9dZ H3 {
  color: #000000;
}
.cid-uwQyR0J9dZ P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwQL6bVi7O {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQL6bVi7O H1 {
  text-align: center;
}
.cid-uDmTj6q2lO {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmTj6q2lO .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmTj6q2lO .video-block {
    width: 100% !important;
  }
}
.cid-uwQL6cg7kB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQL6cw1RZ {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQL6cw1RZ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQL6cw1RZ .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQL6cw1RZ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQL6cw1RZ .box {
  left: 20%;
}
.cid-uwQL6cw1RZ .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwQL6cw1RZ .mbr-section-text,
.cid-uwQL6cw1RZ .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwQL6cw1RZ .text-box {
    display: none;
  }
  .cid-uwQL6cw1RZ .mbr-section-title,
  .cid-uwQL6cw1RZ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQL6cw1RZ .box {
    display: none;
  }
  .cid-uwQL6cw1RZ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQL6cw1RZ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQL6cw1RZ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQL6cw1RZ .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQL6cw1RZ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQL6cw1RZ .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQL6cOX98 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQL6cOX98 H1 {
  text-align: center;
}
.cid-uwQL6d2FrB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQL6dg1dd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQL6dg1dd h2 {
  text-align: left;
}
.cid-uwQL6dg1dd h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQL6dg1dd p {
  color: #767676;
  text-align: left;
}
.cid-uwQL6dg1dd .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQL6dg1dd .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQL6dg1dd .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQL6dg1dd .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQL6dg1dd .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQL6dg1dd .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQL6dg1dd .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQL6dg1dd .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQL6dg1dd .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQL6dg1dd H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwQL6dg1dd P {
  color: #ffffff;
  text-align: left;
}
.cid-uwQL6dg1dd H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwQL6dAKgq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQL6dAKgq H1 {
  color: #000000;
}
.cid-uxl0rMZcw9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl0rMZcw9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl0rMZcw9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl0rMZcw9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl0rMZcw9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl0rMZcw9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl0rMZcw9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl0rMZcw9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl0rMZcw9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl0rMZcw9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl0rMZcw9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl0rMZcw9 .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-uxl0rMZcw9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl0rMZcw9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl0rMZcw9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl0rMZcw9 .mbr-text,
.cid-uxl0rMZcw9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQL6ejuro {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQL6eEi18 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQL6eEi18 H1 {
  color: #000000;
}
.cid-uxl0uRFXjT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl0uRFXjT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl0uRFXjT .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl0uRFXjT .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl0uRFXjT .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl0uRFXjT .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl0uRFXjT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl0uRFXjT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl0uRFXjT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl0uRFXjT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl0uRFXjT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl0uRFXjT .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-uxl0uRFXjT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl0uRFXjT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl0uRFXjT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl0uRFXjT .mbr-text,
.cid-uxl0uRFXjT .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxl0vJvgoQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl0vJvgoQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl0vJvgoQ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl0vJvgoQ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl0vJvgoQ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl0vJvgoQ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl0vJvgoQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl0vJvgoQ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl0vJvgoQ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl0vJvgoQ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl0vJvgoQ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl0vJvgoQ .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-uxl0vJvgoQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl0vJvgoQ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl0vJvgoQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl0vJvgoQ .mbr-text,
.cid-uxl0vJvgoQ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQL6fRjx3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQL6fRjx3 H1 {
  color: #000000;
}
.cid-uwQL6g8Q4t {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwQL6g8Q4t h2 {
  text-align: left;
}
.cid-uwQL6g8Q4t h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQL6g8Q4t p {
  color: #767676;
  text-align: left;
}
.cid-uwQL6g8Q4t .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQL6g8Q4t .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQL6g8Q4t .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQL6g8Q4t .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQL6g8Q4t .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQL6g8Q4t .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQL6g8Q4t .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwQL6g8Q4t .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwQL6g8Q4t .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwQL6g8Q4t .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwQL6g8Q4t .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQL6gwlpU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQL6gwlpU H1 {
  color: #000000;
}
.cid-uwQL6gNsVH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQL6gNsVH .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQL6gNsVH .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQL6gNsVH .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQL6gNsVH .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwQL6gNsVH .box {
  right: 20%;
}
.cid-uwQL6gNsVH .text-box {
  right: 0;
}
.cid-uwQL6gNsVH .mbr-section-title,
.cid-uwQL6gNsVH .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwQL6gNsVH .text-box {
    display: none;
  }
  .cid-uwQL6gNsVH .mbr-section-title,
  .cid-uwQL6gNsVH .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQL6gNsVH .box {
    display: none;
  }
  .cid-uwQL6gNsVH .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQL6gNsVH .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQL6gNsVH .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQL6gNsVH .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQL6gNsVH .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQL6gNsVH .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQL6h6vjl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQL6hoGxu {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwQL6hoGxu h2 {
  text-align: left;
}
.cid-uwQL6hoGxu h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQL6hoGxu p {
  color: #767676;
  text-align: left;
}
.cid-uwQL6hoGxu .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQL6hoGxu .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQL6hoGxu .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQL6hoGxu .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQL6hoGxu .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQL6hoGxu .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQL6hoGxu .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQL6hoGxu .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQL6hoGxu .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQL6hoGxu .mbr-text {
  color: #232323;
}
.cid-uwQL6hHXyT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwQL6hHXyT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQL6hHXyT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQL6hHXyT .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwQL6hHXyT .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwQL6hHXyT .container {
    padding: 0 26px;
  }
}
.cid-uwQL6hHXyT .row {
  justify-content: center;
}
.cid-uwQL6hHXyT .item {
  margin-bottom: 32px;
}
.cid-uwQL6hHXyT .item a {
  display: block;
}
.cid-uwQL6hHXyT .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwQL6hHXyT .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwQL6hHXyT .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwQL6hHXyT .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-uwQL6hHXyT .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwQL6hHXyT .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwQL6hHXyT .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-uwQL6hHXyT .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwQL6hHXyT .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwQL6hHXyT .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwQL6hHXyT .item-title {
  color: #ffffff;
}
.cid-uwQL6hHXyT .mbr-date {
  color: #cacaca;
}
.cid-uwQL6hHXyT .mbr-desc {
  color: #cacaca;
}
.cid-uwQL6i1kxJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwQL6i1kxJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQL6i1kxJ .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-uwQL6i1kxJ .container {
    padding: 0 16px;
  }
}
.cid-uwQL6i1kxJ .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwQL6i1kxJ .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQL6i1kxJ .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwQL6i1kxJ .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQL6i1kxJ .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwQL6i1kxJ .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwQL6i1kxJ .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwQL6i1kxJ .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwQL6i1kxJ .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwQL6i1kxJ .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-uwQL6i1kxJ .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwQL6i1kxJ .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwQL6i1kxJ .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwQL6i1kxJ .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwQL6i1kxJ .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwQL6i1kxJ .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwQL6i1kxJ .dragArea.row .form-group .form-control:hover,
.cid-uwQL6i1kxJ .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwQL6i1kxJ .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwQL6i1kxJ .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwQL6i1kxJ .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwQL6i1kxJ .mbr-title {
  color: #ffffff;
}
.cid-uwQL6i1kxJ .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwQL6i1kxJ .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwQL6i1kxJ .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwQL6i1kxJ .list {
  color: #08323C;
}
.cid-uwQL6i1kxJ label {
  color: #08323C;
}
.cid-uwQL6i1kxJ H3 {
  color: #000000;
}
.cid-uwQL6i1kxJ P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwQLq99NpE {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQLq99NpE H1 {
  text-align: center;
}
.cid-uDmTmgLnBT {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmTmgLnBT .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmTmgLnBT .video-block {
    width: 100% !important;
  }
}
.cid-uwQLq9zpUe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQLq9Ryfx {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQLq9Ryfx .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQLq9Ryfx .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQLq9Ryfx .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQLq9Ryfx .box {
  left: 20%;
}
.cid-uwQLq9Ryfx .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwQLq9Ryfx .mbr-section-text,
.cid-uwQLq9Ryfx .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwQLq9Ryfx .text-box {
    display: none;
  }
  .cid-uwQLq9Ryfx .mbr-section-title,
  .cid-uwQLq9Ryfx .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQLq9Ryfx .box {
    display: none;
  }
  .cid-uwQLq9Ryfx .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQLq9Ryfx .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQLq9Ryfx .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQLq9Ryfx .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQLq9Ryfx .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQLq9Ryfx .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQLqa6z1l {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQLqa6z1l H1 {
  text-align: center;
}
.cid-uwQLqanwy3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQLqaDkqv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQLqaDkqv h2 {
  text-align: left;
}
.cid-uwQLqaDkqv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQLqaDkqv p {
  color: #767676;
  text-align: left;
}
.cid-uwQLqaDkqv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQLqaDkqv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQLqaDkqv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQLqaDkqv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQLqaDkqv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQLqaDkqv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQLqaDkqv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQLqaDkqv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQLqaDkqv .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQLqaDkqv H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwQLqaDkqv P {
  color: #ffffff;
  text-align: left;
}
.cid-uwQLqaDkqv H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwQLqb4Joi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQLqb4Joi H1 {
  color: #000000;
}
.cid-uxl0DGswqb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl0DGswqb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl0DGswqb .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl0DGswqb .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl0DGswqb .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl0DGswqb .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl0DGswqb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl0DGswqb .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl0DGswqb .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl0DGswqb .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl0DGswqb .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl0DGswqb .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-uxl0DGswqb .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl0DGswqb .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl0DGswqb .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl0DGswqb .mbr-text,
.cid-uxl0DGswqb .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQLqbOiln {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQLqcav2x {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQLqcav2x H1 {
  color: #000000;
}
.cid-uxl0EFZylU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl0EFZylU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl0EFZylU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl0EFZylU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl0EFZylU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl0EFZylU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl0EFZylU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl0EFZylU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl0EFZylU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl0EFZylU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl0EFZylU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl0EFZylU .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-uxl0EFZylU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl0EFZylU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl0EFZylU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl0EFZylU .mbr-text,
.cid-uxl0EFZylU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxl0FGuIBb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl0FGuIBb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl0FGuIBb .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl0FGuIBb .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl0FGuIBb .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl0FGuIBb .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl0FGuIBb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl0FGuIBb .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl0FGuIBb .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl0FGuIBb .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl0FGuIBb .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl0FGuIBb .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-uxl0FGuIBb .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl0FGuIBb .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl0FGuIBb .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl0FGuIBb .mbr-text,
.cid-uxl0FGuIBb .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQLqdz2Vs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQLqdz2Vs H1 {
  color: #000000;
}
.cid-uwQLqdQXlW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwQLqdQXlW h2 {
  text-align: left;
}
.cid-uwQLqdQXlW h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQLqdQXlW p {
  color: #767676;
  text-align: left;
}
.cid-uwQLqdQXlW .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQLqdQXlW .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQLqdQXlW .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQLqdQXlW .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQLqdQXlW .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQLqdQXlW .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQLqdQXlW .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwQLqdQXlW .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwQLqdQXlW .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwQLqdQXlW .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwQLqdQXlW .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQLqea0PC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQLqea0PC H1 {
  color: #000000;
}
.cid-uwQLqetGSB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQLqetGSB .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQLqetGSB .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQLqetGSB .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQLqetGSB .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwQLqetGSB .box {
  right: 20%;
}
.cid-uwQLqetGSB .text-box {
  right: 0;
}
.cid-uwQLqetGSB .mbr-section-title,
.cid-uwQLqetGSB .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwQLqetGSB .text-box {
    display: none;
  }
  .cid-uwQLqetGSB .mbr-section-title,
  .cid-uwQLqetGSB .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQLqetGSB .box {
    display: none;
  }
  .cid-uwQLqetGSB .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQLqetGSB .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQLqetGSB .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQLqetGSB .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQLqetGSB .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQLqetGSB .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQLqeMVxS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQLqf4icp {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwQLqf4icp h2 {
  text-align: left;
}
.cid-uwQLqf4icp h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQLqf4icp p {
  color: #767676;
  text-align: left;
}
.cid-uwQLqf4icp .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQLqf4icp .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQLqf4icp .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQLqf4icp .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQLqf4icp .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQLqf4icp .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQLqf4icp .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQLqf4icp .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQLqf4icp .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQLqf4icp .mbr-text {
  color: #232323;
}
.cid-uwQLqfqsMM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwQLqfqsMM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQLqfqsMM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQLqfqsMM .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwQLqfqsMM .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwQLqfqsMM .container {
    padding: 0 26px;
  }
}
.cid-uwQLqfqsMM .row {
  justify-content: center;
}
.cid-uwQLqfqsMM .item {
  margin-bottom: 32px;
}
.cid-uwQLqfqsMM .item a {
  display: block;
}
.cid-uwQLqfqsMM .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwQLqfqsMM .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwQLqfqsMM .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwQLqfqsMM .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-uwQLqfqsMM .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwQLqfqsMM .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwQLqfqsMM .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-uwQLqfqsMM .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwQLqfqsMM .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwQLqfqsMM .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwQLqfqsMM .item-title {
  color: #ffffff;
}
.cid-uwQLqfqsMM .mbr-date {
  color: #cacaca;
}
.cid-uwQLqfqsMM .mbr-desc {
  color: #cacaca;
}
.cid-uwQLqfLyDh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwQLqfLyDh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQLqfLyDh .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-uwQLqfLyDh .container {
    padding: 0 16px;
  }
}
.cid-uwQLqfLyDh .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwQLqfLyDh .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQLqfLyDh .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwQLqfLyDh .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQLqfLyDh .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwQLqfLyDh .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwQLqfLyDh .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwQLqfLyDh .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwQLqfLyDh .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwQLqfLyDh .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-uwQLqfLyDh .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwQLqfLyDh .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwQLqfLyDh .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwQLqfLyDh .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwQLqfLyDh .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwQLqfLyDh .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwQLqfLyDh .dragArea.row .form-group .form-control:hover,
.cid-uwQLqfLyDh .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwQLqfLyDh .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwQLqfLyDh .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwQLqfLyDh .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwQLqfLyDh .mbr-title {
  color: #ffffff;
}
.cid-uwQLqfLyDh .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwQLqfLyDh .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwQLqfLyDh .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwQLqfLyDh .list {
  color: #08323C;
}
.cid-uwQLqfLyDh label {
  color: #08323C;
}
.cid-uwQLqfLyDh H3 {
  color: #000000;
}
.cid-uwQLqfLyDh P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwQLKzQchm {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQLKzQchm H1 {
  text-align: center;
}
.cid-uDmTph36DX {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmTph36DX .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmTph36DX .video-block {
    width: 100% !important;
  }
}
.cid-uwQLKAcvL5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQLKAwXbp {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQLKAwXbp .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQLKAwXbp .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQLKAwXbp .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQLKAwXbp .box {
  left: 20%;
}
.cid-uwQLKAwXbp .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwQLKAwXbp .mbr-section-text,
.cid-uwQLKAwXbp .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwQLKAwXbp .text-box {
    display: none;
  }
  .cid-uwQLKAwXbp .mbr-section-title,
  .cid-uwQLKAwXbp .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQLKAwXbp .box {
    display: none;
  }
  .cid-uwQLKAwXbp .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQLKAwXbp .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQLKAwXbp .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQLKAwXbp .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQLKAwXbp .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQLKAwXbp .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQLKAMg8X {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQLKAMg8X H1 {
  text-align: center;
}
.cid-uwQLKB0E0A {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQLKBhuJP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQLKBhuJP h2 {
  text-align: left;
}
.cid-uwQLKBhuJP h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQLKBhuJP p {
  color: #767676;
  text-align: left;
}
.cid-uwQLKBhuJP .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQLKBhuJP .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQLKBhuJP .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQLKBhuJP .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQLKBhuJP .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQLKBhuJP .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQLKBhuJP .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQLKBhuJP .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQLKBhuJP .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQLKBhuJP H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwQLKBhuJP P {
  color: #ffffff;
  text-align: left;
}
.cid-uwQLKBhuJP H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwQLKBDNU3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQLKBDNU3 H1 {
  color: #000000;
}
.cid-uxl1i0lvRJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl1i0lvRJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl1i0lvRJ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl1i0lvRJ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl1i0lvRJ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl1i0lvRJ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl1i0lvRJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl1i0lvRJ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl1i0lvRJ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl1i0lvRJ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl1i0lvRJ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl1i0lvRJ .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-uxl1i0lvRJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl1i0lvRJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl1i0lvRJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl1i0lvRJ .mbr-text,
.cid-uxl1i0lvRJ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQLKCjR9s {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQLKCABWQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQLKCABWQ H1 {
  color: #000000;
}
.cid-uxl1kOvQ6u {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl1kOvQ6u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl1kOvQ6u .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl1kOvQ6u .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl1kOvQ6u .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl1kOvQ6u .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl1kOvQ6u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl1kOvQ6u .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl1kOvQ6u .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl1kOvQ6u .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl1kOvQ6u .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl1kOvQ6u .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-uxl1kOvQ6u .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl1kOvQ6u .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl1kOvQ6u .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl1kOvQ6u .mbr-text,
.cid-uxl1kOvQ6u .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxl1lOkKEC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl1lOkKEC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl1lOkKEC .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl1lOkKEC .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl1lOkKEC .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl1lOkKEC .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl1lOkKEC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl1lOkKEC .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl1lOkKEC .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl1lOkKEC .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl1lOkKEC .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl1lOkKEC .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-uxl1lOkKEC .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl1lOkKEC .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl1lOkKEC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl1lOkKEC .mbr-text,
.cid-uxl1lOkKEC .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQLKDGp0Q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQLKDGp0Q H1 {
  color: #000000;
}
.cid-uwQLKE0XPr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwQLKE0XPr h2 {
  text-align: left;
}
.cid-uwQLKE0XPr h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQLKE0XPr p {
  color: #767676;
  text-align: left;
}
.cid-uwQLKE0XPr .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQLKE0XPr .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQLKE0XPr .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQLKE0XPr .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQLKE0XPr .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQLKE0XPr .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQLKE0XPr .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwQLKE0XPr .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwQLKE0XPr .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwQLKE0XPr .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwQLKE0XPr .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQLKEnuM3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQLKEnuM3 H1 {
  color: #000000;
}
.cid-uwQLKEEl3q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQLKEEl3q .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQLKEEl3q .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQLKEEl3q .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQLKEEl3q .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwQLKEEl3q .box {
  right: 20%;
}
.cid-uwQLKEEl3q .text-box {
  right: 0;
}
.cid-uwQLKEEl3q .mbr-section-title,
.cid-uwQLKEEl3q .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwQLKEEl3q .text-box {
    display: none;
  }
  .cid-uwQLKEEl3q .mbr-section-title,
  .cid-uwQLKEEl3q .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQLKEEl3q .box {
    display: none;
  }
  .cid-uwQLKEEl3q .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQLKEEl3q .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQLKEEl3q .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQLKEEl3q .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQLKEEl3q .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQLKEEl3q .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQLKF0c5O {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQLKFhDKU {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwQLKFhDKU h2 {
  text-align: left;
}
.cid-uwQLKFhDKU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQLKFhDKU p {
  color: #767676;
  text-align: left;
}
.cid-uwQLKFhDKU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQLKFhDKU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQLKFhDKU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQLKFhDKU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQLKFhDKU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQLKFhDKU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQLKFhDKU .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQLKFhDKU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQLKFhDKU .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQLKFhDKU .mbr-text {
  color: #232323;
}
.cid-uwQLKFBKB4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwQLKFBKB4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQLKFBKB4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQLKFBKB4 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwQLKFBKB4 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwQLKFBKB4 .container {
    padding: 0 26px;
  }
}
.cid-uwQLKFBKB4 .row {
  justify-content: center;
}
.cid-uwQLKFBKB4 .item {
  margin-bottom: 32px;
}
.cid-uwQLKFBKB4 .item a {
  display: block;
}
.cid-uwQLKFBKB4 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwQLKFBKB4 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwQLKFBKB4 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwQLKFBKB4 .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-uwQLKFBKB4 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwQLKFBKB4 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwQLKFBKB4 .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-uwQLKFBKB4 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwQLKFBKB4 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwQLKFBKB4 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwQLKFBKB4 .item-title {
  color: #ffffff;
}
.cid-uwQLKFBKB4 .mbr-date {
  color: #cacaca;
}
.cid-uwQLKFBKB4 .mbr-desc {
  color: #cacaca;
}
.cid-uwQLKFWpiB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwQLKFWpiB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQLKFWpiB .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-uwQLKFWpiB .container {
    padding: 0 16px;
  }
}
.cid-uwQLKFWpiB .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwQLKFWpiB .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQLKFWpiB .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwQLKFWpiB .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQLKFWpiB .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwQLKFWpiB .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwQLKFWpiB .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwQLKFWpiB .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwQLKFWpiB .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwQLKFWpiB .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-uwQLKFWpiB .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwQLKFWpiB .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwQLKFWpiB .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwQLKFWpiB .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwQLKFWpiB .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwQLKFWpiB .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwQLKFWpiB .dragArea.row .form-group .form-control:hover,
.cid-uwQLKFWpiB .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwQLKFWpiB .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwQLKFWpiB .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwQLKFWpiB .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwQLKFWpiB .mbr-title {
  color: #ffffff;
}
.cid-uwQLKFWpiB .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwQLKFWpiB .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwQLKFWpiB .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwQLKFWpiB .list {
  color: #08323C;
}
.cid-uwQLKFWpiB label {
  color: #08323C;
}
.cid-uwQLKFWpiB H3 {
  color: #000000;
}
.cid-uwQLKFWpiB P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwQM5cMrPd {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQM5cMrPd H1 {
  text-align: center;
}
.cid-uDmTrKszIX {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmTrKszIX .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmTrKszIX .video-block {
    width: 100% !important;
  }
}
.cid-uwQM5d9Jn0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQM5dtvzM {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQM5dtvzM .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQM5dtvzM .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQM5dtvzM .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQM5dtvzM .box {
  left: 20%;
}
.cid-uwQM5dtvzM .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwQM5dtvzM .mbr-section-text,
.cid-uwQM5dtvzM .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwQM5dtvzM .text-box {
    display: none;
  }
  .cid-uwQM5dtvzM .mbr-section-title,
  .cid-uwQM5dtvzM .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQM5dtvzM .box {
    display: none;
  }
  .cid-uwQM5dtvzM .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQM5dtvzM .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQM5dtvzM .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQM5dtvzM .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQM5dtvzM .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQM5dtvzM .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQM5dM01W {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQM5dM01W H1 {
  text-align: center;
}
.cid-uwQM5e2gRq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQM5ehFAy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQM5ehFAy h2 {
  text-align: left;
}
.cid-uwQM5ehFAy h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQM5ehFAy p {
  color: #767676;
  text-align: left;
}
.cid-uwQM5ehFAy .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQM5ehFAy .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQM5ehFAy .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQM5ehFAy .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQM5ehFAy .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQM5ehFAy .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQM5ehFAy .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQM5ehFAy .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQM5ehFAy .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQM5ehFAy H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwQM5ehFAy P {
  color: #ffffff;
  text-align: left;
}
.cid-uwQM5ehFAy H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uwQM5eGko8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQM5eGko8 H1 {
  color: #000000;
}
.cid-uxl1C4f70F {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl1C4f70F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl1C4f70F .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl1C4f70F .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl1C4f70F .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl1C4f70F .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl1C4f70F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl1C4f70F .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl1C4f70F .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl1C4f70F .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl1C4f70F .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl1C4f70F .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-uxl1C4f70F .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl1C4f70F .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl1C4f70F .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl1C4f70F .mbr-text,
.cid-uxl1C4f70F .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQM5fsulu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQM5fIa0N {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQM5fIa0N H1 {
  color: #000000;
}
.cid-uxl1G5wW3z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl1G5wW3z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl1G5wW3z .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl1G5wW3z .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl1G5wW3z .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl1G5wW3z .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl1G5wW3z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl1G5wW3z .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl1G5wW3z .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl1G5wW3z .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl1G5wW3z .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl1G5wW3z .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-uxl1G5wW3z .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl1G5wW3z .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl1G5wW3z .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl1G5wW3z .mbr-text,
.cid-uxl1G5wW3z .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxl1GZurle {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl1GZurle .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl1GZurle .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl1GZurle .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl1GZurle .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl1GZurle .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl1GZurle .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl1GZurle .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl1GZurle .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl1GZurle .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl1GZurle .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl1GZurle .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-uxl1GZurle .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl1GZurle .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl1GZurle .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl1GZurle .mbr-text,
.cid-uxl1GZurle .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQM5h1m4t {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQM5h1m4t H1 {
  color: #000000;
}
.cid-uwQM5hkEsS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwQM5hkEsS h2 {
  text-align: left;
}
.cid-uwQM5hkEsS h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQM5hkEsS p {
  color: #767676;
  text-align: left;
}
.cid-uwQM5hkEsS .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQM5hkEsS .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQM5hkEsS .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQM5hkEsS .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQM5hkEsS .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQM5hkEsS .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQM5hkEsS .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwQM5hkEsS .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwQM5hkEsS .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwQM5hkEsS .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwQM5hkEsS .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQM5hKNg7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQM5hKNg7 H1 {
  color: #000000;
}
.cid-uwQM5i7wPR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQM5i7wPR .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQM5i7wPR .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQM5i7wPR .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQM5i7wPR .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwQM5i7wPR .box {
  right: 20%;
}
.cid-uwQM5i7wPR .text-box {
  right: 0;
}
.cid-uwQM5i7wPR .mbr-section-title,
.cid-uwQM5i7wPR .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwQM5i7wPR .text-box {
    display: none;
  }
  .cid-uwQM5i7wPR .mbr-section-title,
  .cid-uwQM5i7wPR .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQM5i7wPR .box {
    display: none;
  }
  .cid-uwQM5i7wPR .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQM5i7wPR .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQM5i7wPR .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQM5i7wPR .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQM5i7wPR .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQM5i7wPR .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQM5irAp9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQM5iLCGR {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwQM5iLCGR h2 {
  text-align: left;
}
.cid-uwQM5iLCGR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQM5iLCGR p {
  color: #767676;
  text-align: left;
}
.cid-uwQM5iLCGR .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQM5iLCGR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQM5iLCGR .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQM5iLCGR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQM5iLCGR .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQM5iLCGR .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQM5iLCGR .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQM5iLCGR .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQM5iLCGR .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQM5iLCGR .mbr-text {
  color: #232323;
}
.cid-uwQM5j6dl8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwQM5j6dl8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQM5j6dl8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQM5j6dl8 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwQM5j6dl8 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwQM5j6dl8 .container {
    padding: 0 26px;
  }
}
.cid-uwQM5j6dl8 .row {
  justify-content: center;
}
.cid-uwQM5j6dl8 .item {
  margin-bottom: 32px;
}
.cid-uwQM5j6dl8 .item a {
  display: block;
}
.cid-uwQM5j6dl8 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwQM5j6dl8 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwQM5j6dl8 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwQM5j6dl8 .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-uwQM5j6dl8 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwQM5j6dl8 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwQM5j6dl8 .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-uwQM5j6dl8 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwQM5j6dl8 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwQM5j6dl8 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwQM5j6dl8 .item-title {
  color: #ffffff;
}
.cid-uwQM5j6dl8 .mbr-date {
  color: #cacaca;
}
.cid-uwQM5j6dl8 .mbr-desc {
  color: #cacaca;
}
.cid-uwQM5juGf4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwQM5juGf4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQM5juGf4 .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-uwQM5juGf4 .container {
    padding: 0 16px;
  }
}
.cid-uwQM5juGf4 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwQM5juGf4 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQM5juGf4 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwQM5juGf4 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQM5juGf4 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwQM5juGf4 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwQM5juGf4 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwQM5juGf4 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwQM5juGf4 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwQM5juGf4 .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-uwQM5juGf4 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwQM5juGf4 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwQM5juGf4 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwQM5juGf4 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwQM5juGf4 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwQM5juGf4 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwQM5juGf4 .dragArea.row .form-group .form-control:hover,
.cid-uwQM5juGf4 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwQM5juGf4 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwQM5juGf4 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwQM5juGf4 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwQM5juGf4 .mbr-title {
  color: #ffffff;
}
.cid-uwQM5juGf4 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwQM5juGf4 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwQM5juGf4 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwQM5juGf4 .list {
  color: #08323C;
}
.cid-uwQM5juGf4 label {
  color: #08323C;
}
.cid-uwQM5juGf4 H3 {
  color: #000000;
}
.cid-uwQM5juGf4 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwQUehcvu7 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQUehcvu7 H1 {
  text-align: center;
}
.cid-uDmS2tAOxi {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmS2tAOxi .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmS2tAOxi .video-block {
    width: 100% !important;
  }
}
.cid-uwQUehDEbM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQUehV2JI {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwQUehV2JI .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQUehV2JI .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQUehV2JI .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQUehV2JI .box {
  left: 20%;
}
.cid-uwQUehV2JI .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwQUehV2JI .mbr-section-text,
.cid-uwQUehV2JI .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwQUehV2JI .text-box {
    display: none;
  }
  .cid-uwQUehV2JI .mbr-section-title,
  .cid-uwQUehV2JI .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQUehV2JI .box {
    display: none;
  }
  .cid-uwQUehV2JI .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQUehV2JI .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQUehV2JI .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQUehV2JI .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQUehV2JI .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQUehV2JI .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQUeieeWW {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQUeieeWW H1 {
  text-align: center;
}
.cid-uwQUeixhuY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQUeiOgt9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQUeiOgt9 h2 {
  text-align: left;
}
.cid-uwQUeiOgt9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQUeiOgt9 p {
  color: #767676;
  text-align: left;
}
.cid-uwQUeiOgt9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQUeiOgt9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQUeiOgt9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQUeiOgt9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQUeiOgt9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQUeiOgt9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQUeiOgt9 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQUeiOgt9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQUeiOgt9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQUeiOgt9 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwQUeiOgt9 P {
  color: #ffffff;
  text-align: left;
}
.cid-uwQUeiOgt9 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkT3tg7yV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkT3tg7yV H1 {
  color: #000000;
}
.cid-uxkT4mV1BJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkT4mV1BJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkT4mV1BJ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkT4mV1BJ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkT4mV1BJ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkT4mV1BJ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkT4mV1BJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkT4mV1BJ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkT4mV1BJ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkT4mV1BJ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkT4mV1BJ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkT4mV1BJ .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-uxkT4mV1BJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkT4mV1BJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkT4mV1BJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkT4mV1BJ .mbr-text,
.cid-uxkT4mV1BJ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQUejYO53 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQUekl1gx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQUekl1gx H1 {
  color: #000000;
}
.cid-uxkT595xLh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkT595xLh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkT595xLh .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkT595xLh .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkT595xLh .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkT595xLh .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkT595xLh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkT595xLh .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkT595xLh .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkT595xLh .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkT595xLh .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkT595xLh .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-uxkT595xLh .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkT595xLh .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkT595xLh .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkT595xLh .mbr-text,
.cid-uxkT595xLh .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkT5VG6b2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkT5VG6b2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkT5VG6b2 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkT5VG6b2 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkT5VG6b2 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkT5VG6b2 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkT5VG6b2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkT5VG6b2 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkT5VG6b2 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkT5VG6b2 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkT5VG6b2 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkT5VG6b2 .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-uxkT5VG6b2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkT5VG6b2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkT5VG6b2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkT5VG6b2 .mbr-text,
.cid-uxkT5VG6b2 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQUelUEsF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQUelUEsF H1 {
  color: #000000;
}
.cid-uwQUemhuQw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwQUemhuQw h2 {
  text-align: left;
}
.cid-uwQUemhuQw h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQUemhuQw p {
  color: #767676;
  text-align: left;
}
.cid-uwQUemhuQw .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQUemhuQw .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQUemhuQw .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQUemhuQw .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQUemhuQw .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQUemhuQw .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQUemhuQw .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwQUemhuQw .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwQUemhuQw .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwQUemhuQw .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwQUemhuQw .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQUemKsjO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQUemKsjO H1 {
  color: #000000;
}
.cid-uwQUen6ktX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQUen6ktX .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQUen6ktX .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQUen6ktX .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQUen6ktX .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwQUen6ktX .box {
  right: 20%;
}
.cid-uwQUen6ktX .text-box {
  right: 0;
}
.cid-uwQUen6ktX .mbr-section-title,
.cid-uwQUen6ktX .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwQUen6ktX .text-box {
    display: none;
  }
  .cid-uwQUen6ktX .mbr-section-title,
  .cid-uwQUen6ktX .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQUen6ktX .box {
    display: none;
  }
  .cid-uwQUen6ktX .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQUen6ktX .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQUen6ktX .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQUen6ktX .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQUen6ktX .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQUen6ktX .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQUenrHMk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQUenSJOW {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwQUenSJOW h2 {
  text-align: left;
}
.cid-uwQUenSJOW h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQUenSJOW p {
  color: #767676;
  text-align: left;
}
.cid-uwQUenSJOW .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQUenSJOW .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQUenSJOW .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQUenSJOW .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQUenSJOW .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQUenSJOW .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQUenSJOW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQUenSJOW .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQUenSJOW .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQUenSJOW .mbr-text {
  color: #232323;
}
.cid-uwQUeofu14 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwQUeofu14 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQUeofu14 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQUeofu14 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwQUeofu14 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwQUeofu14 .container {
    padding: 0 26px;
  }
}
.cid-uwQUeofu14 .row {
  justify-content: center;
}
.cid-uwQUeofu14 .item {
  margin-bottom: 32px;
}
.cid-uwQUeofu14 .item a {
  display: block;
}
.cid-uwQUeofu14 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwQUeofu14 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwQUeofu14 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwQUeofu14 .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-uwQUeofu14 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwQUeofu14 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwQUeofu14 .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-uwQUeofu14 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwQUeofu14 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwQUeofu14 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwQUeofu14 .item-title {
  color: #ffffff;
}
.cid-uwQUeofu14 .mbr-date {
  color: #cacaca;
}
.cid-uwQUeofu14 .mbr-desc {
  color: #cacaca;
}
.cid-uwQUeoEhfy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwQUeoEhfy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQUeoEhfy .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-uwQUeoEhfy .container {
    padding: 0 16px;
  }
}
.cid-uwQUeoEhfy .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwQUeoEhfy .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQUeoEhfy .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwQUeoEhfy .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQUeoEhfy .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwQUeoEhfy .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwQUeoEhfy .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwQUeoEhfy .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwQUeoEhfy .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwQUeoEhfy .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-uwQUeoEhfy .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwQUeoEhfy .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwQUeoEhfy .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwQUeoEhfy .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwQUeoEhfy .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwQUeoEhfy .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwQUeoEhfy .dragArea.row .form-group .form-control:hover,
.cid-uwQUeoEhfy .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwQUeoEhfy .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwQUeoEhfy .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwQUeoEhfy .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwQUeoEhfy .mbr-title {
  color: #ffffff;
}
.cid-uwQUeoEhfy .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwQUeoEhfy .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwQUeoEhfy .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwQUeoEhfy .list {
  color: #08323C;
}
.cid-uwQUeoEhfy label {
  color: #08323C;
}
.cid-uwQUeoEhfy H3 {
  color: #000000;
}
.cid-uwQUeoEhfy P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwQUzAGCvn {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQUzAGCvn H1 {
  text-align: center;
}
.cid-uDmS59Cw3W {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmS59Cw3W .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmS59Cw3W .video-block {
    width: 100% !important;
  }
}
.cid-uwQUzB64ZJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQUzBoUYi {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwQUzBoUYi .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQUzBoUYi .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQUzBoUYi .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQUzBoUYi .box {
  left: 20%;
}
.cid-uwQUzBoUYi .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwQUzBoUYi .mbr-section-text,
.cid-uwQUzBoUYi .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwQUzBoUYi .text-box {
    display: none;
  }
  .cid-uwQUzBoUYi .mbr-section-title,
  .cid-uwQUzBoUYi .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQUzBoUYi .box {
    display: none;
  }
  .cid-uwQUzBoUYi .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQUzBoUYi .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQUzBoUYi .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQUzBoUYi .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQUzBoUYi .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQUzBoUYi .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQUzBGtkV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQUzBGtkV H1 {
  text-align: center;
}
.cid-uwQUzBZ7Tq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQUzChJi7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQUzChJi7 h2 {
  text-align: left;
}
.cid-uwQUzChJi7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQUzChJi7 p {
  color: #767676;
  text-align: left;
}
.cid-uwQUzChJi7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQUzChJi7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQUzChJi7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQUzChJi7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQUzChJi7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQUzChJi7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQUzChJi7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQUzChJi7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQUzChJi7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQUzChJi7 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwQUzChJi7 P {
  color: #ffffff;
  text-align: left;
}
.cid-uwQUzChJi7 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkTuj01Eg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkTuj01Eg H1 {
  color: #000000;
}
.cid-uxkTvaPQSe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkTvaPQSe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkTvaPQSe .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkTvaPQSe .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkTvaPQSe .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkTvaPQSe .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkTvaPQSe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkTvaPQSe .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkTvaPQSe .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkTvaPQSe .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkTvaPQSe .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkTvaPQSe .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-uxkTvaPQSe .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkTvaPQSe .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkTvaPQSe .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkTvaPQSe .mbr-text,
.cid-uxkTvaPQSe .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQUzDrMRe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQUzDLBB2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQUzDLBB2 H1 {
  color: #000000;
}
.cid-uxkTvZ9vaS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkTvZ9vaS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkTvZ9vaS .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkTvZ9vaS .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkTvZ9vaS .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkTvZ9vaS .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkTvZ9vaS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkTvZ9vaS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkTvZ9vaS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkTvZ9vaS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkTvZ9vaS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkTvZ9vaS .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-uxkTvZ9vaS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkTvZ9vaS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkTvZ9vaS .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkTvZ9vaS .mbr-text,
.cid-uxkTvZ9vaS .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkTwJyOh7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkTwJyOh7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkTwJyOh7 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkTwJyOh7 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkTwJyOh7 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkTwJyOh7 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkTwJyOh7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkTwJyOh7 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkTwJyOh7 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkTwJyOh7 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkTwJyOh7 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkTwJyOh7 .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-uxkTwJyOh7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkTwJyOh7 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkTwJyOh7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkTwJyOh7 .mbr-text,
.cid-uxkTwJyOh7 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQUzF7A30 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQUzF7A30 H1 {
  color: #000000;
}
.cid-uwQUzFusk1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwQUzFusk1 h2 {
  text-align: left;
}
.cid-uwQUzFusk1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQUzFusk1 p {
  color: #767676;
  text-align: left;
}
.cid-uwQUzFusk1 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQUzFusk1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQUzFusk1 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQUzFusk1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQUzFusk1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQUzFusk1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQUzFusk1 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwQUzFusk1 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwQUzFusk1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwQUzFusk1 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwQUzFusk1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQUzFTYaA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQUzFTYaA H1 {
  color: #000000;
}
.cid-uwQUzGcluI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQUzGcluI .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQUzGcluI .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQUzGcluI .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQUzGcluI .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwQUzGcluI .box {
  right: 20%;
}
.cid-uwQUzGcluI .text-box {
  right: 0;
}
.cid-uwQUzGcluI .mbr-section-title,
.cid-uwQUzGcluI .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwQUzGcluI .text-box {
    display: none;
  }
  .cid-uwQUzGcluI .mbr-section-title,
  .cid-uwQUzGcluI .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQUzGcluI .box {
    display: none;
  }
  .cid-uwQUzGcluI .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQUzGcluI .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQUzGcluI .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQUzGcluI .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQUzGcluI .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQUzGcluI .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQUzGyBm8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQUzGVTIB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwQUzGVTIB h2 {
  text-align: left;
}
.cid-uwQUzGVTIB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQUzGVTIB p {
  color: #767676;
  text-align: left;
}
.cid-uwQUzGVTIB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQUzGVTIB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQUzGVTIB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQUzGVTIB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQUzGVTIB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQUzGVTIB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQUzGVTIB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQUzGVTIB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQUzGVTIB .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQUzGVTIB .mbr-text {
  color: #232323;
}
.cid-uwQUzHgOig {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwQUzHgOig .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQUzHgOig .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQUzHgOig .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwQUzHgOig .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwQUzHgOig .container {
    padding: 0 26px;
  }
}
.cid-uwQUzHgOig .row {
  justify-content: center;
}
.cid-uwQUzHgOig .item {
  margin-bottom: 32px;
}
.cid-uwQUzHgOig .item a {
  display: block;
}
.cid-uwQUzHgOig .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwQUzHgOig .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwQUzHgOig .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwQUzHgOig .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-uwQUzHgOig .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwQUzHgOig .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwQUzHgOig .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-uwQUzHgOig .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwQUzHgOig .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwQUzHgOig .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwQUzHgOig .item-title {
  color: #ffffff;
}
.cid-uwQUzHgOig .mbr-date {
  color: #cacaca;
}
.cid-uwQUzHgOig .mbr-desc {
  color: #cacaca;
}
.cid-uwQUzHFfig {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwQUzHFfig .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQUzHFfig .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-uwQUzHFfig .container {
    padding: 0 16px;
  }
}
.cid-uwQUzHFfig .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwQUzHFfig .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQUzHFfig .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwQUzHFfig .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQUzHFfig .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwQUzHFfig .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwQUzHFfig .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwQUzHFfig .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwQUzHFfig .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwQUzHFfig .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-uwQUzHFfig .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwQUzHFfig .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwQUzHFfig .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwQUzHFfig .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwQUzHFfig .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwQUzHFfig .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwQUzHFfig .dragArea.row .form-group .form-control:hover,
.cid-uwQUzHFfig .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwQUzHFfig .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwQUzHFfig .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwQUzHFfig .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwQUzHFfig .mbr-title {
  color: #ffffff;
}
.cid-uwQUzHFfig .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwQUzHFfig .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwQUzHFfig .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwQUzHFfig .list {
  color: #08323C;
}
.cid-uwQUzHFfig label {
  color: #08323C;
}
.cid-uwQUzHFfig H3 {
  color: #000000;
}
.cid-uwQUzHFfig P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwQUVuNley {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQUVuNley H1 {
  text-align: center;
}
.cid-uDmS7Q6Bl4 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmS7Q6Bl4 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmS7Q6Bl4 .video-block {
    width: 100% !important;
  }
}
.cid-uwQUVvckJU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQUVvw9Fl {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwQUVvw9Fl .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQUVvw9Fl .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQUVvw9Fl .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQUVvw9Fl .box {
  left: 20%;
}
.cid-uwQUVvw9Fl .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwQUVvw9Fl .mbr-section-text,
.cid-uwQUVvw9Fl .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwQUVvw9Fl .text-box {
    display: none;
  }
  .cid-uwQUVvw9Fl .mbr-section-title,
  .cid-uwQUVvw9Fl .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQUVvw9Fl .box {
    display: none;
  }
  .cid-uwQUVvw9Fl .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQUVvw9Fl .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQUVvw9Fl .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQUVvw9Fl .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQUVvw9Fl .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQUVvw9Fl .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQUVvPlZq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQUVvPlZq H1 {
  text-align: center;
}
.cid-uwQUVw7Itz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQUVwrOQ0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQUVwrOQ0 h2 {
  text-align: left;
}
.cid-uwQUVwrOQ0 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQUVwrOQ0 p {
  color: #767676;
  text-align: left;
}
.cid-uwQUVwrOQ0 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQUVwrOQ0 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQUVwrOQ0 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQUVwrOQ0 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQUVwrOQ0 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQUVwrOQ0 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQUVwrOQ0 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQUVwrOQ0 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQUVwrOQ0 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQUVwrOQ0 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwQUVwrOQ0 P {
  color: #ffffff;
  text-align: left;
}
.cid-uwQUVwrOQ0 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkTDsrdid {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkTDsrdid H1 {
  color: #000000;
}
.cid-uxkTEo6ADA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkTEo6ADA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkTEo6ADA .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkTEo6ADA .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkTEo6ADA .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkTEo6ADA .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkTEo6ADA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkTEo6ADA .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkTEo6ADA .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkTEo6ADA .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkTEo6ADA .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkTEo6ADA .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-uxkTEo6ADA .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkTEo6ADA .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkTEo6ADA .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkTEo6ADA .mbr-text,
.cid-uxkTEo6ADA .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQUVxyKrE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQUVxRdW0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQUVxRdW0 H1 {
  color: #000000;
}
.cid-uxkTFaIRVz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkTFaIRVz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkTFaIRVz .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkTFaIRVz .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkTFaIRVz .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkTFaIRVz .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkTFaIRVz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkTFaIRVz .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkTFaIRVz .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkTFaIRVz .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkTFaIRVz .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkTFaIRVz .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-uxkTFaIRVz .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkTFaIRVz .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkTFaIRVz .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkTFaIRVz .mbr-text,
.cid-uxkTFaIRVz .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkTG7aVUA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkTG7aVUA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkTG7aVUA .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkTG7aVUA .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkTG7aVUA .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkTG7aVUA .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkTG7aVUA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkTG7aVUA .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkTG7aVUA .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkTG7aVUA .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkTG7aVUA .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkTG7aVUA .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-uxkTG7aVUA .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkTG7aVUA .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkTG7aVUA .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkTG7aVUA .mbr-text,
.cid-uxkTG7aVUA .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQUVz9RvG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQUVz9RvG H1 {
  color: #000000;
}
.cid-uwQUVztmad {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwQUVztmad h2 {
  text-align: left;
}
.cid-uwQUVztmad h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQUVztmad p {
  color: #767676;
  text-align: left;
}
.cid-uwQUVztmad .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQUVztmad .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQUVztmad .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQUVztmad .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQUVztmad .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQUVztmad .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQUVztmad .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwQUVztmad .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwQUVztmad .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwQUVztmad .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwQUVztmad .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQUVzTulI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQUVzTulI H1 {
  color: #000000;
}
.cid-uwQUVAdkiZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQUVAdkiZ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQUVAdkiZ .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQUVAdkiZ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQUVAdkiZ .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwQUVAdkiZ .box {
  right: 20%;
}
.cid-uwQUVAdkiZ .text-box {
  right: 0;
}
.cid-uwQUVAdkiZ .mbr-section-title,
.cid-uwQUVAdkiZ .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwQUVAdkiZ .text-box {
    display: none;
  }
  .cid-uwQUVAdkiZ .mbr-section-title,
  .cid-uwQUVAdkiZ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQUVAdkiZ .box {
    display: none;
  }
  .cid-uwQUVAdkiZ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQUVAdkiZ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQUVAdkiZ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQUVAdkiZ .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQUVAdkiZ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQUVAdkiZ .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQUVAz54W {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQUVAVu1A {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwQUVAVu1A h2 {
  text-align: left;
}
.cid-uwQUVAVu1A h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQUVAVu1A p {
  color: #767676;
  text-align: left;
}
.cid-uwQUVAVu1A .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQUVAVu1A .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQUVAVu1A .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQUVAVu1A .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQUVAVu1A .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQUVAVu1A .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQUVAVu1A .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQUVAVu1A .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQUVAVu1A .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQUVAVu1A .mbr-text {
  color: #232323;
}
.cid-uwQUVBinqa {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwQUVBinqa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQUVBinqa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQUVBinqa .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwQUVBinqa .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwQUVBinqa .container {
    padding: 0 26px;
  }
}
.cid-uwQUVBinqa .row {
  justify-content: center;
}
.cid-uwQUVBinqa .item {
  margin-bottom: 32px;
}
.cid-uwQUVBinqa .item a {
  display: block;
}
.cid-uwQUVBinqa .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwQUVBinqa .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwQUVBinqa .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwQUVBinqa .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-uwQUVBinqa .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwQUVBinqa .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwQUVBinqa .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-uwQUVBinqa .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwQUVBinqa .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwQUVBinqa .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwQUVBinqa .item-title {
  color: #ffffff;
}
.cid-uwQUVBinqa .mbr-date {
  color: #cacaca;
}
.cid-uwQUVBinqa .mbr-desc {
  color: #cacaca;
}
.cid-uwQUVBIF4L {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwQUVBIF4L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQUVBIF4L .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-uwQUVBIF4L .container {
    padding: 0 16px;
  }
}
.cid-uwQUVBIF4L .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwQUVBIF4L .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQUVBIF4L .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwQUVBIF4L .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQUVBIF4L .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwQUVBIF4L .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwQUVBIF4L .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwQUVBIF4L .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwQUVBIF4L .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwQUVBIF4L .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-uwQUVBIF4L .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwQUVBIF4L .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwQUVBIF4L .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwQUVBIF4L .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwQUVBIF4L .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwQUVBIF4L .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwQUVBIF4L .dragArea.row .form-group .form-control:hover,
.cid-uwQUVBIF4L .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwQUVBIF4L .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwQUVBIF4L .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwQUVBIF4L .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwQUVBIF4L .mbr-title {
  color: #ffffff;
}
.cid-uwQUVBIF4L .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwQUVBIF4L .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwQUVBIF4L .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwQUVBIF4L .list {
  color: #08323C;
}
.cid-uwQUVBIF4L label {
  color: #08323C;
}
.cid-uwQUVBIF4L H3 {
  color: #000000;
}
.cid-uwQUVBIF4L P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwQVgkTbtU {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQVgkTbtU H1 {
  text-align: center;
}
.cid-uDmSarofhK {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmSarofhK .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmSarofhK .video-block {
    width: 100% !important;
  }
}
.cid-uwQVgljxBC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQVglD31L {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwQVglD31L .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQVglD31L .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQVglD31L .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQVglD31L .box {
  left: 20%;
}
.cid-uwQVglD31L .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwQVglD31L .mbr-section-text,
.cid-uwQVglD31L .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwQVglD31L .text-box {
    display: none;
  }
  .cid-uwQVglD31L .mbr-section-title,
  .cid-uwQVglD31L .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQVglD31L .box {
    display: none;
  }
  .cid-uwQVglD31L .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQVglD31L .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQVglD31L .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQVglD31L .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQVglD31L .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQVglD31L .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQVglZa51 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQVglZa51 H1 {
  text-align: center;
}
.cid-uwQVgmgiHk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQVgmxgTT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQVgmxgTT h2 {
  text-align: left;
}
.cid-uwQVgmxgTT h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQVgmxgTT p {
  color: #767676;
  text-align: left;
}
.cid-uwQVgmxgTT .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQVgmxgTT .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQVgmxgTT .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQVgmxgTT .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQVgmxgTT .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQVgmxgTT .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQVgmxgTT .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQVgmxgTT .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQVgmxgTT .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQVgmxgTT H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwQVgmxgTT P {
  color: #ffffff;
  text-align: left;
}
.cid-uwQVgmxgTT H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkTLLfwRb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkTLLfwRb H1 {
  color: #000000;
}
.cid-uxkTMDL9Y9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkTMDL9Y9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkTMDL9Y9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkTMDL9Y9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkTMDL9Y9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkTMDL9Y9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkTMDL9Y9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkTMDL9Y9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkTMDL9Y9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkTMDL9Y9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkTMDL9Y9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkTMDL9Y9 .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-uxkTMDL9Y9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkTMDL9Y9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkTMDL9Y9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkTMDL9Y9 .mbr-text,
.cid-uxkTMDL9Y9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQVgnJAz6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQVgo1Hbs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQVgo1Hbs H1 {
  color: #000000;
}
.cid-uxkTNqbibQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkTNqbibQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkTNqbibQ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkTNqbibQ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkTNqbibQ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkTNqbibQ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkTNqbibQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkTNqbibQ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkTNqbibQ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkTNqbibQ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkTNqbibQ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkTNqbibQ .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-uxkTNqbibQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkTNqbibQ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkTNqbibQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkTNqbibQ .mbr-text,
.cid-uxkTNqbibQ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkTOcTjRt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkTOcTjRt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkTOcTjRt .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkTOcTjRt .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkTOcTjRt .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkTOcTjRt .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkTOcTjRt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkTOcTjRt .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkTOcTjRt .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkTOcTjRt .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkTOcTjRt .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkTOcTjRt .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-uxkTOcTjRt .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkTOcTjRt .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkTOcTjRt .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkTOcTjRt .mbr-text,
.cid-uxkTOcTjRt .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQVgpox4r {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQVgpox4r H1 {
  color: #000000;
}
.cid-uwQVgpOAOA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwQVgpOAOA h2 {
  text-align: left;
}
.cid-uwQVgpOAOA h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQVgpOAOA p {
  color: #767676;
  text-align: left;
}
.cid-uwQVgpOAOA .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQVgpOAOA .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQVgpOAOA .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQVgpOAOA .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQVgpOAOA .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQVgpOAOA .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQVgpOAOA .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwQVgpOAOA .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwQVgpOAOA .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwQVgpOAOA .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwQVgpOAOA .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQVgqdLxn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQVgqdLxn H1 {
  color: #000000;
}
.cid-uwQVgqz7P1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQVgqz7P1 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQVgqz7P1 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQVgqz7P1 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQVgqz7P1 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwQVgqz7P1 .box {
  right: 20%;
}
.cid-uwQVgqz7P1 .text-box {
  right: 0;
}
.cid-uwQVgqz7P1 .mbr-section-title,
.cid-uwQVgqz7P1 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwQVgqz7P1 .text-box {
    display: none;
  }
  .cid-uwQVgqz7P1 .mbr-section-title,
  .cid-uwQVgqz7P1 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQVgqz7P1 .box {
    display: none;
  }
  .cid-uwQVgqz7P1 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQVgqz7P1 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQVgqz7P1 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQVgqz7P1 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQVgqz7P1 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQVgqz7P1 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQVgqVhVj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQVgrfscP {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwQVgrfscP h2 {
  text-align: left;
}
.cid-uwQVgrfscP h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQVgrfscP p {
  color: #767676;
  text-align: left;
}
.cid-uwQVgrfscP .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQVgrfscP .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQVgrfscP .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQVgrfscP .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQVgrfscP .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQVgrfscP .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQVgrfscP .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQVgrfscP .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQVgrfscP .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQVgrfscP .mbr-text {
  color: #232323;
}
.cid-uwQVgrFZ5n {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwQVgrFZ5n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQVgrFZ5n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQVgrFZ5n .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwQVgrFZ5n .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwQVgrFZ5n .container {
    padding: 0 26px;
  }
}
.cid-uwQVgrFZ5n .row {
  justify-content: center;
}
.cid-uwQVgrFZ5n .item {
  margin-bottom: 32px;
}
.cid-uwQVgrFZ5n .item a {
  display: block;
}
.cid-uwQVgrFZ5n .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwQVgrFZ5n .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwQVgrFZ5n .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwQVgrFZ5n .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-uwQVgrFZ5n .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwQVgrFZ5n .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwQVgrFZ5n .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-uwQVgrFZ5n .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwQVgrFZ5n .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwQVgrFZ5n .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwQVgrFZ5n .item-title {
  color: #ffffff;
}
.cid-uwQVgrFZ5n .mbr-date {
  color: #cacaca;
}
.cid-uwQVgrFZ5n .mbr-desc {
  color: #cacaca;
}
.cid-uwQVgs1Hgs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwQVgs1Hgs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQVgs1Hgs .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-uwQVgs1Hgs .container {
    padding: 0 16px;
  }
}
.cid-uwQVgs1Hgs .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwQVgs1Hgs .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQVgs1Hgs .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwQVgs1Hgs .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQVgs1Hgs .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwQVgs1Hgs .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwQVgs1Hgs .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwQVgs1Hgs .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwQVgs1Hgs .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwQVgs1Hgs .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-uwQVgs1Hgs .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwQVgs1Hgs .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwQVgs1Hgs .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwQVgs1Hgs .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwQVgs1Hgs .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwQVgs1Hgs .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwQVgs1Hgs .dragArea.row .form-group .form-control:hover,
.cid-uwQVgs1Hgs .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwQVgs1Hgs .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwQVgs1Hgs .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwQVgs1Hgs .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwQVgs1Hgs .mbr-title {
  color: #ffffff;
}
.cid-uwQVgs1Hgs .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwQVgs1Hgs .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwQVgs1Hgs .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwQVgs1Hgs .list {
  color: #08323C;
}
.cid-uwQVgs1Hgs label {
  color: #08323C;
}
.cid-uwQVgs1Hgs H3 {
  color: #000000;
}
.cid-uwQVgs1Hgs P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwRaynIjwE {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRaynIjwE H1 {
  text-align: center;
}
.cid-uDmSj5vHkw {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmSj5vHkw .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmSj5vHkw .video-block {
    width: 100% !important;
  }
}
.cid-uwRayo8F7i {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRayosaMu {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwRayosaMu .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwRayosaMu .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwRayosaMu .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwRayosaMu .box {
  left: 20%;
}
.cid-uwRayosaMu .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwRayosaMu .mbr-section-text,
.cid-uwRayosaMu .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwRayosaMu .text-box {
    display: none;
  }
  .cid-uwRayosaMu .mbr-section-title,
  .cid-uwRayosaMu .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwRayosaMu .box {
    display: none;
  }
  .cid-uwRayosaMu .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwRayosaMu .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwRayosaMu .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwRayosaMu .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwRayosaMu .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwRayosaMu .mbr-section-text DIV {
  text-align: center;
}
.cid-uwRayoPm2A {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRayoPm2A H1 {
  text-align: center;
}
.cid-uwRaypaT7z {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRaypuRl1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRaypuRl1 h2 {
  text-align: left;
}
.cid-uwRaypuRl1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRaypuRl1 p {
  color: #767676;
  text-align: left;
}
.cid-uwRaypuRl1 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRaypuRl1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRaypuRl1 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRaypuRl1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRaypuRl1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRaypuRl1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRaypuRl1 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwRaypuRl1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwRaypuRl1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRaypuRl1 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwRaypuRl1 P {
  color: #ffffff;
  text-align: left;
}
.cid-uwRaypuRl1 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkVOBcZFY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkVOBcZFY H1 {
  color: #000000;
}
.cid-uxkVPsrYRw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkVPsrYRw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkVPsrYRw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkVPsrYRw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkVPsrYRw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkVPsrYRw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkVPsrYRw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkVPsrYRw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkVPsrYRw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkVPsrYRw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkVPsrYRw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkVPsrYRw .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-uxkVPsrYRw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkVPsrYRw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkVPsrYRw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkVPsrYRw .mbr-text,
.cid-uxkVPsrYRw .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwRayqOUUV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRayr9dBE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwRayr9dBE H1 {
  color: #000000;
}
.cid-uxkVQca7uJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkVQca7uJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkVQca7uJ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkVQca7uJ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkVQca7uJ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkVQca7uJ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkVQca7uJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkVQca7uJ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkVQca7uJ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkVQca7uJ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkVQca7uJ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkVQca7uJ .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-uxkVQca7uJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkVQca7uJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkVQca7uJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkVQca7uJ .mbr-text,
.cid-uxkVQca7uJ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkVR5VIn9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkVR5VIn9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkVR5VIn9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkVR5VIn9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkVR5VIn9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkVR5VIn9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkVR5VIn9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkVR5VIn9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkVR5VIn9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkVR5VIn9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkVR5VIn9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkVR5VIn9 .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-uxkVR5VIn9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkVR5VIn9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkVR5VIn9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkVR5VIn9 .mbr-text,
.cid-uxkVR5VIn9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwRaysCIE9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwRaysCIE9 H1 {
  color: #000000;
}
.cid-uwRaysZpvG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwRaysZpvG h2 {
  text-align: left;
}
.cid-uwRaysZpvG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRaysZpvG p {
  color: #767676;
  text-align: left;
}
.cid-uwRaysZpvG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRaysZpvG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRaysZpvG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRaysZpvG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRaysZpvG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRaysZpvG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRaysZpvG .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwRaysZpvG .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwRaysZpvG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwRaysZpvG .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwRaysZpvG .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRaytrReG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwRaytrReG H1 {
  color: #000000;
}
.cid-uwRaytOr7h {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwRaytOr7h .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwRaytOr7h .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwRaytOr7h .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwRaytOr7h .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwRaytOr7h .box {
  right: 20%;
}
.cid-uwRaytOr7h .text-box {
  right: 0;
}
.cid-uwRaytOr7h .mbr-section-title,
.cid-uwRaytOr7h .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwRaytOr7h .text-box {
    display: none;
  }
  .cid-uwRaytOr7h .mbr-section-title,
  .cid-uwRaytOr7h .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwRaytOr7h .box {
    display: none;
  }
  .cid-uwRaytOr7h .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwRaytOr7h .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwRaytOr7h .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwRaytOr7h .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwRaytOr7h .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwRaytOr7h .mbr-section-text DIV {
  text-align: center;
}
.cid-uwRayugTSp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRayuFgos {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwRayuFgos h2 {
  text-align: left;
}
.cid-uwRayuFgos h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRayuFgos p {
  color: #767676;
  text-align: left;
}
.cid-uwRayuFgos .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRayuFgos .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRayuFgos .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRayuFgos .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRayuFgos .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRayuFgos .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRayuFgos .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwRayuFgos .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwRayuFgos .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRayuFgos .mbr-text {
  color: #232323;
}
.cid-ux7IMFuApt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7IMFuApt H1 {
  color: #000000;
}
.cid-uwRayv4hxh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwRayv4hxh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwRayv4hxh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwRayv4hxh .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwRayv4hxh .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwRayv4hxh .container {
    padding: 0 26px;
  }
}
.cid-uwRayv4hxh .row {
  justify-content: center;
}
.cid-uwRayv4hxh .item {
  margin-bottom: 32px;
}
.cid-uwRayv4hxh .item a {
  display: block;
}
.cid-uwRayv4hxh .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwRayv4hxh .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwRayv4hxh .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwRayv4hxh .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-uwRayv4hxh .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwRayv4hxh .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwRayv4hxh .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-uwRayv4hxh .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwRayv4hxh .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwRayv4hxh .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwRayv4hxh .item-title {
  color: #ffffff;
}
.cid-uwRayv4hxh .mbr-date {
  color: #cacaca;
}
.cid-uwRayv4hxh .mbr-desc {
  color: #cacaca;
}
.cid-uwRayvwfg3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwRayvwfg3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwRayvwfg3 .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-uwRayvwfg3 .container {
    padding: 0 16px;
  }
}
.cid-uwRayvwfg3 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwRayvwfg3 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwRayvwfg3 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwRayvwfg3 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwRayvwfg3 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwRayvwfg3 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwRayvwfg3 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwRayvwfg3 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwRayvwfg3 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwRayvwfg3 .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-uwRayvwfg3 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwRayvwfg3 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwRayvwfg3 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwRayvwfg3 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwRayvwfg3 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwRayvwfg3 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwRayvwfg3 .dragArea.row .form-group .form-control:hover,
.cid-uwRayvwfg3 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwRayvwfg3 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwRayvwfg3 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwRayvwfg3 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwRayvwfg3 .mbr-title {
  color: #ffffff;
}
.cid-uwRayvwfg3 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwRayvwfg3 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwRayvwfg3 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwRayvwfg3 .list {
  color: #08323C;
}
.cid-uwRayvwfg3 label {
  color: #08323C;
}
.cid-uwRayvwfg3 H3 {
  color: #000000;
}
.cid-uwRayvwfg3 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwRab4KkIz {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRab4KkIz H1 {
  text-align: center;
}
.cid-uDmSg5qNUv {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmSg5qNUv .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmSg5qNUv .video-block {
    width: 100% !important;
  }
}
.cid-uwRab5cG3s {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRab5ze9G {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwRab5ze9G .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwRab5ze9G .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwRab5ze9G .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwRab5ze9G .box {
  left: 20%;
}
.cid-uwRab5ze9G .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwRab5ze9G .mbr-section-text,
.cid-uwRab5ze9G .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwRab5ze9G .text-box {
    display: none;
  }
  .cid-uwRab5ze9G .mbr-section-title,
  .cid-uwRab5ze9G .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwRab5ze9G .box {
    display: none;
  }
  .cid-uwRab5ze9G .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwRab5ze9G .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwRab5ze9G .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwRab5ze9G .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwRab5ze9G .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwRab5ze9G .mbr-section-text DIV {
  text-align: center;
}
.cid-uwRab62HXV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRab62HXV H1 {
  text-align: center;
}
.cid-uwRab6oLwj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRab6IP2l {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRab6IP2l h2 {
  text-align: left;
}
.cid-uwRab6IP2l h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRab6IP2l p {
  color: #767676;
  text-align: left;
}
.cid-uwRab6IP2l .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRab6IP2l .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRab6IP2l .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRab6IP2l .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRab6IP2l .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRab6IP2l .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRab6IP2l .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwRab6IP2l .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwRab6IP2l .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRab6IP2l H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwRab6IP2l P {
  color: #ffffff;
  text-align: left;
}
.cid-uwRab6IP2l H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkUQZOjm2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkUQZOjm2 H1 {
  color: #000000;
}
.cid-uxkUS7b54P {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkUS7b54P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkUS7b54P .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkUS7b54P .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkUS7b54P .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkUS7b54P .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkUS7b54P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkUS7b54P .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkUS7b54P .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkUS7b54P .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkUS7b54P .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkUS7b54P .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-uxkUS7b54P .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkUS7b54P .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkUS7b54P .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkUS7b54P .mbr-text,
.cid-uxkUS7b54P .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwRab8blAI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRab8zzJf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwRab8zzJf H1 {
  color: #000000;
}
.cid-uxkUVpEZs1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkUVpEZs1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkUVpEZs1 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkUVpEZs1 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkUVpEZs1 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkUVpEZs1 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkUVpEZs1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkUVpEZs1 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkUVpEZs1 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkUVpEZs1 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkUVpEZs1 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkUVpEZs1 .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-uxkUVpEZs1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkUVpEZs1 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkUVpEZs1 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkUVpEZs1 .mbr-text,
.cid-uxkUVpEZs1 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkUWc0NFI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkUWc0NFI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkUWc0NFI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkUWc0NFI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkUWc0NFI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkUWc0NFI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkUWc0NFI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkUWc0NFI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkUWc0NFI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkUWc0NFI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkUWc0NFI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkUWc0NFI .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-uxkUWc0NFI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkUWc0NFI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkUWc0NFI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkUWc0NFI .mbr-text,
.cid-uxkUWc0NFI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwRabaaZ2o {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwRabaaZ2o H1 {
  color: #000000;
}
.cid-uwRabaBgVc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwRabaBgVc h2 {
  text-align: left;
}
.cid-uwRabaBgVc h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRabaBgVc p {
  color: #767676;
  text-align: left;
}
.cid-uwRabaBgVc .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRabaBgVc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRabaBgVc .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRabaBgVc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRabaBgVc .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRabaBgVc .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRabaBgVc .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwRabaBgVc .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwRabaBgVc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwRabaBgVc .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwRabaBgVc .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRabb4udo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwRabb4udo H1 {
  color: #000000;
}
.cid-uwRabbrp54 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwRabbrp54 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwRabbrp54 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwRabbrp54 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwRabbrp54 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwRabbrp54 .box {
  right: 20%;
}
.cid-uwRabbrp54 .text-box {
  right: 0;
}
.cid-uwRabbrp54 .mbr-section-title,
.cid-uwRabbrp54 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwRabbrp54 .text-box {
    display: none;
  }
  .cid-uwRabbrp54 .mbr-section-title,
  .cid-uwRabbrp54 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwRabbrp54 .box {
    display: none;
  }
  .cid-uwRabbrp54 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwRabbrp54 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwRabbrp54 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwRabbrp54 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwRabbrp54 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwRabbrp54 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwRabbU30c {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRabchx96 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwRabchx96 h2 {
  text-align: left;
}
.cid-uwRabchx96 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRabchx96 p {
  color: #767676;
  text-align: left;
}
.cid-uwRabchx96 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRabchx96 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRabchx96 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRabchx96 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRabchx96 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRabchx96 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRabchx96 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwRabchx96 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwRabchx96 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRabchx96 .mbr-text {
  color: #232323;
}
.cid-ux7I56wT6V {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7I56wT6V H1 {
  color: #000000;
}
.cid-uwRabcIxAf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwRabcIxAf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwRabcIxAf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwRabcIxAf .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwRabcIxAf .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwRabcIxAf .container {
    padding: 0 26px;
  }
}
.cid-uwRabcIxAf .row {
  justify-content: center;
}
.cid-uwRabcIxAf .item {
  margin-bottom: 32px;
}
.cid-uwRabcIxAf .item a {
  display: block;
}
.cid-uwRabcIxAf .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwRabcIxAf .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwRabcIxAf .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwRabcIxAf .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-uwRabcIxAf .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwRabcIxAf .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwRabcIxAf .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-uwRabcIxAf .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwRabcIxAf .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwRabcIxAf .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwRabcIxAf .item-title {
  color: #ffffff;
}
.cid-uwRabcIxAf .mbr-date {
  color: #cacaca;
}
.cid-uwRabcIxAf .mbr-desc {
  color: #cacaca;
}
.cid-uwRabdcVau {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwRabdcVau .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwRabdcVau .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-uwRabdcVau .container {
    padding: 0 16px;
  }
}
.cid-uwRabdcVau .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwRabdcVau .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwRabdcVau .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwRabdcVau .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwRabdcVau .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwRabdcVau .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwRabdcVau .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwRabdcVau .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwRabdcVau .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwRabdcVau .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-uwRabdcVau .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwRabdcVau .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwRabdcVau .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwRabdcVau .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwRabdcVau .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwRabdcVau .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwRabdcVau .dragArea.row .form-group .form-control:hover,
.cid-uwRabdcVau .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwRabdcVau .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwRabdcVau .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwRabdcVau .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwRabdcVau .mbr-title {
  color: #ffffff;
}
.cid-uwRabdcVau .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwRabdcVau .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwRabdcVau .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwRabdcVau .list {
  color: #08323C;
}
.cid-uwRabdcVau label {
  color: #08323C;
}
.cid-uwRabdcVau H3 {
  color: #000000;
}
.cid-uwRabdcVau P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwRblfnKvS {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRblfnKvS H1 {
  text-align: center;
}
.cid-uDmSmcODFp {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmSmcODFp .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmSmcODFp .video-block {
    width: 100% !important;
  }
}
.cid-uwRblfSW1C {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRblgdQO5 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwRblgdQO5 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwRblgdQO5 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwRblgdQO5 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwRblgdQO5 .box {
  left: 20%;
}
.cid-uwRblgdQO5 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwRblgdQO5 .mbr-section-text,
.cid-uwRblgdQO5 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwRblgdQO5 .text-box {
    display: none;
  }
  .cid-uwRblgdQO5 .mbr-section-title,
  .cid-uwRblgdQO5 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwRblgdQO5 .box {
    display: none;
  }
  .cid-uwRblgdQO5 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwRblgdQO5 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwRblgdQO5 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwRblgdQO5 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwRblgdQO5 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwRblgdQO5 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwRblgze8g {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRblgze8g H1 {
  text-align: center;
}
.cid-uwRblgVjO9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRblhf1p0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRblhf1p0 h2 {
  text-align: left;
}
.cid-uwRblhf1p0 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRblhf1p0 p {
  color: #767676;
  text-align: left;
}
.cid-uwRblhf1p0 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRblhf1p0 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRblhf1p0 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRblhf1p0 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRblhf1p0 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRblhf1p0 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRblhf1p0 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwRblhf1p0 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwRblhf1p0 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRblhf1p0 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwRblhf1p0 P {
  color: #ffffff;
  text-align: left;
}
.cid-uwRblhf1p0 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkWinj3oY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkWinj3oY H1 {
  color: #000000;
}
.cid-uxkWjPIa93 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkWjPIa93 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkWjPIa93 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkWjPIa93 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkWjPIa93 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkWjPIa93 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkWjPIa93 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkWjPIa93 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkWjPIa93 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkWjPIa93 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkWjPIa93 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkWjPIa93 .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-uxkWjPIa93 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkWjPIa93 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkWjPIa93 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkWjPIa93 .mbr-text,
.cid-uxkWjPIa93 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwRbliBkmg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRbliZskH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwRbliZskH H1 {
  color: #000000;
}
.cid-uxkWkVTwNd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkWkVTwNd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkWkVTwNd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkWkVTwNd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkWkVTwNd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkWkVTwNd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkWkVTwNd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkWkVTwNd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkWkVTwNd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkWkVTwNd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkWkVTwNd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkWkVTwNd .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-uxkWkVTwNd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkWkVTwNd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkWkVTwNd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkWkVTwNd .mbr-text,
.cid-uxkWkVTwNd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkWlIIN1M {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkWlIIN1M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkWlIIN1M .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkWlIIN1M .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkWlIIN1M .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkWlIIN1M .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkWlIIN1M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkWlIIN1M .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkWlIIN1M .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkWlIIN1M .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkWlIIN1M .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkWlIIN1M .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-uxkWlIIN1M .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkWlIIN1M .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkWlIIN1M .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkWlIIN1M .mbr-text,
.cid-uxkWlIIN1M .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwRblkxc2Y {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwRblkxc2Y H1 {
  color: #000000;
}
.cid-uwRblkZ7Ks {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwRblkZ7Ks h2 {
  text-align: left;
}
.cid-uwRblkZ7Ks h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRblkZ7Ks p {
  color: #767676;
  text-align: left;
}
.cid-uwRblkZ7Ks .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRblkZ7Ks .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRblkZ7Ks .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRblkZ7Ks .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRblkZ7Ks .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRblkZ7Ks .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRblkZ7Ks .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwRblkZ7Ks .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwRblkZ7Ks .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwRblkZ7Ks .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwRblkZ7Ks .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRbllqY9R {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwRbllqY9R H1 {
  color: #000000;
}
.cid-uwRbllQm7W {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwRbllQm7W .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwRbllQm7W .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwRbllQm7W .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwRbllQm7W .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwRbllQm7W .box {
  right: 20%;
}
.cid-uwRbllQm7W .text-box {
  right: 0;
}
.cid-uwRbllQm7W .mbr-section-title,
.cid-uwRbllQm7W .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwRbllQm7W .text-box {
    display: none;
  }
  .cid-uwRbllQm7W .mbr-section-title,
  .cid-uwRbllQm7W .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwRbllQm7W .box {
    display: none;
  }
  .cid-uwRbllQm7W .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwRbllQm7W .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwRbllQm7W .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwRbllQm7W .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwRbllQm7W .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwRbllQm7W .mbr-section-text DIV {
  text-align: center;
}
.cid-uwRblmhEMw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRblmH6aS {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwRblmH6aS h2 {
  text-align: left;
}
.cid-uwRblmH6aS h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRblmH6aS p {
  color: #767676;
  text-align: left;
}
.cid-uwRblmH6aS .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRblmH6aS .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRblmH6aS .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRblmH6aS .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRblmH6aS .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRblmH6aS .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRblmH6aS .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwRblmH6aS .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwRblmH6aS .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRblmH6aS .mbr-text {
  color: #232323;
}
.cid-ux7IThrRXw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7IThrRXw H1 {
  color: #000000;
}
.cid-uwRbln7UJu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwRbln7UJu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwRbln7UJu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwRbln7UJu .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwRbln7UJu .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwRbln7UJu .container {
    padding: 0 26px;
  }
}
.cid-uwRbln7UJu .row {
  justify-content: center;
}
.cid-uwRbln7UJu .item {
  margin-bottom: 32px;
}
.cid-uwRbln7UJu .item a {
  display: block;
}
.cid-uwRbln7UJu .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwRbln7UJu .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwRbln7UJu .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwRbln7UJu .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-uwRbln7UJu .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwRbln7UJu .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwRbln7UJu .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-uwRbln7UJu .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwRbln7UJu .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwRbln7UJu .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwRbln7UJu .item-title {
  color: #ffffff;
}
.cid-uwRbln7UJu .mbr-date {
  color: #cacaca;
}
.cid-uwRbln7UJu .mbr-desc {
  color: #cacaca;
}
.cid-uwRblnzl5z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwRblnzl5z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwRblnzl5z .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-uwRblnzl5z .container {
    padding: 0 16px;
  }
}
.cid-uwRblnzl5z .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwRblnzl5z .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwRblnzl5z .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwRblnzl5z .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwRblnzl5z .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwRblnzl5z .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwRblnzl5z .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwRblnzl5z .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwRblnzl5z .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwRblnzl5z .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-uwRblnzl5z .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwRblnzl5z .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwRblnzl5z .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwRblnzl5z .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwRblnzl5z .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwRblnzl5z .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwRblnzl5z .dragArea.row .form-group .form-control:hover,
.cid-uwRblnzl5z .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwRblnzl5z .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwRblnzl5z .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwRblnzl5z .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwRblnzl5z .mbr-title {
  color: #ffffff;
}
.cid-uwRblnzl5z .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwRblnzl5z .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwRblnzl5z .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwRblnzl5z .list {
  color: #08323C;
}
.cid-uwRblnzl5z label {
  color: #08323C;
}
.cid-uwRblnzl5z H3 {
  color: #000000;
}
.cid-uwRblnzl5z P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwRbHBnE2c {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRbHBnE2c H1 {
  text-align: center;
}
.cid-uDmSrTbRwL {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmSrTbRwL .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmSrTbRwL .video-block {
    width: 100% !important;
  }
}
.cid-uwRbHBYwUN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRbHCnxZ9 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwRbHCnxZ9 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwRbHCnxZ9 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwRbHCnxZ9 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwRbHCnxZ9 .box {
  left: 20%;
}
.cid-uwRbHCnxZ9 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwRbHCnxZ9 .mbr-section-text,
.cid-uwRbHCnxZ9 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwRbHCnxZ9 .text-box {
    display: none;
  }
  .cid-uwRbHCnxZ9 .mbr-section-title,
  .cid-uwRbHCnxZ9 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwRbHCnxZ9 .box {
    display: none;
  }
  .cid-uwRbHCnxZ9 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwRbHCnxZ9 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwRbHCnxZ9 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwRbHCnxZ9 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwRbHCnxZ9 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwRbHCnxZ9 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwRbHCNi6i {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRbHCNi6i H1 {
  text-align: center;
}
.cid-uwRbHDjcmA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRbHDHd8c {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRbHDHd8c h2 {
  text-align: left;
}
.cid-uwRbHDHd8c h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRbHDHd8c p {
  color: #767676;
  text-align: left;
}
.cid-uwRbHDHd8c .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRbHDHd8c .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRbHDHd8c .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRbHDHd8c .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRbHDHd8c .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRbHDHd8c .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRbHDHd8c .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwRbHDHd8c .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwRbHDHd8c .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRbHDHd8c H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwRbHDHd8c P {
  color: #ffffff;
  text-align: left;
}
.cid-uwRbHDHd8c H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkWs2WErZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkWs2WErZ H1 {
  color: #000000;
}
.cid-uxkWt310ej {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkWt310ej .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkWt310ej .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkWt310ej .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkWt310ej .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkWt310ej .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkWt310ej .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkWt310ej .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkWt310ej .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkWt310ej .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkWt310ej .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkWt310ej .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-uxkWt310ej .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkWt310ej .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkWt310ej .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkWt310ej .mbr-text,
.cid-uxkWt310ej .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwRbHFp5Tx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRbHFSVZk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwRbHFSVZk H1 {
  color: #000000;
}
.cid-uxkWtZxI5z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkWtZxI5z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkWtZxI5z .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkWtZxI5z .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkWtZxI5z .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkWtZxI5z .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkWtZxI5z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkWtZxI5z .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkWtZxI5z .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkWtZxI5z .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkWtZxI5z .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkWtZxI5z .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-uxkWtZxI5z .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkWtZxI5z .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkWtZxI5z .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkWtZxI5z .mbr-text,
.cid-uxkWtZxI5z .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkWv1vuW9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkWv1vuW9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkWv1vuW9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkWv1vuW9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkWv1vuW9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkWv1vuW9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkWv1vuW9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkWv1vuW9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkWv1vuW9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkWv1vuW9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkWv1vuW9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkWv1vuW9 .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-uxkWv1vuW9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkWv1vuW9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkWv1vuW9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkWv1vuW9 .mbr-text,
.cid-uxkWv1vuW9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwRbHHGAIz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwRbHHGAIz H1 {
  color: #000000;
}
.cid-uwRbHI7JBt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwRbHI7JBt h2 {
  text-align: left;
}
.cid-uwRbHI7JBt h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRbHI7JBt p {
  color: #767676;
  text-align: left;
}
.cid-uwRbHI7JBt .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRbHI7JBt .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRbHI7JBt .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRbHI7JBt .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRbHI7JBt .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRbHI7JBt .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRbHI7JBt .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwRbHI7JBt .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwRbHI7JBt .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwRbHI7JBt .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwRbHI7JBt .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRbHIIU4i {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwRbHIIU4i H1 {
  color: #000000;
}
.cid-uwRbHJbW5U {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwRbHJbW5U .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwRbHJbW5U .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwRbHJbW5U .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwRbHJbW5U .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwRbHJbW5U .box {
  right: 20%;
}
.cid-uwRbHJbW5U .text-box {
  right: 0;
}
.cid-uwRbHJbW5U .mbr-section-title,
.cid-uwRbHJbW5U .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwRbHJbW5U .text-box {
    display: none;
  }
  .cid-uwRbHJbW5U .mbr-section-title,
  .cid-uwRbHJbW5U .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwRbHJbW5U .box {
    display: none;
  }
  .cid-uwRbHJbW5U .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwRbHJbW5U .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwRbHJbW5U .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwRbHJbW5U .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwRbHJbW5U .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwRbHJbW5U .mbr-section-text DIV {
  text-align: center;
}
.cid-uwRbHJFAZK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRbHKcw6Y {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwRbHKcw6Y h2 {
  text-align: left;
}
.cid-uwRbHKcw6Y h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRbHKcw6Y p {
  color: #767676;
  text-align: left;
}
.cid-uwRbHKcw6Y .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRbHKcw6Y .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRbHKcw6Y .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRbHKcw6Y .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRbHKcw6Y .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRbHKcw6Y .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRbHKcw6Y .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwRbHKcw6Y .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwRbHKcw6Y .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRbHKcw6Y .mbr-text {
  color: #232323;
}
.cid-ux7IZVglKJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7IZVglKJ H1 {
  color: #000000;
}
.cid-uwRbHKHNgT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwRbHKHNgT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwRbHKHNgT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwRbHKHNgT .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwRbHKHNgT .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwRbHKHNgT .container {
    padding: 0 26px;
  }
}
.cid-uwRbHKHNgT .row {
  justify-content: center;
}
.cid-uwRbHKHNgT .item {
  margin-bottom: 32px;
}
.cid-uwRbHKHNgT .item a {
  display: block;
}
.cid-uwRbHKHNgT .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwRbHKHNgT .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwRbHKHNgT .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwRbHKHNgT .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-uwRbHKHNgT .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwRbHKHNgT .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwRbHKHNgT .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-uwRbHKHNgT .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwRbHKHNgT .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwRbHKHNgT .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwRbHKHNgT .item-title {
  color: #ffffff;
}
.cid-uwRbHKHNgT .mbr-date {
  color: #cacaca;
}
.cid-uwRbHKHNgT .mbr-desc {
  color: #cacaca;
}
.cid-uwRbHLiRXD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwRbHLiRXD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwRbHLiRXD .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-uwRbHLiRXD .container {
    padding: 0 16px;
  }
}
.cid-uwRbHLiRXD .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwRbHLiRXD .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwRbHLiRXD .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwRbHLiRXD .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwRbHLiRXD .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwRbHLiRXD .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwRbHLiRXD .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwRbHLiRXD .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwRbHLiRXD .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwRbHLiRXD .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-uwRbHLiRXD .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwRbHLiRXD .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwRbHLiRXD .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwRbHLiRXD .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwRbHLiRXD .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwRbHLiRXD .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwRbHLiRXD .dragArea.row .form-group .form-control:hover,
.cid-uwRbHLiRXD .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwRbHLiRXD .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwRbHLiRXD .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwRbHLiRXD .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwRbHLiRXD .mbr-title {
  color: #ffffff;
}
.cid-uwRbHLiRXD .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwRbHLiRXD .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwRbHLiRXD .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwRbHLiRXD .list {
  color: #08323C;
}
.cid-uwRbHLiRXD label {
  color: #08323C;
}
.cid-uwRbHLiRXD H3 {
  color: #000000;
}
.cid-uwRbHLiRXD P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwRceCfVak {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRceCfVak H1 {
  text-align: center;
}
.cid-uDmSuLGVnP {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmSuLGVnP .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmSuLGVnP .video-block {
    width: 100% !important;
  }
}
.cid-uwRceCLMdx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRceDbZ3Y {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwRceDbZ3Y .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwRceDbZ3Y .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwRceDbZ3Y .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwRceDbZ3Y .box {
  left: 20%;
}
.cid-uwRceDbZ3Y .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwRceDbZ3Y .mbr-section-text,
.cid-uwRceDbZ3Y .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwRceDbZ3Y .text-box {
    display: none;
  }
  .cid-uwRceDbZ3Y .mbr-section-title,
  .cid-uwRceDbZ3Y .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwRceDbZ3Y .box {
    display: none;
  }
  .cid-uwRceDbZ3Y .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwRceDbZ3Y .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwRceDbZ3Y .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwRceDbZ3Y .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwRceDbZ3Y .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwRceDbZ3Y .mbr-section-text DIV {
  text-align: center;
}
.cid-uwRceDFbqN {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRceDFbqN H1 {
  text-align: center;
}
.cid-uwRceE8WEJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRceEwdTu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRceEwdTu h2 {
  text-align: left;
}
.cid-uwRceEwdTu h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRceEwdTu p {
  color: #767676;
  text-align: left;
}
.cid-uwRceEwdTu .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRceEwdTu .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRceEwdTu .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRceEwdTu .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRceEwdTu .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRceEwdTu .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRceEwdTu .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwRceEwdTu .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwRceEwdTu .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRceEwdTu H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwRceEwdTu P {
  color: #ffffff;
  text-align: left;
}
.cid-uwRceEwdTu H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkWEDUf5C {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkWEDUf5C H1 {
  color: #000000;
}
.cid-uxkWFG9sWC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkWFG9sWC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkWFG9sWC .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkWFG9sWC .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkWFG9sWC .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkWFG9sWC .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkWFG9sWC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkWFG9sWC .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkWFG9sWC .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkWFG9sWC .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkWFG9sWC .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkWFG9sWC .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-uxkWFG9sWC .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkWFG9sWC .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkWFG9sWC .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkWFG9sWC .mbr-text,
.cid-uxkWFG9sWC .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwRceGdjmT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRceGGCPx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwRceGGCPx H1 {
  color: #000000;
}
.cid-uxkWGrw9I9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkWGrw9I9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkWGrw9I9 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkWGrw9I9 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkWGrw9I9 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkWGrw9I9 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkWGrw9I9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkWGrw9I9 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkWGrw9I9 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkWGrw9I9 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkWGrw9I9 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkWGrw9I9 .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-uxkWGrw9I9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkWGrw9I9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkWGrw9I9 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkWGrw9I9 .mbr-text,
.cid-uxkWGrw9I9 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkWHnnoMI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkWHnnoMI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkWHnnoMI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkWHnnoMI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkWHnnoMI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkWHnnoMI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkWHnnoMI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkWHnnoMI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkWHnnoMI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkWHnnoMI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkWHnnoMI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkWHnnoMI .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-uxkWHnnoMI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkWHnnoMI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkWHnnoMI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkWHnnoMI .mbr-text,
.cid-uxkWHnnoMI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwRceIvCkd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwRceIvCkd H1 {
  color: #000000;
}
.cid-uwRceIYwCn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwRceIYwCn h2 {
  text-align: left;
}
.cid-uwRceIYwCn h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRceIYwCn p {
  color: #767676;
  text-align: left;
}
.cid-uwRceIYwCn .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRceIYwCn .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRceIYwCn .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRceIYwCn .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRceIYwCn .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRceIYwCn .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRceIYwCn .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwRceIYwCn .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwRceIYwCn .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwRceIYwCn .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwRceIYwCn .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRceJAa1o {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwRceJAa1o H1 {
  color: #000000;
}
.cid-uwRceK1xpd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwRceK1xpd .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwRceK1xpd .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwRceK1xpd .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwRceK1xpd .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwRceK1xpd .box {
  right: 20%;
}
.cid-uwRceK1xpd .text-box {
  right: 0;
}
.cid-uwRceK1xpd .mbr-section-title,
.cid-uwRceK1xpd .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwRceK1xpd .text-box {
    display: none;
  }
  .cid-uwRceK1xpd .mbr-section-title,
  .cid-uwRceK1xpd .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwRceK1xpd .box {
    display: none;
  }
  .cid-uwRceK1xpd .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwRceK1xpd .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwRceK1xpd .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwRceK1xpd .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwRceK1xpd .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwRceK1xpd .mbr-section-text DIV {
  text-align: center;
}
.cid-uwRceKyYq7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRceL2FNy {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwRceL2FNy h2 {
  text-align: left;
}
.cid-uwRceL2FNy h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRceL2FNy p {
  color: #767676;
  text-align: left;
}
.cid-uwRceL2FNy .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRceL2FNy .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRceL2FNy .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRceL2FNy .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRceL2FNy .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRceL2FNy .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRceL2FNy .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwRceL2FNy .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwRceL2FNy .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRceL2FNy .mbr-text {
  color: #232323;
}
.cid-ux7J4YEAXS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7J4YEAXS H1 {
  color: #000000;
}
.cid-uwRceLBl7e {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwRceLBl7e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwRceLBl7e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwRceLBl7e .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwRceLBl7e .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwRceLBl7e .container {
    padding: 0 26px;
  }
}
.cid-uwRceLBl7e .row {
  justify-content: center;
}
.cid-uwRceLBl7e .item {
  margin-bottom: 32px;
}
.cid-uwRceLBl7e .item a {
  display: block;
}
.cid-uwRceLBl7e .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwRceLBl7e .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwRceLBl7e .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwRceLBl7e .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-uwRceLBl7e .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwRceLBl7e .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwRceLBl7e .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-uwRceLBl7e .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwRceLBl7e .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwRceLBl7e .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwRceLBl7e .item-title {
  color: #ffffff;
}
.cid-uwRceLBl7e .mbr-date {
  color: #cacaca;
}
.cid-uwRceLBl7e .mbr-desc {
  color: #cacaca;
}
.cid-uwRceM7hZV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwRceM7hZV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwRceM7hZV .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-uwRceM7hZV .container {
    padding: 0 16px;
  }
}
.cid-uwRceM7hZV .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwRceM7hZV .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwRceM7hZV .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwRceM7hZV .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwRceM7hZV .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwRceM7hZV .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwRceM7hZV .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwRceM7hZV .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwRceM7hZV .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwRceM7hZV .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-uwRceM7hZV .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwRceM7hZV .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwRceM7hZV .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwRceM7hZV .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwRceM7hZV .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwRceM7hZV .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwRceM7hZV .dragArea.row .form-group .form-control:hover,
.cid-uwRceM7hZV .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwRceM7hZV .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwRceM7hZV .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwRceM7hZV .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwRceM7hZV .mbr-title {
  color: #ffffff;
}
.cid-uwRceM7hZV .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwRceM7hZV .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwRceM7hZV .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwRceM7hZV .list {
  color: #08323C;
}
.cid-uwRceM7hZV label {
  color: #08323C;
}
.cid-uwRceM7hZV H3 {
  color: #000000;
}
.cid-uwRceM7hZV P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwRd9CmtNf {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRd9CmtNf H1 {
  text-align: center;
}
.cid-uDmSxVil19 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmSxVil19 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmSxVil19 .video-block {
    width: 100% !important;
  }
}
.cid-uwRd9CR6R2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRd9Demhd {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwRd9Demhd .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwRd9Demhd .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwRd9Demhd .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwRd9Demhd .box {
  left: 20%;
}
.cid-uwRd9Demhd .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwRd9Demhd .mbr-section-text,
.cid-uwRd9Demhd .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwRd9Demhd .text-box {
    display: none;
  }
  .cid-uwRd9Demhd .mbr-section-title,
  .cid-uwRd9Demhd .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwRd9Demhd .box {
    display: none;
  }
  .cid-uwRd9Demhd .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwRd9Demhd .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwRd9Demhd .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwRd9Demhd .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwRd9Demhd .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwRd9Demhd .mbr-section-text DIV {
  text-align: center;
}
.cid-uwRd9DBgnO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRd9DBgnO H1 {
  text-align: center;
}
.cid-uwRd9E21oM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRd9EnVWx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRd9EnVWx h2 {
  text-align: left;
}
.cid-uwRd9EnVWx h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRd9EnVWx p {
  color: #767676;
  text-align: left;
}
.cid-uwRd9EnVWx .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRd9EnVWx .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRd9EnVWx .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRd9EnVWx .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRd9EnVWx .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRd9EnVWx .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRd9EnVWx .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwRd9EnVWx .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwRd9EnVWx .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRd9EnVWx H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwRd9EnVWx P {
  color: #ffffff;
  text-align: left;
}
.cid-uwRd9EnVWx H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkWQicG4V {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkWQicG4V H1 {
  color: #000000;
}
.cid-uxkWReYDXd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkWReYDXd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkWReYDXd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkWReYDXd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkWReYDXd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkWReYDXd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkWReYDXd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkWReYDXd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkWReYDXd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkWReYDXd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkWReYDXd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkWReYDXd .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-uxkWReYDXd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkWReYDXd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkWReYDXd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkWReYDXd .mbr-text,
.cid-uxkWReYDXd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwRd9FPxpP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRd9Ggl58 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwRd9Ggl58 H1 {
  color: #000000;
}
.cid-uxkWS6eDzH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkWS6eDzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkWS6eDzH .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkWS6eDzH .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkWS6eDzH .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkWS6eDzH .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkWS6eDzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkWS6eDzH .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkWS6eDzH .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkWS6eDzH .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkWS6eDzH .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkWS6eDzH .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-uxkWS6eDzH .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkWS6eDzH .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkWS6eDzH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkWS6eDzH .mbr-text,
.cid-uxkWS6eDzH .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkWSWPR66 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkWSWPR66 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkWSWPR66 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkWSWPR66 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkWSWPR66 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkWSWPR66 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkWSWPR66 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkWSWPR66 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkWSWPR66 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkWSWPR66 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkWSWPR66 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkWSWPR66 .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-uxkWSWPR66 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkWSWPR66 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkWSWPR66 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkWSWPR66 .mbr-text,
.cid-uxkWSWPR66 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwRd9HS4ZH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwRd9HS4ZH H1 {
  color: #000000;
}
.cid-uwRd9Ij6AK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwRd9Ij6AK h2 {
  text-align: left;
}
.cid-uwRd9Ij6AK h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRd9Ij6AK p {
  color: #767676;
  text-align: left;
}
.cid-uwRd9Ij6AK .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRd9Ij6AK .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRd9Ij6AK .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRd9Ij6AK .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRd9Ij6AK .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRd9Ij6AK .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRd9Ij6AK .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwRd9Ij6AK .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwRd9Ij6AK .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwRd9Ij6AK .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwRd9Ij6AK .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRd9IPHLR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwRd9IPHLR H1 {
  color: #000000;
}
.cid-uwRd9Jgb2a {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwRd9Jgb2a .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwRd9Jgb2a .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwRd9Jgb2a .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwRd9Jgb2a .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwRd9Jgb2a .box {
  right: 20%;
}
.cid-uwRd9Jgb2a .text-box {
  right: 0;
}
.cid-uwRd9Jgb2a .mbr-section-title,
.cid-uwRd9Jgb2a .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwRd9Jgb2a .text-box {
    display: none;
  }
  .cid-uwRd9Jgb2a .mbr-section-title,
  .cid-uwRd9Jgb2a .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwRd9Jgb2a .box {
    display: none;
  }
  .cid-uwRd9Jgb2a .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwRd9Jgb2a .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwRd9Jgb2a .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwRd9Jgb2a .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwRd9Jgb2a .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwRd9Jgb2a .mbr-section-text DIV {
  text-align: center;
}
.cid-uwRd9JHtjB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRd9K8xtC {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwRd9K8xtC h2 {
  text-align: left;
}
.cid-uwRd9K8xtC h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRd9K8xtC p {
  color: #767676;
  text-align: left;
}
.cid-uwRd9K8xtC .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRd9K8xtC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRd9K8xtC .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRd9K8xtC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRd9K8xtC .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRd9K8xtC .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRd9K8xtC .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwRd9K8xtC .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwRd9K8xtC .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRd9K8xtC .mbr-text {
  color: #232323;
}
.cid-ux7Ja9dXr1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7Ja9dXr1 H1 {
  color: #000000;
}
.cid-uwRd9KBGCX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwRd9KBGCX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwRd9KBGCX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwRd9KBGCX .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwRd9KBGCX .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwRd9KBGCX .container {
    padding: 0 26px;
  }
}
.cid-uwRd9KBGCX .row {
  justify-content: center;
}
.cid-uwRd9KBGCX .item {
  margin-bottom: 32px;
}
.cid-uwRd9KBGCX .item a {
  display: block;
}
.cid-uwRd9KBGCX .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwRd9KBGCX .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwRd9KBGCX .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwRd9KBGCX .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-uwRd9KBGCX .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwRd9KBGCX .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwRd9KBGCX .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-uwRd9KBGCX .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwRd9KBGCX .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwRd9KBGCX .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwRd9KBGCX .item-title {
  color: #ffffff;
}
.cid-uwRd9KBGCX .mbr-date {
  color: #cacaca;
}
.cid-uwRd9KBGCX .mbr-desc {
  color: #cacaca;
}
.cid-uwRd9L8mRo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwRd9L8mRo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwRd9L8mRo .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-uwRd9L8mRo .container {
    padding: 0 16px;
  }
}
.cid-uwRd9L8mRo .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwRd9L8mRo .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwRd9L8mRo .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwRd9L8mRo .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwRd9L8mRo .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwRd9L8mRo .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwRd9L8mRo .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwRd9L8mRo .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwRd9L8mRo .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwRd9L8mRo .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-uwRd9L8mRo .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwRd9L8mRo .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwRd9L8mRo .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwRd9L8mRo .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwRd9L8mRo .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwRd9L8mRo .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwRd9L8mRo .dragArea.row .form-group .form-control:hover,
.cid-uwRd9L8mRo .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwRd9L8mRo .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwRd9L8mRo .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwRd9L8mRo .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwRd9L8mRo .mbr-title {
  color: #ffffff;
}
.cid-uwRd9L8mRo .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwRd9L8mRo .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwRd9L8mRo .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwRd9L8mRo .list {
  color: #08323C;
}
.cid-uwRd9L8mRo label {
  color: #08323C;
}
.cid-uwRd9L8mRo H3 {
  color: #000000;
}
.cid-uwRd9L8mRo P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwRebRCS9c {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRebRCS9c H1 {
  text-align: center;
}
.cid-uDmSAtE4NB {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmSAtE4NB .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmSAtE4NB .video-block {
    width: 100% !important;
  }
}
.cid-uwRebS7h7l {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRebSwsXm {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwRebSwsXm .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwRebSwsXm .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwRebSwsXm .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwRebSwsXm .box {
  left: 20%;
}
.cid-uwRebSwsXm .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwRebSwsXm .mbr-section-text,
.cid-uwRebSwsXm .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwRebSwsXm .text-box {
    display: none;
  }
  .cid-uwRebSwsXm .mbr-section-title,
  .cid-uwRebSwsXm .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwRebSwsXm .box {
    display: none;
  }
  .cid-uwRebSwsXm .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwRebSwsXm .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwRebSwsXm .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwRebSwsXm .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwRebSwsXm .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwRebSwsXm .mbr-section-text DIV {
  text-align: center;
}
.cid-uwRebT0qx7 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRebT0qx7 H1 {
  text-align: center;
}
.cid-uwRebTpDZe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRebTRYyM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwRebTRYyM h2 {
  text-align: left;
}
.cid-uwRebTRYyM h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRebTRYyM p {
  color: #767676;
  text-align: left;
}
.cid-uwRebTRYyM .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRebTRYyM .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRebTRYyM .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRebTRYyM .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRebTRYyM .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRebTRYyM .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRebTRYyM .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwRebTRYyM .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwRebTRYyM .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRebTRYyM H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwRebTRYyM P {
  color: #ffffff;
  text-align: left;
}
.cid-uwRebTRYyM H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkX20q5pF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkX20q5pF H1 {
  color: #000000;
}
.cid-uxkX2SidWL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkX2SidWL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkX2SidWL .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkX2SidWL .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkX2SidWL .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkX2SidWL .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkX2SidWL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkX2SidWL .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkX2SidWL .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkX2SidWL .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkX2SidWL .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkX2SidWL .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-uxkX2SidWL .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkX2SidWL .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkX2SidWL .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkX2SidWL .mbr-text,
.cid-uxkX2SidWL .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwRebVsAGk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRebVSSzd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwRebVSSzd H1 {
  color: #000000;
}
.cid-uxkX3IoFbh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkX3IoFbh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkX3IoFbh .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkX3IoFbh .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkX3IoFbh .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkX3IoFbh .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkX3IoFbh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkX3IoFbh .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkX3IoFbh .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkX3IoFbh .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkX3IoFbh .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkX3IoFbh .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-uxkX3IoFbh .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkX3IoFbh .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkX3IoFbh .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkX3IoFbh .mbr-text,
.cid-uxkX3IoFbh .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkX4vOtSa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkX4vOtSa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkX4vOtSa .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkX4vOtSa .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkX4vOtSa .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkX4vOtSa .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkX4vOtSa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkX4vOtSa .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkX4vOtSa .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkX4vOtSa .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkX4vOtSa .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkX4vOtSa .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-uxkX4vOtSa .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkX4vOtSa .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkX4vOtSa .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkX4vOtSa .mbr-text,
.cid-uxkX4vOtSa .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwRebXC6ge {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwRebXC6ge H1 {
  color: #000000;
}
.cid-uwRebY5l5B {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwRebY5l5B h2 {
  text-align: left;
}
.cid-uwRebY5l5B h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRebY5l5B p {
  color: #767676;
  text-align: left;
}
.cid-uwRebY5l5B .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRebY5l5B .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRebY5l5B .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRebY5l5B .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRebY5l5B .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRebY5l5B .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRebY5l5B .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwRebY5l5B .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwRebY5l5B .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwRebY5l5B .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwRebY5l5B .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRebYz3qk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwRebYz3qk H1 {
  color: #000000;
}
.cid-uwRebZ2sWk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwRebZ2sWk .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwRebZ2sWk .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwRebZ2sWk .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwRebZ2sWk .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwRebZ2sWk .box {
  right: 20%;
}
.cid-uwRebZ2sWk .text-box {
  right: 0;
}
.cid-uwRebZ2sWk .mbr-section-title,
.cid-uwRebZ2sWk .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwRebZ2sWk .text-box {
    display: none;
  }
  .cid-uwRebZ2sWk .mbr-section-title,
  .cid-uwRebZ2sWk .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwRebZ2sWk .box {
    display: none;
  }
  .cid-uwRebZ2sWk .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwRebZ2sWk .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwRebZ2sWk .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwRebZ2sWk .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwRebZ2sWk .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwRebZ2sWk .mbr-section-text DIV {
  text-align: center;
}
.cid-uwRebZv2hc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwRebZZi9l {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwRebZZi9l h2 {
  text-align: left;
}
.cid-uwRebZZi9l h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwRebZZi9l p {
  color: #767676;
  text-align: left;
}
.cid-uwRebZZi9l .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwRebZZi9l .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwRebZZi9l .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwRebZZi9l .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwRebZZi9l .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwRebZZi9l .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwRebZZi9l .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwRebZZi9l .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwRebZZi9l .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwRebZZi9l .mbr-text {
  color: #232323;
}
.cid-ux7JfgJsu1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7JfgJsu1 H1 {
  color: #000000;
}
.cid-uwRec0t26y {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwRec0t26y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwRec0t26y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwRec0t26y .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwRec0t26y .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwRec0t26y .container {
    padding: 0 26px;
  }
}
.cid-uwRec0t26y .row {
  justify-content: center;
}
.cid-uwRec0t26y .item {
  margin-bottom: 32px;
}
.cid-uwRec0t26y .item a {
  display: block;
}
.cid-uwRec0t26y .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwRec0t26y .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwRec0t26y .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwRec0t26y .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-uwRec0t26y .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwRec0t26y .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwRec0t26y .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-uwRec0t26y .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwRec0t26y .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwRec0t26y .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwRec0t26y .item-title {
  color: #ffffff;
}
.cid-uwRec0t26y .mbr-date {
  color: #cacaca;
}
.cid-uwRec0t26y .mbr-desc {
  color: #cacaca;
}
.cid-uwRec0ZaDZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwRec0ZaDZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwRec0ZaDZ .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-uwRec0ZaDZ .container {
    padding: 0 16px;
  }
}
.cid-uwRec0ZaDZ .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwRec0ZaDZ .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwRec0ZaDZ .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwRec0ZaDZ .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwRec0ZaDZ .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwRec0ZaDZ .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwRec0ZaDZ .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwRec0ZaDZ .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwRec0ZaDZ .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwRec0ZaDZ .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-uwRec0ZaDZ .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwRec0ZaDZ .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwRec0ZaDZ .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwRec0ZaDZ .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwRec0ZaDZ .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwRec0ZaDZ .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwRec0ZaDZ .dragArea.row .form-group .form-control:hover,
.cid-uwRec0ZaDZ .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwRec0ZaDZ .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwRec0ZaDZ .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwRec0ZaDZ .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwRec0ZaDZ .mbr-title {
  color: #ffffff;
}
.cid-uwRec0ZaDZ .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwRec0ZaDZ .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwRec0ZaDZ .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwRec0ZaDZ .list {
  color: #08323C;
}
.cid-uwRec0ZaDZ label {
  color: #08323C;
}
.cid-uwRec0ZaDZ H3 {
  color: #000000;
}
.cid-uwRec0ZaDZ P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwReAz9Iag {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwReAz9Iag H1 {
  text-align: center;
}
.cid-uDmSDhkpGq {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmSDhkpGq .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmSDhkpGq .video-block {
    width: 100% !important;
  }
}
.cid-uwReAzBD75 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwReAA1DMd {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwReAA1DMd .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwReAA1DMd .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwReAA1DMd .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwReAA1DMd .box {
  left: 20%;
}
.cid-uwReAA1DMd .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwReAA1DMd .mbr-section-text,
.cid-uwReAA1DMd .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwReAA1DMd .text-box {
    display: none;
  }
  .cid-uwReAA1DMd .mbr-section-title,
  .cid-uwReAA1DMd .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwReAA1DMd .box {
    display: none;
  }
  .cid-uwReAA1DMd .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwReAA1DMd .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwReAA1DMd .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwReAA1DMd .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwReAA1DMd .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwReAA1DMd .mbr-section-text DIV {
  text-align: center;
}
.cid-uwReAAoIDh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwReAAoIDh H1 {
  text-align: center;
}
.cid-uwReAALefk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwReAB9gs4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwReAB9gs4 h2 {
  text-align: left;
}
.cid-uwReAB9gs4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwReAB9gs4 p {
  color: #767676;
  text-align: left;
}
.cid-uwReAB9gs4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwReAB9gs4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwReAB9gs4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwReAB9gs4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwReAB9gs4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwReAB9gs4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwReAB9gs4 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwReAB9gs4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwReAB9gs4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwReAB9gs4 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwReAB9gs4 P {
  color: #ffffff;
  text-align: left;
}
.cid-uwReAB9gs4 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkXfaABrA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkXfaABrA H1 {
  color: #000000;
}
.cid-uxkXg4kwnq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkXg4kwnq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkXg4kwnq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkXg4kwnq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkXg4kwnq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkXg4kwnq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkXg4kwnq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkXg4kwnq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkXg4kwnq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkXg4kwnq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkXg4kwnq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkXg4kwnq .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-uxkXg4kwnq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkXg4kwnq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkXg4kwnq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkXg4kwnq .mbr-text,
.cid-uxkXg4kwnq .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwReACy5PR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwReACY9Bx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwReACY9Bx H1 {
  color: #000000;
}
.cid-uxkXgTnFxd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkXgTnFxd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkXgTnFxd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkXgTnFxd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkXgTnFxd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkXgTnFxd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkXgTnFxd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkXgTnFxd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkXgTnFxd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkXgTnFxd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkXgTnFxd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkXgTnFxd .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-uxkXgTnFxd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkXgTnFxd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkXgTnFxd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkXgTnFxd .mbr-text,
.cid-uxkXgTnFxd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkXhMOgQT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkXhMOgQT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkXhMOgQT .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkXhMOgQT .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkXhMOgQT .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkXhMOgQT .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkXhMOgQT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkXhMOgQT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkXhMOgQT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkXhMOgQT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkXhMOgQT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkXhMOgQT .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-uxkXhMOgQT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkXhMOgQT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkXhMOgQT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkXhMOgQT .mbr-text,
.cid-uxkXhMOgQT .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwReAEufqw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwReAEufqw H1 {
  color: #000000;
}
.cid-uwReAEXt9D {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwReAEXt9D h2 {
  text-align: left;
}
.cid-uwReAEXt9D h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwReAEXt9D p {
  color: #767676;
  text-align: left;
}
.cid-uwReAEXt9D .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwReAEXt9D .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwReAEXt9D .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwReAEXt9D .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwReAEXt9D .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwReAEXt9D .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwReAEXt9D .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwReAEXt9D .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwReAEXt9D .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwReAEXt9D .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwReAEXt9D .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwReAFp9at {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwReAFp9at H1 {
  color: #000000;
}
.cid-uwReAFSSXu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwReAFSSXu .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwReAFSSXu .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwReAFSSXu .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwReAFSSXu .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwReAFSSXu .box {
  right: 20%;
}
.cid-uwReAFSSXu .text-box {
  right: 0;
}
.cid-uwReAFSSXu .mbr-section-title,
.cid-uwReAFSSXu .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwReAFSSXu .text-box {
    display: none;
  }
  .cid-uwReAFSSXu .mbr-section-title,
  .cid-uwReAFSSXu .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwReAFSSXu .box {
    display: none;
  }
  .cid-uwReAFSSXu .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwReAFSSXu .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwReAFSSXu .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwReAFSSXu .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwReAFSSXu .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwReAFSSXu .mbr-section-text DIV {
  text-align: center;
}
.cid-uwReAGl2gL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwReAGOquS {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwReAGOquS h2 {
  text-align: left;
}
.cid-uwReAGOquS h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwReAGOquS p {
  color: #767676;
  text-align: left;
}
.cid-uwReAGOquS .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwReAGOquS .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwReAGOquS .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwReAGOquS .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwReAGOquS .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwReAGOquS .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwReAGOquS .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwReAGOquS .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwReAGOquS .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwReAGOquS .mbr-text {
  color: #232323;
}
.cid-ux7JkeDdSl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7JkeDdSl H1 {
  color: #000000;
}
.cid-uwReAHgXSC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwReAHgXSC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwReAHgXSC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwReAHgXSC .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwReAHgXSC .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwReAHgXSC .container {
    padding: 0 26px;
  }
}
.cid-uwReAHgXSC .row {
  justify-content: center;
}
.cid-uwReAHgXSC .item {
  margin-bottom: 32px;
}
.cid-uwReAHgXSC .item a {
  display: block;
}
.cid-uwReAHgXSC .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwReAHgXSC .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwReAHgXSC .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwReAHgXSC .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-uwReAHgXSC .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwReAHgXSC .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwReAHgXSC .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-uwReAHgXSC .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwReAHgXSC .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwReAHgXSC .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwReAHgXSC .item-title {
  color: #ffffff;
}
.cid-uwReAHgXSC .mbr-date {
  color: #cacaca;
}
.cid-uwReAHgXSC .mbr-desc {
  color: #cacaca;
}
.cid-uwReAHKeSK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwReAHKeSK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwReAHKeSK .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-uwReAHKeSK .container {
    padding: 0 16px;
  }
}
.cid-uwReAHKeSK .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwReAHKeSK .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwReAHKeSK .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwReAHKeSK .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwReAHKeSK .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwReAHKeSK .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwReAHKeSK .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwReAHKeSK .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwReAHKeSK .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwReAHKeSK .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-uwReAHKeSK .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwReAHKeSK .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwReAHKeSK .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwReAHKeSK .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwReAHKeSK .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwReAHKeSK .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwReAHKeSK .dragArea.row .form-group .form-control:hover,
.cid-uwReAHKeSK .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwReAHKeSK .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwReAHKeSK .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwReAHKeSK .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwReAHKeSK .mbr-title {
  color: #ffffff;
}
.cid-uwReAHKeSK .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwReAHKeSK .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwReAHKeSK .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwReAHKeSK .list {
  color: #08323C;
}
.cid-uwReAHKeSK label {
  color: #08323C;
}
.cid-uwReAHKeSK H3 {
  color: #000000;
}
.cid-uwReAHKeSK P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux7Vf2vUPZ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux7Vf2vUPZ H1 {
  text-align: center;
}
.cid-uDmyGKh6Rq {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmyGKh6Rq .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmyGKh6Rq .video-block {
    width: 100% !important;
  }
}
.cid-ux7Vf36jVE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux7Vf3poDN {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ux7Vf3poDN .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux7Vf3poDN .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux7Vf3poDN .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux7Vf3poDN .box {
  left: 20%;
}
.cid-ux7Vf3poDN .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux7Vf3poDN .mbr-section-text,
.cid-ux7Vf3poDN .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux7Vf3poDN .text-box {
    display: none;
  }
  .cid-ux7Vf3poDN .mbr-section-title,
  .cid-ux7Vf3poDN .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux7Vf3poDN .box {
    display: none;
  }
  .cid-ux7Vf3poDN .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux7Vf3poDN .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux7Vf3poDN .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux7Vf3poDN .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux7Vf3poDN .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux7Vf3poDN .mbr-section-text DIV {
  text-align: center;
}
.cid-ux7Vf3IEpi {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux7Vf3IEpi H1 {
  text-align: center;
}
.cid-ux7Vf3ZMUM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux7Vf4j9iu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux7Vf4j9iu h2 {
  text-align: left;
}
.cid-ux7Vf4j9iu h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux7Vf4j9iu p {
  color: #767676;
  text-align: left;
}
.cid-ux7Vf4j9iu .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux7Vf4j9iu .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux7Vf4j9iu .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux7Vf4j9iu .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux7Vf4j9iu .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux7Vf4j9iu .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux7Vf4j9iu .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux7Vf4j9iu .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux7Vf4j9iu .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux7Vf4j9iu H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux7Vf4j9iu P {
  color: #ffffff;
  text-align: left;
}
.cid-ux7Vf4j9iu H2 {
  color: #ffffff;
  text-align: center;
}
.cid-ux7Vf4DuM4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux7Vf4DuM4 H1 {
  color: #000000;
}
.cid-uy71bY5a4u {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uy71bY5a4u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy71bY5a4u .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uy71bY5a4u .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uy71bY5a4u .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uy71bY5a4u .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uy71bY5a4u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy71bY5a4u .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uy71bY5a4u .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uy71bY5a4u .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uy71bY5a4u .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uy71bY5a4u .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-uy71bY5a4u .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uy71bY5a4u .image-wrapper {
    padding: 1rem;
  }
}
.cid-uy71bY5a4u .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uy71bY5a4u .mbr-text,
.cid-uy71bY5a4u .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux7Vf5noc7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux7Vf5noc7 H1 {
  color: #000000;
}
.cid-uxfpSYjMpI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfpSYjMpI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfpSYjMpI .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfpSYjMpI .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfpSYjMpI .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfpSYjMpI .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfpSYjMpI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfpSYjMpI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfpSYjMpI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfpSYjMpI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfpSYjMpI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfpSYjMpI .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-uxfpSYjMpI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfpSYjMpI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfpSYjMpI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfpSYjMpI .mbr-text,
.cid-uxfpSYjMpI .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfpTJRdXW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfpTJRdXW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfpTJRdXW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfpTJRdXW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfpTJRdXW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfpTJRdXW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfpTJRdXW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfpTJRdXW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfpTJRdXW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfpTJRdXW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfpTJRdXW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfpTJRdXW .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-uxfpTJRdXW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfpTJRdXW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfpTJRdXW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfpTJRdXW .mbr-text,
.cid-uxfpTJRdXW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux7Vf6Ga5h {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7Vf6Ga5h H1 {
  color: #000000;
}
.cid-ux7Vf77BBt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux7Vf77BBt h2 {
  text-align: left;
}
.cid-ux7Vf77BBt h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux7Vf77BBt p {
  color: #767676;
  text-align: left;
}
.cid-ux7Vf77BBt .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux7Vf77BBt .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux7Vf77BBt .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux7Vf77BBt .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux7Vf77BBt .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux7Vf77BBt .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux7Vf77BBt .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux7Vf77BBt .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux7Vf77BBt .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux7Vf77BBt .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux7Vf77BBt .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux7Vf7x4CB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7Vf7x4CB H1 {
  color: #000000;
}
.cid-ux7Vf7SnRK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux7Vf7SnRK .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux7Vf7SnRK .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux7Vf7SnRK .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux7Vf7SnRK .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux7Vf7SnRK .box {
  right: 20%;
}
.cid-ux7Vf7SnRK .text-box {
  right: 0;
}
.cid-ux7Vf7SnRK .mbr-section-title,
.cid-ux7Vf7SnRK .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux7Vf7SnRK .text-box {
    display: none;
  }
  .cid-ux7Vf7SnRK .mbr-section-title,
  .cid-ux7Vf7SnRK .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux7Vf7SnRK .box {
    display: none;
  }
  .cid-ux7Vf7SnRK .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux7Vf7SnRK .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux7Vf7SnRK .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux7Vf7SnRK .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux7Vf7SnRK .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux7Vf7SnRK .mbr-section-text DIV {
  text-align: center;
}
.cid-ux7Vf8grkp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux7Vf8yI6z {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux7Vf8yI6z h2 {
  text-align: left;
}
.cid-ux7Vf8yI6z h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux7Vf8yI6z p {
  color: #767676;
  text-align: left;
}
.cid-ux7Vf8yI6z .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux7Vf8yI6z .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux7Vf8yI6z .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux7Vf8yI6z .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux7Vf8yI6z .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux7Vf8yI6z .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux7Vf8yI6z .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux7Vf8yI6z .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux7Vf8yI6z .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux7Vf8yI6z .mbr-text {
  color: #232323;
}
.cid-ux7Vf8VbtC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7Vf8VbtC H1 {
  color: #000000;
}
.cid-ux7Vf9iwbJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux7Vf9iwbJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux7Vf9iwbJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux7Vf9iwbJ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux7Vf9iwbJ .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux7Vf9iwbJ .container {
    padding: 0 26px;
  }
}
.cid-ux7Vf9iwbJ .row {
  justify-content: center;
}
.cid-ux7Vf9iwbJ .item {
  margin-bottom: 32px;
}
.cid-ux7Vf9iwbJ .item a {
  display: block;
}
.cid-ux7Vf9iwbJ .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux7Vf9iwbJ .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux7Vf9iwbJ .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux7Vf9iwbJ .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-ux7Vf9iwbJ .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux7Vf9iwbJ .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux7Vf9iwbJ .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-ux7Vf9iwbJ .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux7Vf9iwbJ .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux7Vf9iwbJ .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux7Vf9iwbJ .item-title {
  color: #ffffff;
}
.cid-ux7Vf9iwbJ .mbr-date {
  color: #cacaca;
}
.cid-ux7Vf9iwbJ .mbr-desc {
  color: #cacaca;
}
.cid-ux7Vf9HPc3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux7Vf9HPc3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux7Vf9HPc3 .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-ux7Vf9HPc3 .container {
    padding: 0 16px;
  }
}
.cid-ux7Vf9HPc3 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux7Vf9HPc3 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux7Vf9HPc3 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux7Vf9HPc3 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux7Vf9HPc3 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux7Vf9HPc3 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux7Vf9HPc3 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux7Vf9HPc3 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux7Vf9HPc3 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux7Vf9HPc3 .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-ux7Vf9HPc3 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux7Vf9HPc3 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux7Vf9HPc3 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux7Vf9HPc3 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux7Vf9HPc3 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux7Vf9HPc3 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux7Vf9HPc3 .dragArea.row .form-group .form-control:hover,
.cid-ux7Vf9HPc3 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux7Vf9HPc3 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux7Vf9HPc3 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux7Vf9HPc3 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux7Vf9HPc3 .mbr-title {
  color: #ffffff;
}
.cid-ux7Vf9HPc3 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux7Vf9HPc3 .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux7Vf9HPc3 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux7Vf9HPc3 .list {
  color: #08323C;
}
.cid-ux7Vf9HPc3 label {
  color: #08323C;
}
.cid-ux7Vf9HPc3 H3 {
  color: #000000;
}
.cid-ux7Vf9HPc3 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux7VBvZIcS {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux7VBvZIcS H1 {
  text-align: center;
}
.cid-uDmyJtGOrf {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmyJtGOrf .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmyJtGOrf .video-block {
    width: 100% !important;
  }
}
.cid-ux7VBwpXBP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux7VBwIlBN {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ux7VBwIlBN .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux7VBwIlBN .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux7VBwIlBN .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux7VBwIlBN .box {
  left: 20%;
}
.cid-ux7VBwIlBN .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux7VBwIlBN .mbr-section-text,
.cid-ux7VBwIlBN .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux7VBwIlBN .text-box {
    display: none;
  }
  .cid-ux7VBwIlBN .mbr-section-title,
  .cid-ux7VBwIlBN .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux7VBwIlBN .box {
    display: none;
  }
  .cid-ux7VBwIlBN .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux7VBwIlBN .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux7VBwIlBN .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux7VBwIlBN .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux7VBwIlBN .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux7VBwIlBN .mbr-section-text DIV {
  text-align: center;
}
.cid-ux7VBx23hD {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux7VBx23hD H1 {
  text-align: center;
}
.cid-ux7VBxk77I {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux7VBxALD3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux7VBxALD3 h2 {
  text-align: left;
}
.cid-ux7VBxALD3 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux7VBxALD3 p {
  color: #767676;
  text-align: left;
}
.cid-ux7VBxALD3 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux7VBxALD3 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux7VBxALD3 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux7VBxALD3 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux7VBxALD3 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux7VBxALD3 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux7VBxALD3 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux7VBxALD3 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux7VBxALD3 .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux7VBxALD3 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux7VBxALD3 P {
  color: #ffffff;
  text-align: left;
}
.cid-ux7VBxALD3 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-ux7VBxWlWI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux7VBxWlWI H1 {
  color: #000000;
}
.cid-uy71fwcaDJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uy71fwcaDJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy71fwcaDJ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uy71fwcaDJ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uy71fwcaDJ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uy71fwcaDJ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uy71fwcaDJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy71fwcaDJ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uy71fwcaDJ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uy71fwcaDJ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uy71fwcaDJ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uy71fwcaDJ .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-uy71fwcaDJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uy71fwcaDJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uy71fwcaDJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uy71fwcaDJ .mbr-text,
.cid-uy71fwcaDJ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux7VByKK5l {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux7VByKK5l H1 {
  color: #000000;
}
.cid-uxfrCRYGJD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfrCRYGJD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfrCRYGJD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfrCRYGJD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfrCRYGJD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfrCRYGJD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfrCRYGJD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfrCRYGJD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfrCRYGJD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfrCRYGJD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfrCRYGJD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfrCRYGJD .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-uxfrCRYGJD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfrCRYGJD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfrCRYGJD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfrCRYGJD .mbr-text,
.cid-uxfrCRYGJD .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfrDxlt9P {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfrDxlt9P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfrDxlt9P .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfrDxlt9P .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfrDxlt9P .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfrDxlt9P .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfrDxlt9P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfrDxlt9P .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfrDxlt9P .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfrDxlt9P .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfrDxlt9P .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfrDxlt9P .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-uxfrDxlt9P .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfrDxlt9P .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfrDxlt9P .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfrDxlt9P .mbr-text,
.cid-uxfrDxlt9P .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux7VBAehjj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7VBAehjj H1 {
  color: #000000;
}
.cid-ux7VBAznG3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux7VBAznG3 h2 {
  text-align: left;
}
.cid-ux7VBAznG3 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux7VBAznG3 p {
  color: #767676;
  text-align: left;
}
.cid-ux7VBAznG3 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux7VBAznG3 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux7VBAznG3 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux7VBAznG3 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux7VBAznG3 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux7VBAznG3 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux7VBAznG3 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux7VBAznG3 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux7VBAznG3 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux7VBAznG3 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux7VBAznG3 .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux7VBAVX1t {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7VBAVX1t H1 {
  color: #000000;
}
.cid-ux7VBBhSEy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux7VBBhSEy .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux7VBBhSEy .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux7VBBhSEy .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux7VBBhSEy .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux7VBBhSEy .box {
  right: 20%;
}
.cid-ux7VBBhSEy .text-box {
  right: 0;
}
.cid-ux7VBBhSEy .mbr-section-title,
.cid-ux7VBBhSEy .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux7VBBhSEy .text-box {
    display: none;
  }
  .cid-ux7VBBhSEy .mbr-section-title,
  .cid-ux7VBBhSEy .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux7VBBhSEy .box {
    display: none;
  }
  .cid-ux7VBBhSEy .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux7VBBhSEy .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux7VBBhSEy .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux7VBBhSEy .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux7VBBhSEy .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux7VBBhSEy .mbr-section-text DIV {
  text-align: center;
}
.cid-ux7VBBB7tW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux7VBBU7HW {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux7VBBU7HW h2 {
  text-align: left;
}
.cid-ux7VBBU7HW h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux7VBBU7HW p {
  color: #767676;
  text-align: left;
}
.cid-ux7VBBU7HW .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux7VBBU7HW .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux7VBBU7HW .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux7VBBU7HW .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux7VBBU7HW .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux7VBBU7HW .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux7VBBU7HW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux7VBBU7HW .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux7VBBU7HW .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux7VBBU7HW .mbr-text {
  color: #232323;
}
.cid-ux7VBCihe5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7VBCihe5 H1 {
  color: #000000;
}
.cid-ux7VBCAfCR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux7VBCAfCR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux7VBCAfCR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux7VBCAfCR .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux7VBCAfCR .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux7VBCAfCR .container {
    padding: 0 26px;
  }
}
.cid-ux7VBCAfCR .row {
  justify-content: center;
}
.cid-ux7VBCAfCR .item {
  margin-bottom: 32px;
}
.cid-ux7VBCAfCR .item a {
  display: block;
}
.cid-ux7VBCAfCR .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux7VBCAfCR .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux7VBCAfCR .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux7VBCAfCR .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-ux7VBCAfCR .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux7VBCAfCR .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux7VBCAfCR .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-ux7VBCAfCR .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux7VBCAfCR .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux7VBCAfCR .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux7VBCAfCR .item-title {
  color: #ffffff;
}
.cid-ux7VBCAfCR .mbr-date {
  color: #cacaca;
}
.cid-ux7VBCAfCR .mbr-desc {
  color: #cacaca;
}
.cid-ux7VBCYSXF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux7VBCYSXF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux7VBCYSXF .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-ux7VBCYSXF .container {
    padding: 0 16px;
  }
}
.cid-ux7VBCYSXF .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux7VBCYSXF .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux7VBCYSXF .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux7VBCYSXF .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux7VBCYSXF .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux7VBCYSXF .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux7VBCYSXF .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux7VBCYSXF .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux7VBCYSXF .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux7VBCYSXF .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-ux7VBCYSXF .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux7VBCYSXF .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux7VBCYSXF .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux7VBCYSXF .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux7VBCYSXF .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux7VBCYSXF .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux7VBCYSXF .dragArea.row .form-group .form-control:hover,
.cid-ux7VBCYSXF .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux7VBCYSXF .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux7VBCYSXF .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux7VBCYSXF .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux7VBCYSXF .mbr-title {
  color: #ffffff;
}
.cid-ux7VBCYSXF .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux7VBCYSXF .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux7VBCYSXF .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux7VBCYSXF .list {
  color: #08323C;
}
.cid-ux7VBCYSXF label {
  color: #08323C;
}
.cid-ux7VBCYSXF H3 {
  color: #000000;
}
.cid-ux7VBCYSXF P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux7W1uMEnW {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux7W1uMEnW H1 {
  text-align: center;
}
.cid-uDmyM9fK6z {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmyM9fK6z .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmyM9fK6z .video-block {
    width: 100% !important;
  }
}
.cid-ux7W1v9Yv7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux7W1vnBA4 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ux7W1vnBA4 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux7W1vnBA4 .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux7W1vnBA4 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux7W1vnBA4 .box {
  left: 20%;
}
.cid-ux7W1vnBA4 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux7W1vnBA4 .mbr-section-text,
.cid-ux7W1vnBA4 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux7W1vnBA4 .text-box {
    display: none;
  }
  .cid-ux7W1vnBA4 .mbr-section-title,
  .cid-ux7W1vnBA4 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux7W1vnBA4 .box {
    display: none;
  }
  .cid-ux7W1vnBA4 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux7W1vnBA4 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux7W1vnBA4 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux7W1vnBA4 .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux7W1vnBA4 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux7W1vnBA4 .mbr-section-text DIV {
  text-align: center;
}
.cid-ux7W1vDwFh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux7W1vDwFh H1 {
  text-align: center;
}
.cid-ux7W1vUEiw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux7W1waY63 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux7W1waY63 h2 {
  text-align: left;
}
.cid-ux7W1waY63 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux7W1waY63 p {
  color: #767676;
  text-align: left;
}
.cid-ux7W1waY63 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux7W1waY63 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux7W1waY63 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux7W1waY63 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux7W1waY63 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux7W1waY63 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux7W1waY63 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux7W1waY63 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux7W1waY63 .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux7W1waY63 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux7W1waY63 P {
  color: #ffffff;
  text-align: left;
}
.cid-ux7W1waY63 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-ux7W1wtfRL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux7W1wtfRL H1 {
  color: #000000;
}
.cid-uxfse5Jfe1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfse5Jfe1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfse5Jfe1 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfse5Jfe1 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfse5Jfe1 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfse5Jfe1 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfse5Jfe1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfse5Jfe1 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfse5Jfe1 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfse5Jfe1 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfse5Jfe1 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfse5Jfe1 .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-uxfse5Jfe1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfse5Jfe1 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfse5Jfe1 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfse5Jfe1 .mbr-text,
.cid-uxfse5Jfe1 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux7W1x6PIz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux7W1x6PIz H1 {
  color: #000000;
}
.cid-uxfseVnNLv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfseVnNLv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfseVnNLv .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfseVnNLv .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfseVnNLv .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfseVnNLv .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfseVnNLv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfseVnNLv .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfseVnNLv .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfseVnNLv .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfseVnNLv .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfseVnNLv .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-uxfseVnNLv .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfseVnNLv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfseVnNLv .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfseVnNLv .mbr-text,
.cid-uxfseVnNLv .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfsfzKI7B {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfsfzKI7B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfsfzKI7B .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfsfzKI7B .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfsfzKI7B .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfsfzKI7B .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfsfzKI7B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfsfzKI7B .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfsfzKI7B .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfsfzKI7B .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfsfzKI7B .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfsfzKI7B .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-uxfsfzKI7B .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfsfzKI7B .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfsfzKI7B .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfsfzKI7B .mbr-text,
.cid-uxfsfzKI7B .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux7W1ycww8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7W1ycww8 H1 {
  color: #000000;
}
.cid-ux7W1yvfUE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux7W1yvfUE h2 {
  text-align: left;
}
.cid-ux7W1yvfUE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux7W1yvfUE p {
  color: #767676;
  text-align: left;
}
.cid-ux7W1yvfUE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux7W1yvfUE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux7W1yvfUE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux7W1yvfUE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux7W1yvfUE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux7W1yvfUE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux7W1yvfUE .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux7W1yvfUE .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux7W1yvfUE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux7W1yvfUE .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux7W1yvfUE .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux7W1yPAuX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7W1yPAuX H1 {
  color: #000000;
}
.cid-ux7W1z6JLt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux7W1z6JLt .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux7W1z6JLt .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux7W1z6JLt .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux7W1z6JLt .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux7W1z6JLt .box {
  right: 20%;
}
.cid-ux7W1z6JLt .text-box {
  right: 0;
}
.cid-ux7W1z6JLt .mbr-section-title,
.cid-ux7W1z6JLt .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux7W1z6JLt .text-box {
    display: none;
  }
  .cid-ux7W1z6JLt .mbr-section-title,
  .cid-ux7W1z6JLt .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux7W1z6JLt .box {
    display: none;
  }
  .cid-ux7W1z6JLt .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux7W1z6JLt .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux7W1z6JLt .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux7W1z6JLt .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux7W1z6JLt .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux7W1z6JLt .mbr-section-text DIV {
  text-align: center;
}
.cid-ux7W1zqJDu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux7W1zHAmw {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux7W1zHAmw h2 {
  text-align: left;
}
.cid-ux7W1zHAmw h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux7W1zHAmw p {
  color: #767676;
  text-align: left;
}
.cid-ux7W1zHAmw .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux7W1zHAmw .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux7W1zHAmw .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux7W1zHAmw .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux7W1zHAmw .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux7W1zHAmw .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux7W1zHAmw .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux7W1zHAmw .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux7W1zHAmw .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux7W1zHAmw .mbr-text {
  color: #232323;
}
.cid-ux7W1A0j8S {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7W1A0j8S H1 {
  color: #000000;
}
.cid-ux7W1AlQdg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux7W1AlQdg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux7W1AlQdg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux7W1AlQdg .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux7W1AlQdg .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux7W1AlQdg .container {
    padding: 0 26px;
  }
}
.cid-ux7W1AlQdg .row {
  justify-content: center;
}
.cid-ux7W1AlQdg .item {
  margin-bottom: 32px;
}
.cid-ux7W1AlQdg .item a {
  display: block;
}
.cid-ux7W1AlQdg .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux7W1AlQdg .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux7W1AlQdg .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux7W1AlQdg .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-ux7W1AlQdg .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux7W1AlQdg .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux7W1AlQdg .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-ux7W1AlQdg .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux7W1AlQdg .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux7W1AlQdg .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux7W1AlQdg .item-title {
  color: #ffffff;
}
.cid-ux7W1AlQdg .mbr-date {
  color: #cacaca;
}
.cid-ux7W1AlQdg .mbr-desc {
  color: #cacaca;
}
.cid-ux7W1AE3g9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux7W1AE3g9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux7W1AE3g9 .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-ux7W1AE3g9 .container {
    padding: 0 16px;
  }
}
.cid-ux7W1AE3g9 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux7W1AE3g9 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux7W1AE3g9 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux7W1AE3g9 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux7W1AE3g9 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux7W1AE3g9 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux7W1AE3g9 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux7W1AE3g9 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux7W1AE3g9 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux7W1AE3g9 .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-ux7W1AE3g9 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux7W1AE3g9 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux7W1AE3g9 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux7W1AE3g9 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux7W1AE3g9 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux7W1AE3g9 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux7W1AE3g9 .dragArea.row .form-group .form-control:hover,
.cid-ux7W1AE3g9 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux7W1AE3g9 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux7W1AE3g9 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux7W1AE3g9 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux7W1AE3g9 .mbr-title {
  color: #ffffff;
}
.cid-ux7W1AE3g9 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux7W1AE3g9 .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux7W1AE3g9 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux7W1AE3g9 .list {
  color: #08323C;
}
.cid-ux7W1AE3g9 label {
  color: #08323C;
}
.cid-ux7W1AE3g9 H3 {
  color: #000000;
}
.cid-ux7W1AE3g9 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux7WoCYKwE {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux7WoCYKwE H1 {
  text-align: center;
}
.cid-uDmyOHL9oy {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmyOHL9oy .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmyOHL9oy .video-block {
    width: 100% !important;
  }
}
.cid-ux7WoDnBKq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux7WoDDHou {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ux7WoDDHou .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux7WoDDHou .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux7WoDDHou .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux7WoDDHou .box {
  left: 20%;
}
.cid-ux7WoDDHou .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux7WoDDHou .mbr-section-text,
.cid-ux7WoDDHou .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux7WoDDHou .text-box {
    display: none;
  }
  .cid-ux7WoDDHou .mbr-section-title,
  .cid-ux7WoDDHou .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux7WoDDHou .box {
    display: none;
  }
  .cid-ux7WoDDHou .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux7WoDDHou .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux7WoDDHou .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux7WoDDHou .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux7WoDDHou .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux7WoDDHou .mbr-section-text DIV {
  text-align: center;
}
.cid-ux7WoDVb8V {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux7WoDVb8V H1 {
  text-align: center;
}
.cid-ux7WoEalu2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux7WoEpz2v {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux7WoEpz2v h2 {
  text-align: left;
}
.cid-ux7WoEpz2v h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux7WoEpz2v p {
  color: #767676;
  text-align: left;
}
.cid-ux7WoEpz2v .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux7WoEpz2v .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux7WoEpz2v .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux7WoEpz2v .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux7WoEpz2v .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux7WoEpz2v .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux7WoEpz2v .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux7WoEpz2v .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux7WoEpz2v .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux7WoEpz2v H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux7WoEpz2v P {
  color: #ffffff;
  text-align: left;
}
.cid-ux7WoEpz2v H2 {
  color: #ffffff;
  text-align: center;
}
.cid-ux7WoELXny {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux7WoELXny H1 {
  color: #000000;
}
.cid-uxfsnZujQq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfsnZujQq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfsnZujQq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfsnZujQq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfsnZujQq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfsnZujQq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfsnZujQq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfsnZujQq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfsnZujQq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfsnZujQq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfsnZujQq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfsnZujQq .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-uxfsnZujQq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfsnZujQq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfsnZujQq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfsnZujQq .mbr-text,
.cid-uxfsnZujQq .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux7WoFubyB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux7WoFubyB H1 {
  color: #000000;
}
.cid-uxfsoJ2JDg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfsoJ2JDg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfsoJ2JDg .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfsoJ2JDg .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfsoJ2JDg .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfsoJ2JDg .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfsoJ2JDg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfsoJ2JDg .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfsoJ2JDg .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfsoJ2JDg .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfsoJ2JDg .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfsoJ2JDg .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-uxfsoJ2JDg .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfsoJ2JDg .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfsoJ2JDg .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfsoJ2JDg .mbr-text,
.cid-uxfsoJ2JDg .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfspOaaas {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfspOaaas .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfspOaaas .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfspOaaas .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfspOaaas .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfspOaaas .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfspOaaas .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfspOaaas .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfspOaaas .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfspOaaas .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfspOaaas .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfspOaaas .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-uxfspOaaas .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfspOaaas .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfspOaaas .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfspOaaas .mbr-text,
.cid-uxfspOaaas .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux7WoGIwU4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7WoGIwU4 H1 {
  color: #000000;
}
.cid-ux7WoGZMqJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux7WoGZMqJ h2 {
  text-align: left;
}
.cid-ux7WoGZMqJ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux7WoGZMqJ p {
  color: #767676;
  text-align: left;
}
.cid-ux7WoGZMqJ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux7WoGZMqJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux7WoGZMqJ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux7WoGZMqJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux7WoGZMqJ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux7WoGZMqJ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux7WoGZMqJ .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux7WoGZMqJ .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux7WoGZMqJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux7WoGZMqJ .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux7WoGZMqJ .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux7WoHjFBV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7WoHjFBV H1 {
  color: #000000;
}
.cid-ux7WoHDYIu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux7WoHDYIu .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux7WoHDYIu .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux7WoHDYIu .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux7WoHDYIu .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux7WoHDYIu .box {
  right: 20%;
}
.cid-ux7WoHDYIu .text-box {
  right: 0;
}
.cid-ux7WoHDYIu .mbr-section-title,
.cid-ux7WoHDYIu .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux7WoHDYIu .text-box {
    display: none;
  }
  .cid-ux7WoHDYIu .mbr-section-title,
  .cid-ux7WoHDYIu .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux7WoHDYIu .box {
    display: none;
  }
  .cid-ux7WoHDYIu .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux7WoHDYIu .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux7WoHDYIu .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux7WoHDYIu .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux7WoHDYIu .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux7WoHDYIu .mbr-section-text DIV {
  text-align: center;
}
.cid-ux7WoHWZZF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux7WoIhzcg {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux7WoIhzcg h2 {
  text-align: left;
}
.cid-ux7WoIhzcg h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux7WoIhzcg p {
  color: #767676;
  text-align: left;
}
.cid-ux7WoIhzcg .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux7WoIhzcg .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux7WoIhzcg .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux7WoIhzcg .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux7WoIhzcg .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux7WoIhzcg .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux7WoIhzcg .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux7WoIhzcg .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux7WoIhzcg .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux7WoIhzcg .mbr-text {
  color: #232323;
}
.cid-ux7WoIFz6D {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7WoIFz6D H1 {
  color: #000000;
}
.cid-ux7WoIWqmu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux7WoIWqmu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux7WoIWqmu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux7WoIWqmu .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux7WoIWqmu .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux7WoIWqmu .container {
    padding: 0 26px;
  }
}
.cid-ux7WoIWqmu .row {
  justify-content: center;
}
.cid-ux7WoIWqmu .item {
  margin-bottom: 32px;
}
.cid-ux7WoIWqmu .item a {
  display: block;
}
.cid-ux7WoIWqmu .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux7WoIWqmu .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux7WoIWqmu .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux7WoIWqmu .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-ux7WoIWqmu .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux7WoIWqmu .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux7WoIWqmu .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-ux7WoIWqmu .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux7WoIWqmu .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux7WoIWqmu .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux7WoIWqmu .item-title {
  color: #ffffff;
}
.cid-ux7WoIWqmu .mbr-date {
  color: #cacaca;
}
.cid-ux7WoIWqmu .mbr-desc {
  color: #cacaca;
}
.cid-ux7WoJkE72 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux7WoJkE72 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux7WoJkE72 .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-ux7WoJkE72 .container {
    padding: 0 16px;
  }
}
.cid-ux7WoJkE72 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux7WoJkE72 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux7WoJkE72 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux7WoJkE72 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux7WoJkE72 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux7WoJkE72 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux7WoJkE72 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux7WoJkE72 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux7WoJkE72 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux7WoJkE72 .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-ux7WoJkE72 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux7WoJkE72 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux7WoJkE72 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux7WoJkE72 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux7WoJkE72 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux7WoJkE72 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux7WoJkE72 .dragArea.row .form-group .form-control:hover,
.cid-ux7WoJkE72 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux7WoJkE72 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux7WoJkE72 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux7WoJkE72 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux7WoJkE72 .mbr-title {
  color: #ffffff;
}
.cid-ux7WoJkE72 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux7WoJkE72 .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux7WoJkE72 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux7WoJkE72 .list {
  color: #08323C;
}
.cid-ux7WoJkE72 label {
  color: #08323C;
}
.cid-ux7WoJkE72 H3 {
  color: #000000;
}
.cid-ux7WoJkE72 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux7WKH2MXs {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux7WKH2MXs H1 {
  text-align: center;
}
.cid-uDmyRy47Fx {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmyRy47Fx .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmyRy47Fx .video-block {
    width: 100% !important;
  }
}
.cid-ux7WKHnPkW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux7WKHDhCi {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ux7WKHDhCi .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux7WKHDhCi .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux7WKHDhCi .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux7WKHDhCi .box {
  left: 20%;
}
.cid-ux7WKHDhCi .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux7WKHDhCi .mbr-section-text,
.cid-ux7WKHDhCi .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux7WKHDhCi .text-box {
    display: none;
  }
  .cid-ux7WKHDhCi .mbr-section-title,
  .cid-ux7WKHDhCi .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux7WKHDhCi .box {
    display: none;
  }
  .cid-ux7WKHDhCi .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux7WKHDhCi .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux7WKHDhCi .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux7WKHDhCi .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux7WKHDhCi .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux7WKHDhCi .mbr-section-text DIV {
  text-align: center;
}
.cid-ux7WKHV1Ph {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux7WKHV1Ph H1 {
  text-align: center;
}
.cid-ux7WKIbK8D {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux7WKIq2Up {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux7WKIq2Up h2 {
  text-align: left;
}
.cid-ux7WKIq2Up h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux7WKIq2Up p {
  color: #767676;
  text-align: left;
}
.cid-ux7WKIq2Up .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux7WKIq2Up .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux7WKIq2Up .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux7WKIq2Up .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux7WKIq2Up .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux7WKIq2Up .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux7WKIq2Up .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux7WKIq2Up .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux7WKIq2Up .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux7WKIq2Up H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux7WKIq2Up P {
  color: #ffffff;
  text-align: left;
}
.cid-ux7WKIq2Up H2 {
  color: #ffffff;
  text-align: center;
}
.cid-ux7WKIKLgw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux7WKIKLgw H1 {
  color: #000000;
}
.cid-uy71zDfpgg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uy71zDfpgg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy71zDfpgg .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uy71zDfpgg .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uy71zDfpgg .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uy71zDfpgg .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uy71zDfpgg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy71zDfpgg .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uy71zDfpgg .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uy71zDfpgg .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uy71zDfpgg .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uy71zDfpgg .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-uy71zDfpgg .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uy71zDfpgg .image-wrapper {
    padding: 1rem;
  }
}
.cid-uy71zDfpgg .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uy71zDfpgg .mbr-text,
.cid-uy71zDfpgg .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux7WKJtAAS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux7WKJtAAS H1 {
  color: #000000;
}
.cid-uxfszLtQIU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfszLtQIU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfszLtQIU .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfszLtQIU .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfszLtQIU .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfszLtQIU .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfszLtQIU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfszLtQIU .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfszLtQIU .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfszLtQIU .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfszLtQIU .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfszLtQIU .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-uxfszLtQIU .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfszLtQIU .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfszLtQIU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfszLtQIU .mbr-text,
.cid-uxfszLtQIU .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfsADgcAQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfsADgcAQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfsADgcAQ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfsADgcAQ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfsADgcAQ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfsADgcAQ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfsADgcAQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfsADgcAQ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfsADgcAQ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfsADgcAQ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfsADgcAQ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfsADgcAQ .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-uxfsADgcAQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfsADgcAQ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfsADgcAQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfsADgcAQ .mbr-text,
.cid-uxfsADgcAQ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux7WKKHMkn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7WKKHMkn H1 {
  color: #000000;
}
.cid-ux7WKKYgxk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux7WKKYgxk h2 {
  text-align: left;
}
.cid-ux7WKKYgxk h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux7WKKYgxk p {
  color: #767676;
  text-align: left;
}
.cid-ux7WKKYgxk .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux7WKKYgxk .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux7WKKYgxk .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux7WKKYgxk .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux7WKKYgxk .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux7WKKYgxk .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux7WKKYgxk .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux7WKKYgxk .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux7WKKYgxk .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux7WKKYgxk .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux7WKKYgxk .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux7WKLhPBe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7WKLhPBe H1 {
  color: #000000;
}
.cid-ux7WKLCts2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux7WKLCts2 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux7WKLCts2 .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux7WKLCts2 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux7WKLCts2 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux7WKLCts2 .box {
  right: 20%;
}
.cid-ux7WKLCts2 .text-box {
  right: 0;
}
.cid-ux7WKLCts2 .mbr-section-title,
.cid-ux7WKLCts2 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux7WKLCts2 .text-box {
    display: none;
  }
  .cid-ux7WKLCts2 .mbr-section-title,
  .cid-ux7WKLCts2 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux7WKLCts2 .box {
    display: none;
  }
  .cid-ux7WKLCts2 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux7WKLCts2 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux7WKLCts2 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux7WKLCts2 .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux7WKLCts2 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux7WKLCts2 .mbr-section-text DIV {
  text-align: center;
}
.cid-ux7WKLVs1b {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux7WKMdD3M {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux7WKMdD3M h2 {
  text-align: left;
}
.cid-ux7WKMdD3M h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux7WKMdD3M p {
  color: #767676;
  text-align: left;
}
.cid-ux7WKMdD3M .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux7WKMdD3M .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux7WKMdD3M .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux7WKMdD3M .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux7WKMdD3M .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux7WKMdD3M .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux7WKMdD3M .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux7WKMdD3M .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux7WKMdD3M .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux7WKMdD3M .mbr-text {
  color: #232323;
}
.cid-ux7WKMAao6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux7WKMAao6 H1 {
  color: #000000;
}
.cid-ux7WKMRtLv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux7WKMRtLv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux7WKMRtLv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux7WKMRtLv .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux7WKMRtLv .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux7WKMRtLv .container {
    padding: 0 26px;
  }
}
.cid-ux7WKMRtLv .row {
  justify-content: center;
}
.cid-ux7WKMRtLv .item {
  margin-bottom: 32px;
}
.cid-ux7WKMRtLv .item a {
  display: block;
}
.cid-ux7WKMRtLv .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux7WKMRtLv .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux7WKMRtLv .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux7WKMRtLv .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-ux7WKMRtLv .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux7WKMRtLv .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux7WKMRtLv .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-ux7WKMRtLv .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux7WKMRtLv .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux7WKMRtLv .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux7WKMRtLv .item-title {
  color: #ffffff;
}
.cid-ux7WKMRtLv .mbr-date {
  color: #cacaca;
}
.cid-ux7WKMRtLv .mbr-desc {
  color: #cacaca;
}
.cid-ux7WKNcHCy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux7WKNcHCy .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux7WKNcHCy .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-ux7WKNcHCy .container {
    padding: 0 16px;
  }
}
.cid-ux7WKNcHCy .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux7WKNcHCy .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux7WKNcHCy .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux7WKNcHCy .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux7WKNcHCy .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux7WKNcHCy .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux7WKNcHCy .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux7WKNcHCy .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux7WKNcHCy .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux7WKNcHCy .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-ux7WKNcHCy .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux7WKNcHCy .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux7WKNcHCy .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux7WKNcHCy .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux7WKNcHCy .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux7WKNcHCy .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux7WKNcHCy .dragArea.row .form-group .form-control:hover,
.cid-ux7WKNcHCy .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux7WKNcHCy .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux7WKNcHCy .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux7WKNcHCy .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux7WKNcHCy .mbr-title {
  color: #ffffff;
}
.cid-ux7WKNcHCy .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux7WKNcHCy .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux7WKNcHCy .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux7WKNcHCy .list {
  color: #08323C;
}
.cid-ux7WKNcHCy label {
  color: #08323C;
}
.cid-ux7WKNcHCy H3 {
  color: #000000;
}
.cid-ux7WKNcHCy P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux86wJGUhS {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux86wJGUhS H1 {
  text-align: center;
}
.cid-uDmLOShYMG {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmLOShYMG .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmLOShYMG .video-block {
    width: 100% !important;
  }
}
.cid-ux86wK96bO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux86wKuRvD {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ux86wKuRvD .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux86wKuRvD .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux86wKuRvD .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux86wKuRvD .box {
  left: 20%;
}
.cid-ux86wKuRvD .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux86wKuRvD .mbr-section-text,
.cid-ux86wKuRvD .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux86wKuRvD .text-box {
    display: none;
  }
  .cid-ux86wKuRvD .mbr-section-title,
  .cid-ux86wKuRvD .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux86wKuRvD .box {
    display: none;
  }
  .cid-ux86wKuRvD .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux86wKuRvD .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux86wKuRvD .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux86wKuRvD .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux86wKuRvD .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux86wKuRvD .mbr-section-text DIV {
  text-align: center;
}
.cid-ux86wKWgw5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux86wKWgw5 H1 {
  text-align: center;
}
.cid-ux86wLfSND {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux86wLx8ya {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux86wLx8ya h2 {
  text-align: left;
}
.cid-ux86wLx8ya h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux86wLx8ya p {
  color: #767676;
  text-align: left;
}
.cid-ux86wLx8ya .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux86wLx8ya .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux86wLx8ya .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux86wLx8ya .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux86wLx8ya .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux86wLx8ya .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux86wLx8ya .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux86wLx8ya .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux86wLx8ya .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux86wLx8ya H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux86wLx8ya P {
  color: #ffffff;
  text-align: left;
}
.cid-ux86wLx8ya H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkEExf3eh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkEExf3eh H1 {
  color: #000000;
}
.cid-uxkEIueIC3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkEIueIC3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkEIueIC3 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkEIueIC3 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkEIueIC3 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkEIueIC3 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkEIueIC3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkEIueIC3 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkEIueIC3 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkEIueIC3 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkEIueIC3 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkEIueIC3 .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-uxkEIueIC3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkEIueIC3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkEIueIC3 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkEIueIC3 .mbr-text,
.cid-uxkEIueIC3 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux86wMTgSS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux86wMTgSS H1 {
  color: #000000;
}
.cid-uxkEJFWMQq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkEJFWMQq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkEJFWMQq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkEJFWMQq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkEJFWMQq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkEJFWMQq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkEJFWMQq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkEJFWMQq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkEJFWMQq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkEJFWMQq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkEJFWMQq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkEJFWMQq .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-uxkEJFWMQq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkEJFWMQq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkEJFWMQq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkEJFWMQq .mbr-text,
.cid-uxkEJFWMQq .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkEKryJb2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkEKryJb2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkEKryJb2 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkEKryJb2 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkEKryJb2 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkEKryJb2 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkEKryJb2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkEKryJb2 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkEKryJb2 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkEKryJb2 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkEKryJb2 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkEKryJb2 .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-uxkEKryJb2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkEKryJb2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkEKryJb2 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkEKryJb2 .mbr-text,
.cid-uxkEKryJb2 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux86wOfA5R {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux86wOfA5R H1 {
  color: #000000;
}
.cid-ux86wOEp4P {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux86wOEp4P h2 {
  text-align: left;
}
.cid-ux86wOEp4P h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux86wOEp4P p {
  color: #767676;
  text-align: left;
}
.cid-ux86wOEp4P .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux86wOEp4P .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux86wOEp4P .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux86wOEp4P .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux86wOEp4P .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux86wOEp4P .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux86wOEp4P .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux86wOEp4P .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux86wOEp4P .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux86wOEp4P .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux86wOEp4P .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux86wP0fsU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux86wP0fsU H1 {
  color: #000000;
}
.cid-ux86wPmu6s {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux86wPmu6s .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux86wPmu6s .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux86wPmu6s .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux86wPmu6s .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux86wPmu6s .box {
  right: 20%;
}
.cid-ux86wPmu6s .text-box {
  right: 0;
}
.cid-ux86wPmu6s .mbr-section-title,
.cid-ux86wPmu6s .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux86wPmu6s .text-box {
    display: none;
  }
  .cid-ux86wPmu6s .mbr-section-title,
  .cid-ux86wPmu6s .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux86wPmu6s .box {
    display: none;
  }
  .cid-ux86wPmu6s .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux86wPmu6s .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux86wPmu6s .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux86wPmu6s .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux86wPmu6s .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux86wPmu6s .mbr-section-text DIV {
  text-align: center;
}
.cid-ux86wPKJdn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux86wQ5Z5a {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux86wQ5Z5a h2 {
  text-align: left;
}
.cid-ux86wQ5Z5a h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux86wQ5Z5a p {
  color: #767676;
  text-align: left;
}
.cid-ux86wQ5Z5a .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux86wQ5Z5a .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux86wQ5Z5a .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux86wQ5Z5a .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux86wQ5Z5a .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux86wQ5Z5a .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux86wQ5Z5a .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux86wQ5Z5a .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux86wQ5Z5a .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux86wQ5Z5a .mbr-text {
  color: #232323;
}
.cid-ux86wQr6tG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux86wQr6tG H1 {
  color: #000000;
}
.cid-ux86wQS9He {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux86wQS9He .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux86wQS9He .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux86wQS9He .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux86wQS9He .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux86wQS9He .container {
    padding: 0 26px;
  }
}
.cid-ux86wQS9He .row {
  justify-content: center;
}
.cid-ux86wQS9He .item {
  margin-bottom: 32px;
}
.cid-ux86wQS9He .item a {
  display: block;
}
.cid-ux86wQS9He .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux86wQS9He .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux86wQS9He .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux86wQS9He .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-ux86wQS9He .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux86wQS9He .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux86wQS9He .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-ux86wQS9He .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux86wQS9He .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux86wQS9He .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux86wQS9He .item-title {
  color: #ffffff;
}
.cid-ux86wQS9He .mbr-date {
  color: #cacaca;
}
.cid-ux86wQS9He .mbr-desc {
  color: #cacaca;
}
.cid-ux86wReGo1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux86wReGo1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux86wReGo1 .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-ux86wReGo1 .container {
    padding: 0 16px;
  }
}
.cid-ux86wReGo1 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux86wReGo1 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux86wReGo1 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux86wReGo1 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux86wReGo1 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux86wReGo1 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux86wReGo1 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux86wReGo1 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux86wReGo1 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux86wReGo1 .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-ux86wReGo1 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux86wReGo1 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux86wReGo1 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux86wReGo1 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux86wReGo1 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux86wReGo1 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux86wReGo1 .dragArea.row .form-group .form-control:hover,
.cid-ux86wReGo1 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux86wReGo1 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux86wReGo1 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux86wReGo1 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux86wReGo1 .mbr-title {
  color: #ffffff;
}
.cid-ux86wReGo1 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux86wReGo1 .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux86wReGo1 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux86wReGo1 .list {
  color: #08323C;
}
.cid-ux86wReGo1 label {
  color: #08323C;
}
.cid-ux86wReGo1 H3 {
  color: #000000;
}
.cid-ux86wReGo1 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux86Xxvbnw {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux86Xxvbnw H1 {
  text-align: center;
}
.cid-uDmLRFv26U {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmLRFv26U .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmLRFv26U .video-block {
    width: 100% !important;
  }
}
.cid-ux86XxX4sx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux86XyiglN {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ux86XyiglN .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux86XyiglN .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux86XyiglN .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux86XyiglN .box {
  left: 20%;
}
.cid-ux86XyiglN .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux86XyiglN .mbr-section-text,
.cid-ux86XyiglN .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux86XyiglN .text-box {
    display: none;
  }
  .cid-ux86XyiglN .mbr-section-title,
  .cid-ux86XyiglN .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux86XyiglN .box {
    display: none;
  }
  .cid-ux86XyiglN .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux86XyiglN .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux86XyiglN .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux86XyiglN .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux86XyiglN .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux86XyiglN .mbr-section-text DIV {
  text-align: center;
}
.cid-ux86XyHi2w {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux86XyHi2w H1 {
  text-align: center;
}
.cid-ux86Xz2lJW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux86XzjwsA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux86XzjwsA h2 {
  text-align: left;
}
.cid-ux86XzjwsA h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux86XzjwsA p {
  color: #767676;
  text-align: left;
}
.cid-ux86XzjwsA .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux86XzjwsA .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux86XzjwsA .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux86XzjwsA .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux86XzjwsA .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux86XzjwsA .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux86XzjwsA .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux86XzjwsA .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux86XzjwsA .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux86XzjwsA H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux86XzjwsA P {
  color: #ffffff;
  text-align: left;
}
.cid-ux86XzjwsA H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkESfPEKA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkESfPEKA H1 {
  color: #000000;
}
.cid-uxkETQXpYx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkETQXpYx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkETQXpYx .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkETQXpYx .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkETQXpYx .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkETQXpYx .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkETQXpYx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkETQXpYx .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkETQXpYx .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkETQXpYx .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkETQXpYx .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkETQXpYx .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-uxkETQXpYx .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkETQXpYx .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkETQXpYx .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkETQXpYx .mbr-text,
.cid-uxkETQXpYx .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux86XAG8B9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux86XAG8B9 H1 {
  color: #000000;
}
.cid-uxkEWcPzVV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkEWcPzVV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkEWcPzVV .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkEWcPzVV .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkEWcPzVV .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkEWcPzVV .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkEWcPzVV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkEWcPzVV .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkEWcPzVV .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkEWcPzVV .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkEWcPzVV .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkEWcPzVV .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-uxkEWcPzVV .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkEWcPzVV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkEWcPzVV .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkEWcPzVV .mbr-text,
.cid-uxkEWcPzVV .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkEX5mvbA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkEX5mvbA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkEX5mvbA .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkEX5mvbA .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkEX5mvbA .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkEX5mvbA .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkEX5mvbA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkEX5mvbA .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkEX5mvbA .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkEX5mvbA .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkEX5mvbA .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkEX5mvbA .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-uxkEX5mvbA .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkEX5mvbA .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkEX5mvbA .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkEX5mvbA .mbr-text,
.cid-uxkEX5mvbA .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux86XC4dus {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux86XC4dus H1 {
  color: #000000;
}
.cid-ux86XCw8Oe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux86XCw8Oe h2 {
  text-align: left;
}
.cid-ux86XCw8Oe h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux86XCw8Oe p {
  color: #767676;
  text-align: left;
}
.cid-ux86XCw8Oe .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux86XCw8Oe .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux86XCw8Oe .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux86XCw8Oe .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux86XCw8Oe .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux86XCw8Oe .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux86XCw8Oe .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux86XCw8Oe .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux86XCw8Oe .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux86XCw8Oe .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux86XCw8Oe .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux86XCV3ze {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux86XCV3ze H1 {
  color: #000000;
}
.cid-ux86XDgP4J {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux86XDgP4J .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux86XDgP4J .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux86XDgP4J .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux86XDgP4J .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux86XDgP4J .box {
  right: 20%;
}
.cid-ux86XDgP4J .text-box {
  right: 0;
}
.cid-ux86XDgP4J .mbr-section-title,
.cid-ux86XDgP4J .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux86XDgP4J .text-box {
    display: none;
  }
  .cid-ux86XDgP4J .mbr-section-title,
  .cid-ux86XDgP4J .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux86XDgP4J .box {
    display: none;
  }
  .cid-ux86XDgP4J .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux86XDgP4J .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux86XDgP4J .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux86XDgP4J .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux86XDgP4J .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux86XDgP4J .mbr-section-text DIV {
  text-align: center;
}
.cid-ux86XDIaB9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux86XE316W {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux86XE316W h2 {
  text-align: left;
}
.cid-ux86XE316W h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux86XE316W p {
  color: #767676;
  text-align: left;
}
.cid-ux86XE316W .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux86XE316W .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux86XE316W .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux86XE316W .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux86XE316W .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux86XE316W .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux86XE316W .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux86XE316W .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux86XE316W .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux86XE316W .mbr-text {
  color: #232323;
}
.cid-ux86XExVT2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux86XExVT2 H1 {
  color: #000000;
}
.cid-ux86XETcJJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux86XETcJJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux86XETcJJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux86XETcJJ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux86XETcJJ .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux86XETcJJ .container {
    padding: 0 26px;
  }
}
.cid-ux86XETcJJ .row {
  justify-content: center;
}
.cid-ux86XETcJJ .item {
  margin-bottom: 32px;
}
.cid-ux86XETcJJ .item a {
  display: block;
}
.cid-ux86XETcJJ .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux86XETcJJ .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux86XETcJJ .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux86XETcJJ .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-ux86XETcJJ .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux86XETcJJ .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux86XETcJJ .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-ux86XETcJJ .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux86XETcJJ .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux86XETcJJ .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux86XETcJJ .item-title {
  color: #ffffff;
}
.cid-ux86XETcJJ .mbr-date {
  color: #cacaca;
}
.cid-ux86XETcJJ .mbr-desc {
  color: #cacaca;
}
.cid-ux86XFiZvf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux86XFiZvf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux86XFiZvf .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-ux86XFiZvf .container {
    padding: 0 16px;
  }
}
.cid-ux86XFiZvf .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux86XFiZvf .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux86XFiZvf .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux86XFiZvf .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux86XFiZvf .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux86XFiZvf .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux86XFiZvf .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux86XFiZvf .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux86XFiZvf .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux86XFiZvf .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-ux86XFiZvf .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux86XFiZvf .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux86XFiZvf .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux86XFiZvf .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux86XFiZvf .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux86XFiZvf .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux86XFiZvf .dragArea.row .form-group .form-control:hover,
.cid-ux86XFiZvf .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux86XFiZvf .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux86XFiZvf .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux86XFiZvf .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux86XFiZvf .mbr-title {
  color: #ffffff;
}
.cid-ux86XFiZvf .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux86XFiZvf .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux86XFiZvf .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux86XFiZvf .list {
  color: #08323C;
}
.cid-ux86XFiZvf label {
  color: #08323C;
}
.cid-ux86XFiZvf H3 {
  color: #000000;
}
.cid-ux86XFiZvf P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux87oOMt8j {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux87oOMt8j H1 {
  text-align: center;
}
.cid-uDmLU3NFCw {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmLU3NFCw .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmLU3NFCw .video-block {
    width: 100% !important;
  }
}
.cid-ux87oPauZ3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux87oPseMp {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ux87oPseMp .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux87oPseMp .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux87oPseMp .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux87oPseMp .box {
  left: 20%;
}
.cid-ux87oPseMp .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux87oPseMp .mbr-section-text,
.cid-ux87oPseMp .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux87oPseMp .text-box {
    display: none;
  }
  .cid-ux87oPseMp .mbr-section-title,
  .cid-ux87oPseMp .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux87oPseMp .box {
    display: none;
  }
  .cid-ux87oPseMp .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux87oPseMp .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux87oPseMp .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux87oPseMp .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux87oPseMp .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux87oPseMp .mbr-section-text DIV {
  text-align: center;
}
.cid-ux87oPO7NC {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux87oPO7NC H1 {
  text-align: center;
}
.cid-ux87oQ69xv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux87oQnVoI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux87oQnVoI h2 {
  text-align: left;
}
.cid-ux87oQnVoI h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux87oQnVoI p {
  color: #767676;
  text-align: left;
}
.cid-ux87oQnVoI .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux87oQnVoI .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux87oQnVoI .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux87oQnVoI .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux87oQnVoI .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux87oQnVoI .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux87oQnVoI .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux87oQnVoI .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux87oQnVoI .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux87oQnVoI H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux87oQnVoI P {
  color: #ffffff;
  text-align: left;
}
.cid-ux87oQnVoI H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkFIFxyCi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkFIFxyCi H1 {
  color: #000000;
}
.cid-uxkFJKGv9U {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkFJKGv9U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkFJKGv9U .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkFJKGv9U .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkFJKGv9U .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkFJKGv9U .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkFJKGv9U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkFJKGv9U .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkFJKGv9U .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkFJKGv9U .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkFJKGv9U .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkFJKGv9U .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-uxkFJKGv9U .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkFJKGv9U .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkFJKGv9U .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkFJKGv9U .mbr-text,
.cid-uxkFJKGv9U .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux87oRzWtW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux87oRzWtW H1 {
  color: #000000;
}
.cid-uxkFKufESH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkFKufESH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkFKufESH .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkFKufESH .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkFKufESH .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkFKufESH .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkFKufESH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkFKufESH .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkFKufESH .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkFKufESH .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkFKufESH .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkFKufESH .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-uxkFKufESH .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkFKufESH .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkFKufESH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkFKufESH .mbr-text,
.cid-uxkFKufESH .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkFLkfw9T {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkFLkfw9T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkFLkfw9T .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkFLkfw9T .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkFLkfw9T .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkFLkfw9T .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkFLkfw9T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkFLkfw9T .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkFLkfw9T .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkFLkfw9T .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkFLkfw9T .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkFLkfw9T .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-uxkFLkfw9T .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkFLkfw9T .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkFLkfw9T .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkFLkfw9T .mbr-text,
.cid-uxkFLkfw9T .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux87oSP0cU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux87oSP0cU H1 {
  color: #000000;
}
.cid-ux87oTbsIk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux87oTbsIk h2 {
  text-align: left;
}
.cid-ux87oTbsIk h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux87oTbsIk p {
  color: #767676;
  text-align: left;
}
.cid-ux87oTbsIk .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux87oTbsIk .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux87oTbsIk .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux87oTbsIk .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux87oTbsIk .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux87oTbsIk .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux87oTbsIk .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux87oTbsIk .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux87oTbsIk .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux87oTbsIk .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux87oTbsIk .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux87oTyobg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux87oTyobg H1 {
  color: #000000;
}
.cid-ux87oTRzTx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux87oTRzTx .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux87oTRzTx .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux87oTRzTx .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux87oTRzTx .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux87oTRzTx .box {
  right: 20%;
}
.cid-ux87oTRzTx .text-box {
  right: 0;
}
.cid-ux87oTRzTx .mbr-section-title,
.cid-ux87oTRzTx .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux87oTRzTx .text-box {
    display: none;
  }
  .cid-ux87oTRzTx .mbr-section-title,
  .cid-ux87oTRzTx .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux87oTRzTx .box {
    display: none;
  }
  .cid-ux87oTRzTx .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux87oTRzTx .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux87oTRzTx .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux87oTRzTx .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux87oTRzTx .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux87oTRzTx .mbr-section-text DIV {
  text-align: center;
}
.cid-ux87oUiDMW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux87oUCq14 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux87oUCq14 h2 {
  text-align: left;
}
.cid-ux87oUCq14 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux87oUCq14 p {
  color: #767676;
  text-align: left;
}
.cid-ux87oUCq14 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux87oUCq14 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux87oUCq14 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux87oUCq14 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux87oUCq14 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux87oUCq14 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux87oUCq14 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux87oUCq14 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux87oUCq14 .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux87oUCq14 .mbr-text {
  color: #232323;
}
.cid-ux87oV402o {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux87oV402o H1 {
  color: #000000;
}
.cid-ux87oVoXGw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux87oVoXGw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux87oVoXGw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux87oVoXGw .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux87oVoXGw .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux87oVoXGw .container {
    padding: 0 26px;
  }
}
.cid-ux87oVoXGw .row {
  justify-content: center;
}
.cid-ux87oVoXGw .item {
  margin-bottom: 32px;
}
.cid-ux87oVoXGw .item a {
  display: block;
}
.cid-ux87oVoXGw .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux87oVoXGw .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux87oVoXGw .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux87oVoXGw .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-ux87oVoXGw .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux87oVoXGw .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux87oVoXGw .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-ux87oVoXGw .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux87oVoXGw .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux87oVoXGw .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux87oVoXGw .item-title {
  color: #ffffff;
}
.cid-ux87oVoXGw .mbr-date {
  color: #cacaca;
}
.cid-ux87oVoXGw .mbr-desc {
  color: #cacaca;
}
.cid-ux87oVMXRT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux87oVMXRT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux87oVMXRT .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-ux87oVMXRT .container {
    padding: 0 16px;
  }
}
.cid-ux87oVMXRT .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux87oVMXRT .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux87oVMXRT .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux87oVMXRT .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux87oVMXRT .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux87oVMXRT .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux87oVMXRT .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux87oVMXRT .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux87oVMXRT .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux87oVMXRT .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-ux87oVMXRT .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux87oVMXRT .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux87oVMXRT .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux87oVMXRT .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux87oVMXRT .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux87oVMXRT .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux87oVMXRT .dragArea.row .form-group .form-control:hover,
.cid-ux87oVMXRT .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux87oVMXRT .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux87oVMXRT .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux87oVMXRT .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux87oVMXRT .mbr-title {
  color: #ffffff;
}
.cid-ux87oVMXRT .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux87oVMXRT .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux87oVMXRT .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux87oVMXRT .list {
  color: #08323C;
}
.cid-ux87oVMXRT label {
  color: #08323C;
}
.cid-ux87oVMXRT H3 {
  color: #000000;
}
.cid-ux87oVMXRT P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux87MxP2yt {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux87MxP2yt H1 {
  text-align: center;
}
.cid-uDmLWDrlYx {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmLWDrlYx .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmLWDrlYx .video-block {
    width: 100% !important;
  }
}
.cid-ux87MyepdY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux87MyB8hb {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ux87MyB8hb .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux87MyB8hb .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux87MyB8hb .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux87MyB8hb .box {
  left: 20%;
}
.cid-ux87MyB8hb .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux87MyB8hb .mbr-section-text,
.cid-ux87MyB8hb .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux87MyB8hb .text-box {
    display: none;
  }
  .cid-ux87MyB8hb .mbr-section-title,
  .cid-ux87MyB8hb .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux87MyB8hb .box {
    display: none;
  }
  .cid-ux87MyB8hb .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux87MyB8hb .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux87MyB8hb .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux87MyB8hb .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux87MyB8hb .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux87MyB8hb .mbr-section-text DIV {
  text-align: center;
}
.cid-ux87MyVg18 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux87MyVg18 H1 {
  text-align: center;
}
.cid-ux87MzdqkG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux87MzxC5g {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux87MzxC5g h2 {
  text-align: left;
}
.cid-ux87MzxC5g h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux87MzxC5g p {
  color: #767676;
  text-align: left;
}
.cid-ux87MzxC5g .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux87MzxC5g .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux87MzxC5g .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux87MzxC5g .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux87MzxC5g .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux87MzxC5g .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux87MzxC5g .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux87MzxC5g .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux87MzxC5g .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux87MzxC5g H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux87MzxC5g P {
  color: #ffffff;
  text-align: left;
}
.cid-ux87MzxC5g H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkFXeQLYH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkFXeQLYH H1 {
  color: #000000;
}
.cid-uxkG0kHVqp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkG0kHVqp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkG0kHVqp .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkG0kHVqp .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkG0kHVqp .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkG0kHVqp .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkG0kHVqp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkG0kHVqp .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkG0kHVqp .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkG0kHVqp .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkG0kHVqp .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkG0kHVqp .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-uxkG0kHVqp .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkG0kHVqp .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkG0kHVqp .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkG0kHVqp .mbr-text,
.cid-uxkG0kHVqp .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux87MAItiT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux87MAItiT H1 {
  color: #000000;
}
.cid-uxkG2mK4ZZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkG2mK4ZZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkG2mK4ZZ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkG2mK4ZZ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkG2mK4ZZ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkG2mK4ZZ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkG2mK4ZZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkG2mK4ZZ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkG2mK4ZZ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkG2mK4ZZ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkG2mK4ZZ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkG2mK4ZZ .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-uxkG2mK4ZZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkG2mK4ZZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkG2mK4ZZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkG2mK4ZZ .mbr-text,
.cid-uxkG2mK4ZZ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkG34qP0G {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkG34qP0G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkG34qP0G .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkG34qP0G .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkG34qP0G .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkG34qP0G .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkG34qP0G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkG34qP0G .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkG34qP0G .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkG34qP0G .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkG34qP0G .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkG34qP0G .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-uxkG34qP0G .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkG34qP0G .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkG34qP0G .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkG34qP0G .mbr-text,
.cid-uxkG34qP0G .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux87MC3Xty {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux87MC3Xty H1 {
  color: #000000;
}
.cid-ux87MComm4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux87MComm4 h2 {
  text-align: left;
}
.cid-ux87MComm4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux87MComm4 p {
  color: #767676;
  text-align: left;
}
.cid-ux87MComm4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux87MComm4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux87MComm4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux87MComm4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux87MComm4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux87MComm4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux87MComm4 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux87MComm4 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux87MComm4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux87MComm4 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux87MComm4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux87MCMWem {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux87MCMWem H1 {
  color: #000000;
}
.cid-ux87MDa9eT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux87MDa9eT .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux87MDa9eT .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux87MDa9eT .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux87MDa9eT .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux87MDa9eT .box {
  right: 20%;
}
.cid-ux87MDa9eT .text-box {
  right: 0;
}
.cid-ux87MDa9eT .mbr-section-title,
.cid-ux87MDa9eT .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux87MDa9eT .text-box {
    display: none;
  }
  .cid-ux87MDa9eT .mbr-section-title,
  .cid-ux87MDa9eT .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux87MDa9eT .box {
    display: none;
  }
  .cid-ux87MDa9eT .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux87MDa9eT .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux87MDa9eT .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux87MDa9eT .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux87MDa9eT .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux87MDa9eT .mbr-section-text DIV {
  text-align: center;
}
.cid-ux87MDwLcM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux87MDVDzl {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux87MDVDzl h2 {
  text-align: left;
}
.cid-ux87MDVDzl h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux87MDVDzl p {
  color: #767676;
  text-align: left;
}
.cid-ux87MDVDzl .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux87MDVDzl .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux87MDVDzl .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux87MDVDzl .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux87MDVDzl .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux87MDVDzl .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux87MDVDzl .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux87MDVDzl .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux87MDVDzl .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux87MDVDzl .mbr-text {
  color: #232323;
}
.cid-ux87MEixmP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux87MEixmP H1 {
  color: #000000;
}
.cid-ux87MECg0b {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux87MECg0b .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux87MECg0b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux87MECg0b .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux87MECg0b .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux87MECg0b .container {
    padding: 0 26px;
  }
}
.cid-ux87MECg0b .row {
  justify-content: center;
}
.cid-ux87MECg0b .item {
  margin-bottom: 32px;
}
.cid-ux87MECg0b .item a {
  display: block;
}
.cid-ux87MECg0b .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux87MECg0b .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux87MECg0b .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux87MECg0b .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-ux87MECg0b .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux87MECg0b .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux87MECg0b .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-ux87MECg0b .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux87MECg0b .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux87MECg0b .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux87MECg0b .item-title {
  color: #ffffff;
}
.cid-ux87MECg0b .mbr-date {
  color: #cacaca;
}
.cid-ux87MECg0b .mbr-desc {
  color: #cacaca;
}
.cid-ux87MF2ohW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux87MF2ohW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux87MF2ohW .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-ux87MF2ohW .container {
    padding: 0 16px;
  }
}
.cid-ux87MF2ohW .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux87MF2ohW .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux87MF2ohW .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux87MF2ohW .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux87MF2ohW .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux87MF2ohW .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux87MF2ohW .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux87MF2ohW .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux87MF2ohW .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux87MF2ohW .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-ux87MF2ohW .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux87MF2ohW .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux87MF2ohW .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux87MF2ohW .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux87MF2ohW .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux87MF2ohW .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux87MF2ohW .dragArea.row .form-group .form-control:hover,
.cid-ux87MF2ohW .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux87MF2ohW .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux87MF2ohW .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux87MF2ohW .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux87MF2ohW .mbr-title {
  color: #ffffff;
}
.cid-ux87MF2ohW .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux87MF2ohW .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux87MF2ohW .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux87MF2ohW .list {
  color: #08323C;
}
.cid-ux87MF2ohW label {
  color: #08323C;
}
.cid-ux87MF2ohW H3 {
  color: #000000;
}
.cid-ux87MF2ohW P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux88aQ1STk {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux88aQ1STk H1 {
  text-align: center;
}
.cid-uDmLYZZ1tX {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmLYZZ1tX .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmLYZZ1tX .video-block {
    width: 100% !important;
  }
}
.cid-ux88aQseDv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux88aQMtvp {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ux88aQMtvp .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux88aQMtvp .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux88aQMtvp .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux88aQMtvp .box {
  left: 20%;
}
.cid-ux88aQMtvp .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux88aQMtvp .mbr-section-text,
.cid-ux88aQMtvp .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux88aQMtvp .text-box {
    display: none;
  }
  .cid-ux88aQMtvp .mbr-section-title,
  .cid-ux88aQMtvp .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux88aQMtvp .box {
    display: none;
  }
  .cid-ux88aQMtvp .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux88aQMtvp .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux88aQMtvp .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux88aQMtvp .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux88aQMtvp .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux88aQMtvp .mbr-section-text DIV {
  text-align: center;
}
.cid-ux88aR6Jm4 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux88aR6Jm4 H1 {
  text-align: center;
}
.cid-ux88aRoCEM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux88aRLg4q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux88aRLg4q h2 {
  text-align: left;
}
.cid-ux88aRLg4q h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux88aRLg4q p {
  color: #767676;
  text-align: left;
}
.cid-ux88aRLg4q .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux88aRLg4q .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux88aRLg4q .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux88aRLg4q .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux88aRLg4q .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux88aRLg4q .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux88aRLg4q .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux88aRLg4q .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux88aRLg4q .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux88aRLg4q H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux88aRLg4q P {
  color: #ffffff;
  text-align: left;
}
.cid-ux88aRLg4q H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkGfmEh7T {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkGfmEh7T H1 {
  color: #000000;
}
.cid-uxkGgFOrjO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkGgFOrjO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkGgFOrjO .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkGgFOrjO .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkGgFOrjO .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkGgFOrjO .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkGgFOrjO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkGgFOrjO .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkGgFOrjO .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkGgFOrjO .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkGgFOrjO .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkGgFOrjO .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-uxkGgFOrjO .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkGgFOrjO .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkGgFOrjO .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkGgFOrjO .mbr-text,
.cid-uxkGgFOrjO .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux88aSX3yj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux88aSX3yj H1 {
  color: #000000;
}
.cid-uxkGhr3Tlw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkGhr3Tlw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkGhr3Tlw .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkGhr3Tlw .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkGhr3Tlw .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkGhr3Tlw .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkGhr3Tlw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkGhr3Tlw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkGhr3Tlw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkGhr3Tlw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkGhr3Tlw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkGhr3Tlw .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-uxkGhr3Tlw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkGhr3Tlw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkGhr3Tlw .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkGhr3Tlw .mbr-text,
.cid-uxkGhr3Tlw .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkGid470x {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkGid470x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkGid470x .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkGid470x .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkGid470x .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkGid470x .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkGid470x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkGid470x .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkGid470x .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkGid470x .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkGid470x .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkGid470x .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-uxkGid470x .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkGid470x .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkGid470x .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkGid470x .mbr-text,
.cid-uxkGid470x .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux88aUhqpb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux88aUhqpb H1 {
  color: #000000;
}
.cid-ux88aUCkYB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux88aUCkYB h2 {
  text-align: left;
}
.cid-ux88aUCkYB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux88aUCkYB p {
  color: #767676;
  text-align: left;
}
.cid-ux88aUCkYB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux88aUCkYB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux88aUCkYB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux88aUCkYB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux88aUCkYB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux88aUCkYB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux88aUCkYB .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux88aUCkYB .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux88aUCkYB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux88aUCkYB .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux88aUCkYB .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux88aV1zMK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux88aV1zMK H1 {
  color: #000000;
}
.cid-ux88aVlzbM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux88aVlzbM .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux88aVlzbM .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux88aVlzbM .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux88aVlzbM .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux88aVlzbM .box {
  right: 20%;
}
.cid-ux88aVlzbM .text-box {
  right: 0;
}
.cid-ux88aVlzbM .mbr-section-title,
.cid-ux88aVlzbM .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux88aVlzbM .text-box {
    display: none;
  }
  .cid-ux88aVlzbM .mbr-section-title,
  .cid-ux88aVlzbM .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux88aVlzbM .box {
    display: none;
  }
  .cid-ux88aVlzbM .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux88aVlzbM .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux88aVlzbM .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux88aVlzbM .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux88aVlzbM .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux88aVlzbM .mbr-section-text DIV {
  text-align: center;
}
.cid-ux88aVIFXg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux88aW5GXe {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux88aW5GXe h2 {
  text-align: left;
}
.cid-ux88aW5GXe h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux88aW5GXe p {
  color: #767676;
  text-align: left;
}
.cid-ux88aW5GXe .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux88aW5GXe .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux88aW5GXe .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux88aW5GXe .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux88aW5GXe .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux88aW5GXe .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux88aW5GXe .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux88aW5GXe .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux88aW5GXe .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux88aW5GXe .mbr-text {
  color: #232323;
}
.cid-ux88aWuuTO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux88aWuuTO H1 {
  color: #000000;
}
.cid-ux88aWSPfw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux88aWSPfw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux88aWSPfw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux88aWSPfw .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux88aWSPfw .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux88aWSPfw .container {
    padding: 0 26px;
  }
}
.cid-ux88aWSPfw .row {
  justify-content: center;
}
.cid-ux88aWSPfw .item {
  margin-bottom: 32px;
}
.cid-ux88aWSPfw .item a {
  display: block;
}
.cid-ux88aWSPfw .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux88aWSPfw .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux88aWSPfw .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux88aWSPfw .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-ux88aWSPfw .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux88aWSPfw .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux88aWSPfw .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-ux88aWSPfw .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux88aWSPfw .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux88aWSPfw .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux88aWSPfw .item-title {
  color: #ffffff;
}
.cid-ux88aWSPfw .mbr-date {
  color: #cacaca;
}
.cid-ux88aWSPfw .mbr-desc {
  color: #cacaca;
}
.cid-ux88aXiv5N {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux88aXiv5N .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux88aXiv5N .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-ux88aXiv5N .container {
    padding: 0 16px;
  }
}
.cid-ux88aXiv5N .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux88aXiv5N .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux88aXiv5N .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux88aXiv5N .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux88aXiv5N .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux88aXiv5N .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux88aXiv5N .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux88aXiv5N .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux88aXiv5N .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux88aXiv5N .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-ux88aXiv5N .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux88aXiv5N .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux88aXiv5N .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux88aXiv5N .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux88aXiv5N .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux88aXiv5N .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux88aXiv5N .dragArea.row .form-group .form-control:hover,
.cid-ux88aXiv5N .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux88aXiv5N .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux88aXiv5N .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux88aXiv5N .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux88aXiv5N .mbr-title {
  color: #ffffff;
}
.cid-ux88aXiv5N .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux88aXiv5N .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux88aXiv5N .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux88aXiv5N .list {
  color: #08323C;
}
.cid-ux88aXiv5N label {
  color: #08323C;
}
.cid-ux88aXiv5N H3 {
  color: #000000;
}
.cid-ux88aXiv5N P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux88GBWXIo {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux88GBWXIo H1 {
  text-align: center;
}
.cid-uDmM2K6tYE {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmM2K6tYE .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmM2K6tYE .video-block {
    width: 100% !important;
  }
}
.cid-ux88GCkbVS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux88GCHAc1 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ux88GCHAc1 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux88GCHAc1 .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux88GCHAc1 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux88GCHAc1 .box {
  left: 20%;
}
.cid-ux88GCHAc1 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux88GCHAc1 .mbr-section-text,
.cid-ux88GCHAc1 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux88GCHAc1 .text-box {
    display: none;
  }
  .cid-ux88GCHAc1 .mbr-section-title,
  .cid-ux88GCHAc1 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux88GCHAc1 .box {
    display: none;
  }
  .cid-ux88GCHAc1 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux88GCHAc1 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux88GCHAc1 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux88GCHAc1 .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux88GCHAc1 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux88GCHAc1 .mbr-section-text DIV {
  text-align: center;
}
.cid-ux88GD11Sa {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux88GD11Sa H1 {
  text-align: center;
}
.cid-ux88GDkJCs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux88GDHfvy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux88GDHfvy h2 {
  text-align: left;
}
.cid-ux88GDHfvy h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux88GDHfvy p {
  color: #767676;
  text-align: left;
}
.cid-ux88GDHfvy .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux88GDHfvy .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux88GDHfvy .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux88GDHfvy .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux88GDHfvy .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux88GDHfvy .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux88GDHfvy .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux88GDHfvy .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux88GDHfvy .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux88GDHfvy H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux88GDHfvy P {
  color: #ffffff;
  text-align: left;
}
.cid-ux88GDHfvy H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkGwt5lSC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkGwt5lSC H1 {
  color: #000000;
}
.cid-uxkGyXq70Z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkGyXq70Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkGyXq70Z .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkGyXq70Z .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkGyXq70Z .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkGyXq70Z .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkGyXq70Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkGyXq70Z .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkGyXq70Z .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkGyXq70Z .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkGyXq70Z .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkGyXq70Z .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-uxkGyXq70Z .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkGyXq70Z .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkGyXq70Z .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkGyXq70Z .mbr-text,
.cid-uxkGyXq70Z .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux88GEVNpc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux88GEVNpc H1 {
  color: #000000;
}
.cid-uxkGzTTmFs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkGzTTmFs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkGzTTmFs .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkGzTTmFs .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkGzTTmFs .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkGzTTmFs .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkGzTTmFs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkGzTTmFs .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkGzTTmFs .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkGzTTmFs .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkGzTTmFs .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkGzTTmFs .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-uxkGzTTmFs .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkGzTTmFs .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkGzTTmFs .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkGzTTmFs .mbr-text,
.cid-uxkGzTTmFs .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkGAE8Gal {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkGAE8Gal .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkGAE8Gal .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkGAE8Gal .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkGAE8Gal .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkGAE8Gal .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkGAE8Gal .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkGAE8Gal .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkGAE8Gal .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkGAE8Gal .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkGAE8Gal .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkGAE8Gal .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-uxkGAE8Gal .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkGAE8Gal .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkGAE8Gal .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkGAE8Gal .mbr-text,
.cid-uxkGAE8Gal .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux88GGo2Yv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux88GGo2Yv H1 {
  color: #000000;
}
.cid-ux88GGKEK6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux88GGKEK6 h2 {
  text-align: left;
}
.cid-ux88GGKEK6 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux88GGKEK6 p {
  color: #767676;
  text-align: left;
}
.cid-ux88GGKEK6 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux88GGKEK6 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux88GGKEK6 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux88GGKEK6 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux88GGKEK6 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux88GGKEK6 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux88GGKEK6 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux88GGKEK6 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux88GGKEK6 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux88GGKEK6 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux88GGKEK6 .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux88GHcuD3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux88GHcuD3 H1 {
  color: #000000;
}
.cid-ux88GHxytl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux88GHxytl .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux88GHxytl .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux88GHxytl .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux88GHxytl .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux88GHxytl .box {
  right: 20%;
}
.cid-ux88GHxytl .text-box {
  right: 0;
}
.cid-ux88GHxytl .mbr-section-title,
.cid-ux88GHxytl .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux88GHxytl .text-box {
    display: none;
  }
  .cid-ux88GHxytl .mbr-section-title,
  .cid-ux88GHxytl .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux88GHxytl .box {
    display: none;
  }
  .cid-ux88GHxytl .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux88GHxytl .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux88GHxytl .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux88GHxytl .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux88GHxytl .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux88GHxytl .mbr-section-text DIV {
  text-align: center;
}
.cid-ux88GHUxVY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux88GIiOVS {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux88GIiOVS h2 {
  text-align: left;
}
.cid-ux88GIiOVS h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux88GIiOVS p {
  color: #767676;
  text-align: left;
}
.cid-ux88GIiOVS .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux88GIiOVS .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux88GIiOVS .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux88GIiOVS .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux88GIiOVS .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux88GIiOVS .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux88GIiOVS .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux88GIiOVS .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux88GIiOVS .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux88GIiOVS .mbr-text {
  color: #232323;
}
.cid-ux88GIG8q0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux88GIG8q0 H1 {
  color: #000000;
}
.cid-ux88GJ4sW5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux88GJ4sW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux88GJ4sW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux88GJ4sW5 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux88GJ4sW5 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux88GJ4sW5 .container {
    padding: 0 26px;
  }
}
.cid-ux88GJ4sW5 .row {
  justify-content: center;
}
.cid-ux88GJ4sW5 .item {
  margin-bottom: 32px;
}
.cid-ux88GJ4sW5 .item a {
  display: block;
}
.cid-ux88GJ4sW5 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux88GJ4sW5 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux88GJ4sW5 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux88GJ4sW5 .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-ux88GJ4sW5 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux88GJ4sW5 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux88GJ4sW5 .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-ux88GJ4sW5 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux88GJ4sW5 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux88GJ4sW5 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux88GJ4sW5 .item-title {
  color: #ffffff;
}
.cid-ux88GJ4sW5 .mbr-date {
  color: #cacaca;
}
.cid-ux88GJ4sW5 .mbr-desc {
  color: #cacaca;
}
.cid-ux88GJsyGv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux88GJsyGv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux88GJsyGv .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-ux88GJsyGv .container {
    padding: 0 16px;
  }
}
.cid-ux88GJsyGv .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux88GJsyGv .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux88GJsyGv .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux88GJsyGv .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux88GJsyGv .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux88GJsyGv .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux88GJsyGv .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux88GJsyGv .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux88GJsyGv .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux88GJsyGv .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-ux88GJsyGv .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux88GJsyGv .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux88GJsyGv .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux88GJsyGv .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux88GJsyGv .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux88GJsyGv .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux88GJsyGv .dragArea.row .form-group .form-control:hover,
.cid-ux88GJsyGv .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux88GJsyGv .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux88GJsyGv .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux88GJsyGv .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux88GJsyGv .mbr-title {
  color: #ffffff;
}
.cid-ux88GJsyGv .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux88GJsyGv .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux88GJsyGv .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux88GJsyGv .list {
  color: #08323C;
}
.cid-ux88GJsyGv label {
  color: #08323C;
}
.cid-ux88GJsyGv H3 {
  color: #000000;
}
.cid-ux88GJsyGv P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux89nyx2xV {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux89nyx2xV H1 {
  text-align: center;
}
.cid-uDmM5BDSwl {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmM5BDSwl .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmM5BDSwl .video-block {
    width: 100% !important;
  }
}
.cid-ux89nz48f6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux89nzoGjQ {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ux89nzoGjQ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux89nzoGjQ .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux89nzoGjQ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux89nzoGjQ .box {
  left: 20%;
}
.cid-ux89nzoGjQ .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux89nzoGjQ .mbr-section-text,
.cid-ux89nzoGjQ .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux89nzoGjQ .text-box {
    display: none;
  }
  .cid-ux89nzoGjQ .mbr-section-title,
  .cid-ux89nzoGjQ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux89nzoGjQ .box {
    display: none;
  }
  .cid-ux89nzoGjQ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux89nzoGjQ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux89nzoGjQ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux89nzoGjQ .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux89nzoGjQ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux89nzoGjQ .mbr-section-text DIV {
  text-align: center;
}
.cid-ux89nzHXa6 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux89nzHXa6 H1 {
  text-align: center;
}
.cid-ux89nA2v73 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux89nAln5k {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux89nAln5k h2 {
  text-align: left;
}
.cid-ux89nAln5k h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux89nAln5k p {
  color: #767676;
  text-align: left;
}
.cid-ux89nAln5k .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux89nAln5k .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux89nAln5k .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux89nAln5k .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux89nAln5k .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux89nAln5k .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux89nAln5k .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux89nAln5k .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux89nAln5k .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux89nAln5k H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux89nAln5k P {
  color: #ffffff;
  text-align: left;
}
.cid-ux89nAln5k H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkGJiJmms {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkGJiJmms H1 {
  color: #000000;
}
.cid-uxkGKZu9yc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkGKZu9yc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkGKZu9yc .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkGKZu9yc .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkGKZu9yc .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkGKZu9yc .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkGKZu9yc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkGKZu9yc .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkGKZu9yc .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkGKZu9yc .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkGKZu9yc .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkGKZu9yc .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-uxkGKZu9yc .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkGKZu9yc .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkGKZu9yc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkGKZu9yc .mbr-text,
.cid-uxkGKZu9yc .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux89nBwiCw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux89nBwiCw H1 {
  color: #000000;
}
.cid-uxkGMGAGuq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkGMGAGuq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkGMGAGuq .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkGMGAGuq .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkGMGAGuq .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkGMGAGuq .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkGMGAGuq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkGMGAGuq .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkGMGAGuq .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkGMGAGuq .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkGMGAGuq .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkGMGAGuq .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-uxkGMGAGuq .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkGMGAGuq .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkGMGAGuq .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkGMGAGuq .mbr-text,
.cid-uxkGMGAGuq .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkGNrHyd6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkGNrHyd6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkGNrHyd6 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkGNrHyd6 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkGNrHyd6 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkGNrHyd6 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkGNrHyd6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkGNrHyd6 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkGNrHyd6 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkGNrHyd6 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkGNrHyd6 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkGNrHyd6 .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-uxkGNrHyd6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkGNrHyd6 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkGNrHyd6 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkGNrHyd6 .mbr-text,
.cid-uxkGNrHyd6 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux89nCXRXo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux89nCXRXo H1 {
  color: #000000;
}
.cid-ux89nDn1ww {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux89nDn1ww h2 {
  text-align: left;
}
.cid-ux89nDn1ww h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux89nDn1ww p {
  color: #767676;
  text-align: left;
}
.cid-ux89nDn1ww .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux89nDn1ww .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux89nDn1ww .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux89nDn1ww .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux89nDn1ww .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux89nDn1ww .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux89nDn1ww .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux89nDn1ww .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux89nDn1ww .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux89nDn1ww .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux89nDn1ww .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux89nDRSnJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux89nDRSnJ H1 {
  color: #000000;
}
.cid-ux89nEcSqE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux89nEcSqE .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux89nEcSqE .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux89nEcSqE .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux89nEcSqE .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux89nEcSqE .box {
  right: 20%;
}
.cid-ux89nEcSqE .text-box {
  right: 0;
}
.cid-ux89nEcSqE .mbr-section-title,
.cid-ux89nEcSqE .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux89nEcSqE .text-box {
    display: none;
  }
  .cid-ux89nEcSqE .mbr-section-title,
  .cid-ux89nEcSqE .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux89nEcSqE .box {
    display: none;
  }
  .cid-ux89nEcSqE .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux89nEcSqE .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux89nEcSqE .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux89nEcSqE .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux89nEcSqE .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux89nEcSqE .mbr-section-text DIV {
  text-align: center;
}
.cid-ux89nECtsg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux89nEXIRX {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux89nEXIRX h2 {
  text-align: left;
}
.cid-ux89nEXIRX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux89nEXIRX p {
  color: #767676;
  text-align: left;
}
.cid-ux89nEXIRX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux89nEXIRX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux89nEXIRX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux89nEXIRX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux89nEXIRX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux89nEXIRX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux89nEXIRX .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux89nEXIRX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux89nEXIRX .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux89nEXIRX .mbr-text {
  color: #232323;
}
.cid-ux89nFlfSs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux89nFlfSs H1 {
  color: #000000;
}
.cid-ux89nFK7Ui {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux89nFK7Ui .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux89nFK7Ui .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux89nFK7Ui .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux89nFK7Ui .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux89nFK7Ui .container {
    padding: 0 26px;
  }
}
.cid-ux89nFK7Ui .row {
  justify-content: center;
}
.cid-ux89nFK7Ui .item {
  margin-bottom: 32px;
}
.cid-ux89nFK7Ui .item a {
  display: block;
}
.cid-ux89nFK7Ui .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux89nFK7Ui .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux89nFK7Ui .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux89nFK7Ui .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-ux89nFK7Ui .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux89nFK7Ui .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux89nFK7Ui .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-ux89nFK7Ui .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux89nFK7Ui .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux89nFK7Ui .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux89nFK7Ui .item-title {
  color: #ffffff;
}
.cid-ux89nFK7Ui .mbr-date {
  color: #cacaca;
}
.cid-ux89nFK7Ui .mbr-desc {
  color: #cacaca;
}
.cid-ux89nG8YYA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux89nG8YYA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux89nG8YYA .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-ux89nG8YYA .container {
    padding: 0 16px;
  }
}
.cid-ux89nG8YYA .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux89nG8YYA .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux89nG8YYA .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux89nG8YYA .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux89nG8YYA .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux89nG8YYA .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux89nG8YYA .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux89nG8YYA .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux89nG8YYA .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux89nG8YYA .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-ux89nG8YYA .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux89nG8YYA .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux89nG8YYA .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux89nG8YYA .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux89nG8YYA .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux89nG8YYA .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux89nG8YYA .dragArea.row .form-group .form-control:hover,
.cid-ux89nG8YYA .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux89nG8YYA .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux89nG8YYA .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux89nG8YYA .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux89nG8YYA .mbr-title {
  color: #ffffff;
}
.cid-ux89nG8YYA .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux89nG8YYA .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux89nG8YYA .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux89nG8YYA .list {
  color: #08323C;
}
.cid-ux89nG8YYA label {
  color: #08323C;
}
.cid-ux89nG8YYA H3 {
  color: #000000;
}
.cid-ux89nG8YYA P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux89VtdEBQ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux89VtdEBQ H1 {
  text-align: center;
}
.cid-uDmM8xuk2l {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmM8xuk2l .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmM8xuk2l .video-block {
    width: 100% !important;
  }
}
.cid-ux89VtEuLF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux89Vu2iy4 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ux89Vu2iy4 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux89Vu2iy4 .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux89Vu2iy4 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux89Vu2iy4 .box {
  left: 20%;
}
.cid-ux89Vu2iy4 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux89Vu2iy4 .mbr-section-text,
.cid-ux89Vu2iy4 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux89Vu2iy4 .text-box {
    display: none;
  }
  .cid-ux89Vu2iy4 .mbr-section-title,
  .cid-ux89Vu2iy4 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux89Vu2iy4 .box {
    display: none;
  }
  .cid-ux89Vu2iy4 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux89Vu2iy4 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux89Vu2iy4 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux89Vu2iy4 .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux89Vu2iy4 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux89Vu2iy4 .mbr-section-text DIV {
  text-align: center;
}
.cid-ux89VunFme {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux89VunFme H1 {
  text-align: center;
}
.cid-ux89VuInTK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux89Vv6MSu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux89Vv6MSu h2 {
  text-align: left;
}
.cid-ux89Vv6MSu h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux89Vv6MSu p {
  color: #767676;
  text-align: left;
}
.cid-ux89Vv6MSu .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux89Vv6MSu .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux89Vv6MSu .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux89Vv6MSu .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux89Vv6MSu .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux89Vv6MSu .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux89Vv6MSu .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux89Vv6MSu .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux89Vv6MSu .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux89Vv6MSu H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux89Vv6MSu P {
  color: #ffffff;
  text-align: left;
}
.cid-ux89Vv6MSu H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkGXqitsE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkGXqitsE H1 {
  color: #000000;
}
.cid-uxkGZ3mO4Y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkGZ3mO4Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkGZ3mO4Y .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkGZ3mO4Y .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkGZ3mO4Y .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkGZ3mO4Y .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkGZ3mO4Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkGZ3mO4Y .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkGZ3mO4Y .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkGZ3mO4Y .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkGZ3mO4Y .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkGZ3mO4Y .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-uxkGZ3mO4Y .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkGZ3mO4Y .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkGZ3mO4Y .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkGZ3mO4Y .mbr-text,
.cid-uxkGZ3mO4Y .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux89Vwmx7q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux89Vwmx7q H1 {
  color: #000000;
}
.cid-uxkH4ZIp8d {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkH4ZIp8d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkH4ZIp8d .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkH4ZIp8d .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkH4ZIp8d .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkH4ZIp8d .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkH4ZIp8d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkH4ZIp8d .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkH4ZIp8d .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkH4ZIp8d .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkH4ZIp8d .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkH4ZIp8d .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-uxkH4ZIp8d .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkH4ZIp8d .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkH4ZIp8d .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkH4ZIp8d .mbr-text,
.cid-uxkH4ZIp8d .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkH6dnnAR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkH6dnnAR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkH6dnnAR .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkH6dnnAR .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkH6dnnAR .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkH6dnnAR .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkH6dnnAR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkH6dnnAR .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkH6dnnAR .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkH6dnnAR .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkH6dnnAR .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkH6dnnAR .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-uxkH6dnnAR .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkH6dnnAR .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkH6dnnAR .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkH6dnnAR .mbr-text,
.cid-uxkH6dnnAR .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux89VxUeu6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux89VxUeu6 H1 {
  color: #000000;
}
.cid-ux89Vyis6l {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux89Vyis6l h2 {
  text-align: left;
}
.cid-ux89Vyis6l h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux89Vyis6l p {
  color: #767676;
  text-align: left;
}
.cid-ux89Vyis6l .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux89Vyis6l .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux89Vyis6l .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux89Vyis6l .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux89Vyis6l .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux89Vyis6l .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux89Vyis6l .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux89Vyis6l .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux89Vyis6l .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux89Vyis6l .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux89Vyis6l .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux89VyHPZG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux89VyHPZG H1 {
  color: #000000;
}
.cid-ux89Vz9ZyT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux89Vz9ZyT .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux89Vz9ZyT .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux89Vz9ZyT .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux89Vz9ZyT .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux89Vz9ZyT .box {
  right: 20%;
}
.cid-ux89Vz9ZyT .text-box {
  right: 0;
}
.cid-ux89Vz9ZyT .mbr-section-title,
.cid-ux89Vz9ZyT .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux89Vz9ZyT .text-box {
    display: none;
  }
  .cid-ux89Vz9ZyT .mbr-section-title,
  .cid-ux89Vz9ZyT .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux89Vz9ZyT .box {
    display: none;
  }
  .cid-ux89Vz9ZyT .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux89Vz9ZyT .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux89Vz9ZyT .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux89Vz9ZyT .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux89Vz9ZyT .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux89Vz9ZyT .mbr-section-text DIV {
  text-align: center;
}
.cid-ux89VzzRyl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux89VA04Wg {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux89VA04Wg h2 {
  text-align: left;
}
.cid-ux89VA04Wg h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux89VA04Wg p {
  color: #767676;
  text-align: left;
}
.cid-ux89VA04Wg .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux89VA04Wg .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux89VA04Wg .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux89VA04Wg .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux89VA04Wg .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux89VA04Wg .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux89VA04Wg .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux89VA04Wg .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux89VA04Wg .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux89VA04Wg .mbr-text {
  color: #232323;
}
.cid-ux89VAtusd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux89VAtusd H1 {
  color: #000000;
}
.cid-ux89VAQbul {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux89VAQbul .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux89VAQbul .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux89VAQbul .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux89VAQbul .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux89VAQbul .container {
    padding: 0 26px;
  }
}
.cid-ux89VAQbul .row {
  justify-content: center;
}
.cid-ux89VAQbul .item {
  margin-bottom: 32px;
}
.cid-ux89VAQbul .item a {
  display: block;
}
.cid-ux89VAQbul .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux89VAQbul .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux89VAQbul .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux89VAQbul .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-ux89VAQbul .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux89VAQbul .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux89VAQbul .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-ux89VAQbul .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux89VAQbul .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux89VAQbul .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux89VAQbul .item-title {
  color: #ffffff;
}
.cid-ux89VAQbul .mbr-date {
  color: #cacaca;
}
.cid-ux89VAQbul .mbr-desc {
  color: #cacaca;
}
.cid-ux89VBnqdi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux89VBnqdi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux89VBnqdi .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-ux89VBnqdi .container {
    padding: 0 16px;
  }
}
.cid-ux89VBnqdi .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux89VBnqdi .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux89VBnqdi .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux89VBnqdi .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux89VBnqdi .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux89VBnqdi .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux89VBnqdi .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux89VBnqdi .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux89VBnqdi .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux89VBnqdi .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-ux89VBnqdi .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux89VBnqdi .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux89VBnqdi .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux89VBnqdi .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux89VBnqdi .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux89VBnqdi .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux89VBnqdi .dragArea.row .form-group .form-control:hover,
.cid-ux89VBnqdi .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux89VBnqdi .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux89VBnqdi .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux89VBnqdi .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux89VBnqdi .mbr-title {
  color: #ffffff;
}
.cid-ux89VBnqdi .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux89VBnqdi .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux89VBnqdi .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux89VBnqdi .list {
  color: #08323C;
}
.cid-ux89VBnqdi label {
  color: #08323C;
}
.cid-ux89VBnqdi H3 {
  color: #000000;
}
.cid-ux89VBnqdi P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux8mYE1kEe {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8mYE1kEe H1 {
  text-align: center;
}
.cid-uDmMtCGg0I {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmMtCGg0I .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmMtCGg0I .video-block {
    width: 100% !important;
  }
}
.cid-ux8mYEydkW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8mYF5HfZ {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-ux8mYF5HfZ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8mYF5HfZ .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8mYF5HfZ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8mYF5HfZ .box {
  left: 20%;
}
.cid-ux8mYF5HfZ .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux8mYF5HfZ .mbr-section-text,
.cid-ux8mYF5HfZ .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux8mYF5HfZ .text-box {
    display: none;
  }
  .cid-ux8mYF5HfZ .mbr-section-title,
  .cid-ux8mYF5HfZ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8mYF5HfZ .box {
    display: none;
  }
  .cid-ux8mYF5HfZ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8mYF5HfZ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8mYF5HfZ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8mYF5HfZ .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8mYF5HfZ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8mYF5HfZ .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8mYFx90D {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8mYFx90D H1 {
  text-align: center;
}
.cid-ux8mYG2S5M {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8mYGrl4l {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8mYGrl4l h2 {
  text-align: left;
}
.cid-ux8mYGrl4l h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8mYGrl4l p {
  color: #767676;
  text-align: left;
}
.cid-ux8mYGrl4l .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8mYGrl4l .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8mYGrl4l .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8mYGrl4l .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8mYGrl4l .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8mYGrl4l .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8mYGrl4l .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8mYGrl4l .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8mYGrl4l .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8mYGrl4l H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux8mYGrl4l P {
  color: #ffffff;
  text-align: left;
}
.cid-ux8mYGrl4l H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkKHc7jit {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkKHc7jit H1 {
  color: #000000;
}
.cid-uxkKIhk98B {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkKIhk98B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkKIhk98B .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkKIhk98B .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkKIhk98B .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkKIhk98B .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkKIhk98B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkKIhk98B .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkKIhk98B .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkKIhk98B .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkKIhk98B .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkKIhk98B .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-uxkKIhk98B .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkKIhk98B .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkKIhk98B .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkKIhk98B .mbr-text,
.cid-uxkKIhk98B .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8mYI26vB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8mYIx4ff {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux8mYIx4ff H1 {
  color: #000000;
}
.cid-uxkKJ3LNuX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkKJ3LNuX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkKJ3LNuX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkKJ3LNuX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkKJ3LNuX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkKJ3LNuX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkKJ3LNuX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkKJ3LNuX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkKJ3LNuX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkKJ3LNuX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkKJ3LNuX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkKJ3LNuX .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-uxkKJ3LNuX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkKJ3LNuX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkKJ3LNuX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkKJ3LNuX .mbr-text,
.cid-uxkKJ3LNuX .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkKJR168L {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkKJR168L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkKJR168L .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkKJR168L .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkKJR168L .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkKJR168L .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkKJR168L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkKJR168L .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkKJR168L .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkKJR168L .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkKJR168L .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkKJR168L .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-uxkKJR168L .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkKJR168L .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkKJR168L .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkKJR168L .mbr-text,
.cid-uxkKJR168L .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8mYKoihL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8mYKoihL H1 {
  color: #000000;
}
.cid-ux8mYKQ8sz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux8mYKQ8sz h2 {
  text-align: left;
}
.cid-ux8mYKQ8sz h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8mYKQ8sz p {
  color: #767676;
  text-align: left;
}
.cid-ux8mYKQ8sz .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8mYKQ8sz .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8mYKQ8sz .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8mYKQ8sz .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8mYKQ8sz .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8mYKQ8sz .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8mYKQ8sz .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux8mYKQ8sz .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux8mYKQ8sz .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux8mYKQ8sz .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux8mYKQ8sz .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8mYLoQiz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8mYLoQiz H1 {
  color: #000000;
}
.cid-ux8mYLSrtn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux8mYLSrtn .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8mYLSrtn .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8mYLSrtn .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8mYLSrtn .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux8mYLSrtn .box {
  right: 20%;
}
.cid-ux8mYLSrtn .text-box {
  right: 0;
}
.cid-ux8mYLSrtn .mbr-section-title,
.cid-ux8mYLSrtn .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux8mYLSrtn .text-box {
    display: none;
  }
  .cid-ux8mYLSrtn .mbr-section-title,
  .cid-ux8mYLSrtn .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8mYLSrtn .box {
    display: none;
  }
  .cid-ux8mYLSrtn .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8mYLSrtn .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8mYLSrtn .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8mYLSrtn .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8mYLSrtn .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8mYLSrtn .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8mYMsBgp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8mYMWLyZ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux8mYMWLyZ h2 {
  text-align: left;
}
.cid-ux8mYMWLyZ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8mYMWLyZ p {
  color: #767676;
  text-align: left;
}
.cid-ux8mYMWLyZ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8mYMWLyZ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8mYMWLyZ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8mYMWLyZ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8mYMWLyZ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8mYMWLyZ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8mYMWLyZ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8mYMWLyZ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8mYMWLyZ .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8mYMWLyZ .mbr-text {
  color: #232323;
}
.cid-ux8mYNyMyi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8mYNyMyi H1 {
  color: #000000;
}
.cid-ux8mYO4Bml {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux8mYO4Bml .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8mYO4Bml .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux8mYO4Bml .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux8mYO4Bml .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux8mYO4Bml .container {
    padding: 0 26px;
  }
}
.cid-ux8mYO4Bml .row {
  justify-content: center;
}
.cid-ux8mYO4Bml .item {
  margin-bottom: 32px;
}
.cid-ux8mYO4Bml .item a {
  display: block;
}
.cid-ux8mYO4Bml .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux8mYO4Bml .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux8mYO4Bml .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux8mYO4Bml .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-ux8mYO4Bml .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux8mYO4Bml .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux8mYO4Bml .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-ux8mYO4Bml .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux8mYO4Bml .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux8mYO4Bml .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux8mYO4Bml .item-title {
  color: #ffffff;
}
.cid-ux8mYO4Bml .mbr-date {
  color: #cacaca;
}
.cid-ux8mYO4Bml .mbr-desc {
  color: #cacaca;
}
.cid-ux8mYOCBZx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux8mYOCBZx .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8mYOCBZx .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-ux8mYOCBZx .container {
    padding: 0 16px;
  }
}
.cid-ux8mYOCBZx .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux8mYOCBZx .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8mYOCBZx .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux8mYOCBZx .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8mYOCBZx .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux8mYOCBZx .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux8mYOCBZx .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux8mYOCBZx .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux8mYOCBZx .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux8mYOCBZx .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-ux8mYOCBZx .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux8mYOCBZx .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux8mYOCBZx .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux8mYOCBZx .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux8mYOCBZx .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux8mYOCBZx .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux8mYOCBZx .dragArea.row .form-group .form-control:hover,
.cid-ux8mYOCBZx .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux8mYOCBZx .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux8mYOCBZx .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux8mYOCBZx .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux8mYOCBZx .mbr-title {
  color: #ffffff;
}
.cid-ux8mYOCBZx .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux8mYOCBZx .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux8mYOCBZx .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux8mYOCBZx .list {
  color: #08323C;
}
.cid-ux8mYOCBZx label {
  color: #08323C;
}
.cid-ux8mYOCBZx H3 {
  color: #000000;
}
.cid-ux8mYOCBZx P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux8nEVVc3S {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8nEVVc3S H1 {
  text-align: center;
}
.cid-uDmMwHp03u {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmMwHp03u .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmMwHp03u .video-block {
    width: 100% !important;
  }
}
.cid-ux8nEWtiTF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8nEWSjtx {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-ux8nEWSjtx .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8nEWSjtx .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8nEWSjtx .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8nEWSjtx .box {
  left: 20%;
}
.cid-ux8nEWSjtx .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux8nEWSjtx .mbr-section-text,
.cid-ux8nEWSjtx .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux8nEWSjtx .text-box {
    display: none;
  }
  .cid-ux8nEWSjtx .mbr-section-title,
  .cid-ux8nEWSjtx .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8nEWSjtx .box {
    display: none;
  }
  .cid-ux8nEWSjtx .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8nEWSjtx .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8nEWSjtx .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8nEWSjtx .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8nEWSjtx .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8nEWSjtx .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8nEXlW1b {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8nEXlW1b H1 {
  text-align: center;
}
.cid-ux8nEXLKsB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8nEY8Zaa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8nEY8Zaa h2 {
  text-align: left;
}
.cid-ux8nEY8Zaa h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8nEY8Zaa p {
  color: #767676;
  text-align: left;
}
.cid-ux8nEY8Zaa .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8nEY8Zaa .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8nEY8Zaa .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8nEY8Zaa .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8nEY8Zaa .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8nEY8Zaa .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8nEY8Zaa .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8nEY8Zaa .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8nEY8Zaa .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8nEY8Zaa H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux8nEY8Zaa P {
  color: #ffffff;
  text-align: left;
}
.cid-ux8nEY8Zaa H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkKORmVsZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkKORmVsZ H1 {
  color: #000000;
}
.cid-uxkKPLUinY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkKPLUinY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkKPLUinY .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkKPLUinY .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkKPLUinY .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkKPLUinY .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkKPLUinY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkKPLUinY .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkKPLUinY .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkKPLUinY .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkKPLUinY .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkKPLUinY .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-uxkKPLUinY .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkKPLUinY .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkKPLUinY .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkKPLUinY .mbr-text,
.cid-uxkKPLUinY .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8nEZGA7c {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8nF07qec {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux8nF07qec H1 {
  color: #000000;
}
.cid-uxkLk2VlIt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkLk2VlIt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkLk2VlIt .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkLk2VlIt .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkLk2VlIt .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkLk2VlIt .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkLk2VlIt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkLk2VlIt .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkLk2VlIt .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkLk2VlIt .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkLk2VlIt .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkLk2VlIt .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-uxkLk2VlIt .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkLk2VlIt .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkLk2VlIt .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkLk2VlIt .mbr-text,
.cid-uxkLk2VlIt .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkLkNrmEH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkLkNrmEH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkLkNrmEH .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkLkNrmEH .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkLkNrmEH .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkLkNrmEH .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkLkNrmEH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkLkNrmEH .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkLkNrmEH .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkLkNrmEH .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkLkNrmEH .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkLkNrmEH .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-uxkLkNrmEH .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkLkNrmEH .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkLkNrmEH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkLkNrmEH .mbr-text,
.cid-uxkLkNrmEH .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8nF1RGcs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8nF1RGcs H1 {
  color: #000000;
}
.cid-ux8nF2mP8S {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux8nF2mP8S h2 {
  text-align: left;
}
.cid-ux8nF2mP8S h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8nF2mP8S p {
  color: #767676;
  text-align: left;
}
.cid-ux8nF2mP8S .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8nF2mP8S .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8nF2mP8S .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8nF2mP8S .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8nF2mP8S .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8nF2mP8S .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8nF2mP8S .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux8nF2mP8S .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux8nF2mP8S .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux8nF2mP8S .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux8nF2mP8S .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8nF2OHMm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8nF2OHMm H1 {
  color: #000000;
}
.cid-ux8nF3hpw9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux8nF3hpw9 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8nF3hpw9 .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8nF3hpw9 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8nF3hpw9 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux8nF3hpw9 .box {
  right: 20%;
}
.cid-ux8nF3hpw9 .text-box {
  right: 0;
}
.cid-ux8nF3hpw9 .mbr-section-title,
.cid-ux8nF3hpw9 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux8nF3hpw9 .text-box {
    display: none;
  }
  .cid-ux8nF3hpw9 .mbr-section-title,
  .cid-ux8nF3hpw9 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8nF3hpw9 .box {
    display: none;
  }
  .cid-ux8nF3hpw9 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8nF3hpw9 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8nF3hpw9 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8nF3hpw9 .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8nF3hpw9 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8nF3hpw9 .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8nF3K9Kp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8nF4ibvp {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux8nF4ibvp h2 {
  text-align: left;
}
.cid-ux8nF4ibvp h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8nF4ibvp p {
  color: #767676;
  text-align: left;
}
.cid-ux8nF4ibvp .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8nF4ibvp .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8nF4ibvp .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8nF4ibvp .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8nF4ibvp .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8nF4ibvp .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8nF4ibvp .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8nF4ibvp .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8nF4ibvp .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8nF4ibvp .mbr-text {
  color: #232323;
}
.cid-ux8nF4R3ND {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8nF4R3ND H1 {
  color: #000000;
}
.cid-ux8nF5nRdP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux8nF5nRdP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8nF5nRdP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux8nF5nRdP .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux8nF5nRdP .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux8nF5nRdP .container {
    padding: 0 26px;
  }
}
.cid-ux8nF5nRdP .row {
  justify-content: center;
}
.cid-ux8nF5nRdP .item {
  margin-bottom: 32px;
}
.cid-ux8nF5nRdP .item a {
  display: block;
}
.cid-ux8nF5nRdP .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux8nF5nRdP .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux8nF5nRdP .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux8nF5nRdP .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-ux8nF5nRdP .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux8nF5nRdP .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux8nF5nRdP .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-ux8nF5nRdP .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux8nF5nRdP .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux8nF5nRdP .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux8nF5nRdP .item-title {
  color: #ffffff;
}
.cid-ux8nF5nRdP .mbr-date {
  color: #cacaca;
}
.cid-ux8nF5nRdP .mbr-desc {
  color: #cacaca;
}
.cid-ux8nF5QD22 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux8nF5QD22 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8nF5QD22 .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-ux8nF5QD22 .container {
    padding: 0 16px;
  }
}
.cid-ux8nF5QD22 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux8nF5QD22 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8nF5QD22 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux8nF5QD22 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8nF5QD22 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux8nF5QD22 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux8nF5QD22 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux8nF5QD22 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux8nF5QD22 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux8nF5QD22 .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-ux8nF5QD22 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux8nF5QD22 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux8nF5QD22 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux8nF5QD22 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux8nF5QD22 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux8nF5QD22 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux8nF5QD22 .dragArea.row .form-group .form-control:hover,
.cid-ux8nF5QD22 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux8nF5QD22 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux8nF5QD22 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux8nF5QD22 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux8nF5QD22 .mbr-title {
  color: #ffffff;
}
.cid-ux8nF5QD22 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux8nF5QD22 .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux8nF5QD22 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux8nF5QD22 .list {
  color: #08323C;
}
.cid-ux8nF5QD22 label {
  color: #08323C;
}
.cid-ux8nF5QD22 H3 {
  color: #000000;
}
.cid-ux8nF5QD22 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux8obfqnhZ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8obfqnhZ H1 {
  text-align: center;
}
.cid-uDmMApmtGj {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmMApmtGj .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmMApmtGj .video-block {
    width: 100% !important;
  }
}
.cid-ux8obfOyV6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8obg5VFG {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-ux8obg5VFG .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8obg5VFG .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8obg5VFG .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8obg5VFG .box {
  left: 20%;
}
.cid-ux8obg5VFG .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux8obg5VFG .mbr-section-text,
.cid-ux8obg5VFG .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux8obg5VFG .text-box {
    display: none;
  }
  .cid-ux8obg5VFG .mbr-section-title,
  .cid-ux8obg5VFG .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8obg5VFG .box {
    display: none;
  }
  .cid-ux8obg5VFG .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8obg5VFG .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8obg5VFG .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8obg5VFG .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8obg5VFG .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8obg5VFG .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8obghhjj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8obghhjj H1 {
  text-align: center;
}
.cid-ux8obgse5M {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8obgCMJ2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8obgCMJ2 h2 {
  text-align: left;
}
.cid-ux8obgCMJ2 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8obgCMJ2 p {
  color: #767676;
  text-align: left;
}
.cid-ux8obgCMJ2 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8obgCMJ2 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8obgCMJ2 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8obgCMJ2 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8obgCMJ2 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8obgCMJ2 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8obgCMJ2 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8obgCMJ2 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8obgCMJ2 .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8obgCMJ2 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux8obgCMJ2 P {
  color: #ffffff;
  text-align: left;
}
.cid-ux8obgCMJ2 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkLAFGq18 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkLAFGq18 H1 {
  color: #000000;
}
.cid-uxkLBBU4c3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkLBBU4c3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkLBBU4c3 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkLBBU4c3 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkLBBU4c3 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkLBBU4c3 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkLBBU4c3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkLBBU4c3 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkLBBU4c3 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkLBBU4c3 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkLBBU4c3 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkLBBU4c3 .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-uxkLBBU4c3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkLBBU4c3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkLBBU4c3 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkLBBU4c3 .mbr-text,
.cid-uxkLBBU4c3 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8obhpyFp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8obhBls3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux8obhBls3 H1 {
  color: #000000;
}
.cid-uxkLCUvq4E {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkLCUvq4E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkLCUvq4E .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkLCUvq4E .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkLCUvq4E .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkLCUvq4E .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkLCUvq4E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkLCUvq4E .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkLCUvq4E .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkLCUvq4E .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkLCUvq4E .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkLCUvq4E .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-uxkLCUvq4E .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkLCUvq4E .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkLCUvq4E .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkLCUvq4E .mbr-text,
.cid-uxkLCUvq4E .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkLDCUl56 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkLDCUl56 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkLDCUl56 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkLDCUl56 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkLDCUl56 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkLDCUl56 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkLDCUl56 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkLDCUl56 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkLDCUl56 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkLDCUl56 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkLDCUl56 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkLDCUl56 .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-uxkLDCUl56 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkLDCUl56 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkLDCUl56 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkLDCUl56 .mbr-text,
.cid-uxkLDCUl56 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8obiy5oC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8obiy5oC H1 {
  color: #000000;
}
.cid-ux8obiN7XA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux8obiN7XA h2 {
  text-align: left;
}
.cid-ux8obiN7XA h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8obiN7XA p {
  color: #767676;
  text-align: left;
}
.cid-ux8obiN7XA .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8obiN7XA .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8obiN7XA .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8obiN7XA .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8obiN7XA .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8obiN7XA .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8obiN7XA .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux8obiN7XA .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux8obiN7XA .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux8obiN7XA .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux8obiN7XA .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8obj6oke {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8obj6oke H1 {
  color: #000000;
}
.cid-ux8objifvR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux8objifvR .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8objifvR .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8objifvR .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8objifvR .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux8objifvR .box {
  right: 20%;
}
.cid-ux8objifvR .text-box {
  right: 0;
}
.cid-ux8objifvR .mbr-section-title,
.cid-ux8objifvR .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux8objifvR .text-box {
    display: none;
  }
  .cid-ux8objifvR .mbr-section-title,
  .cid-ux8objifvR .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8objifvR .box {
    display: none;
  }
  .cid-ux8objifvR .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8objifvR .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8objifvR .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8objifvR .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8objifvR .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8objifvR .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8objvNtM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8objGpxU {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux8objGpxU h2 {
  text-align: left;
}
.cid-ux8objGpxU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8objGpxU p {
  color: #767676;
  text-align: left;
}
.cid-ux8objGpxU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8objGpxU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8objGpxU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8objGpxU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8objGpxU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8objGpxU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8objGpxU .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8objGpxU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8objGpxU .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8objGpxU .mbr-text {
  color: #232323;
}
.cid-ux8objVvAb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8objVvAb H1 {
  color: #000000;
}
.cid-ux8obkcV9F {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux8obkcV9F .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8obkcV9F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux8obkcV9F .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux8obkcV9F .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux8obkcV9F .container {
    padding: 0 26px;
  }
}
.cid-ux8obkcV9F .row {
  justify-content: center;
}
.cid-ux8obkcV9F .item {
  margin-bottom: 32px;
}
.cid-ux8obkcV9F .item a {
  display: block;
}
.cid-ux8obkcV9F .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux8obkcV9F .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux8obkcV9F .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux8obkcV9F .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-ux8obkcV9F .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux8obkcV9F .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux8obkcV9F .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-ux8obkcV9F .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux8obkcV9F .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux8obkcV9F .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux8obkcV9F .item-title {
  color: #ffffff;
}
.cid-ux8obkcV9F .mbr-date {
  color: #cacaca;
}
.cid-ux8obkcV9F .mbr-desc {
  color: #cacaca;
}
.cid-ux8obkqSCq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux8obkqSCq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8obkqSCq .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-ux8obkqSCq .container {
    padding: 0 16px;
  }
}
.cid-ux8obkqSCq .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux8obkqSCq .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8obkqSCq .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux8obkqSCq .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8obkqSCq .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux8obkqSCq .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux8obkqSCq .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux8obkqSCq .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux8obkqSCq .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux8obkqSCq .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-ux8obkqSCq .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux8obkqSCq .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux8obkqSCq .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux8obkqSCq .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux8obkqSCq .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux8obkqSCq .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux8obkqSCq .dragArea.row .form-group .form-control:hover,
.cid-ux8obkqSCq .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux8obkqSCq .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux8obkqSCq .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux8obkqSCq .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux8obkqSCq .mbr-title {
  color: #ffffff;
}
.cid-ux8obkqSCq .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux8obkqSCq .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux8obkqSCq .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux8obkqSCq .list {
  color: #08323C;
}
.cid-ux8obkqSCq label {
  color: #08323C;
}
.cid-ux8obkqSCq H3 {
  color: #000000;
}
.cid-ux8obkqSCq P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux8oxj4veH {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8oxj4veH H1 {
  text-align: center;
}
.cid-uDmMCOkqaq {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmMCOkqaq .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmMCOkqaq .video-block {
    width: 100% !important;
  }
}
.cid-ux8oxjidYc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8oxjrH31 {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-ux8oxjrH31 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8oxjrH31 .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8oxjrH31 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8oxjrH31 .box {
  left: 20%;
}
.cid-ux8oxjrH31 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux8oxjrH31 .mbr-section-text,
.cid-ux8oxjrH31 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux8oxjrH31 .text-box {
    display: none;
  }
  .cid-ux8oxjrH31 .mbr-section-title,
  .cid-ux8oxjrH31 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8oxjrH31 .box {
    display: none;
  }
  .cid-ux8oxjrH31 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8oxjrH31 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8oxjrH31 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8oxjrH31 .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8oxjrH31 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8oxjrH31 .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8oxjBCl0 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8oxjBCl0 H1 {
  text-align: center;
}
.cid-ux8oxjL1fk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8oxjU9Xq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8oxjU9Xq h2 {
  text-align: left;
}
.cid-ux8oxjU9Xq h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8oxjU9Xq p {
  color: #767676;
  text-align: left;
}
.cid-ux8oxjU9Xq .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8oxjU9Xq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8oxjU9Xq .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8oxjU9Xq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8oxjU9Xq .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8oxjU9Xq .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8oxjU9Xq .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8oxjU9Xq .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8oxjU9Xq .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8oxjU9Xq H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux8oxjU9Xq P {
  color: #ffffff;
  text-align: left;
}
.cid-ux8oxjU9Xq H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkLJCesKM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkLJCesKM H1 {
  color: #000000;
}
.cid-uxkLKVMIqt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkLKVMIqt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkLKVMIqt .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkLKVMIqt .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkLKVMIqt .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkLKVMIqt .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkLKVMIqt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkLKVMIqt .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkLKVMIqt .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkLKVMIqt .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkLKVMIqt .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkLKVMIqt .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-uxkLKVMIqt .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkLKVMIqt .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkLKVMIqt .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkLKVMIqt .mbr-text,
.cid-uxkLKVMIqt .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8oxkH748 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8oxkT8Ju {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux8oxkT8Ju H1 {
  color: #000000;
}
.cid-uxkLRwSdFD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkLRwSdFD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkLRwSdFD .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkLRwSdFD .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkLRwSdFD .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkLRwSdFD .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkLRwSdFD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkLRwSdFD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkLRwSdFD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkLRwSdFD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkLRwSdFD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkLRwSdFD .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-uxkLRwSdFD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkLRwSdFD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkLRwSdFD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkLRwSdFD .mbr-text,
.cid-uxkLRwSdFD .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkLSmBWfb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkLSmBWfb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkLSmBWfb .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkLSmBWfb .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkLSmBWfb .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkLSmBWfb .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkLSmBWfb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkLSmBWfb .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkLSmBWfb .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkLSmBWfb .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkLSmBWfb .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkLSmBWfb .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-uxkLSmBWfb .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkLSmBWfb .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkLSmBWfb .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkLSmBWfb .mbr-text,
.cid-uxkLSmBWfb .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8oxlOYMj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8oxlOYMj H1 {
  color: #000000;
}
.cid-ux8oxlZPHK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux8oxlZPHK h2 {
  text-align: left;
}
.cid-ux8oxlZPHK h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8oxlZPHK p {
  color: #767676;
  text-align: left;
}
.cid-ux8oxlZPHK .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8oxlZPHK .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8oxlZPHK .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8oxlZPHK .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8oxlZPHK .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8oxlZPHK .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8oxlZPHK .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux8oxlZPHK .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux8oxlZPHK .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux8oxlZPHK .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux8oxlZPHK .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8oxmdxec {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8oxmdxec H1 {
  color: #000000;
}
.cid-ux8oxmoGdR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux8oxmoGdR .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8oxmoGdR .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8oxmoGdR .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8oxmoGdR .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux8oxmoGdR .box {
  right: 20%;
}
.cid-ux8oxmoGdR .text-box {
  right: 0;
}
.cid-ux8oxmoGdR .mbr-section-title,
.cid-ux8oxmoGdR .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux8oxmoGdR .text-box {
    display: none;
  }
  .cid-ux8oxmoGdR .mbr-section-title,
  .cid-ux8oxmoGdR .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8oxmoGdR .box {
    display: none;
  }
  .cid-ux8oxmoGdR .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8oxmoGdR .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8oxmoGdR .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8oxmoGdR .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8oxmoGdR .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8oxmoGdR .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8oxmDlkE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8oxmPTTY {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux8oxmPTTY h2 {
  text-align: left;
}
.cid-ux8oxmPTTY h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8oxmPTTY p {
  color: #767676;
  text-align: left;
}
.cid-ux8oxmPTTY .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8oxmPTTY .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8oxmPTTY .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8oxmPTTY .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8oxmPTTY .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8oxmPTTY .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8oxmPTTY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8oxmPTTY .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8oxmPTTY .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8oxmPTTY .mbr-text {
  color: #232323;
}
.cid-ux8oxn5U1s {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8oxn5U1s H1 {
  color: #000000;
}
.cid-ux8oxnjtik {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux8oxnjtik .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8oxnjtik .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux8oxnjtik .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux8oxnjtik .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux8oxnjtik .container {
    padding: 0 26px;
  }
}
.cid-ux8oxnjtik .row {
  justify-content: center;
}
.cid-ux8oxnjtik .item {
  margin-bottom: 32px;
}
.cid-ux8oxnjtik .item a {
  display: block;
}
.cid-ux8oxnjtik .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux8oxnjtik .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux8oxnjtik .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux8oxnjtik .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-ux8oxnjtik .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux8oxnjtik .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux8oxnjtik .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-ux8oxnjtik .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux8oxnjtik .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux8oxnjtik .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux8oxnjtik .item-title {
  color: #ffffff;
}
.cid-ux8oxnjtik .mbr-date {
  color: #cacaca;
}
.cid-ux8oxnjtik .mbr-desc {
  color: #cacaca;
}
.cid-ux8oxnzeQl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux8oxnzeQl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8oxnzeQl .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-ux8oxnzeQl .container {
    padding: 0 16px;
  }
}
.cid-ux8oxnzeQl .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux8oxnzeQl .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8oxnzeQl .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux8oxnzeQl .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8oxnzeQl .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux8oxnzeQl .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux8oxnzeQl .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux8oxnzeQl .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux8oxnzeQl .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux8oxnzeQl .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-ux8oxnzeQl .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux8oxnzeQl .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux8oxnzeQl .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux8oxnzeQl .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux8oxnzeQl .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux8oxnzeQl .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux8oxnzeQl .dragArea.row .form-group .form-control:hover,
.cid-ux8oxnzeQl .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux8oxnzeQl .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux8oxnzeQl .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux8oxnzeQl .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux8oxnzeQl .mbr-title {
  color: #ffffff;
}
.cid-ux8oxnzeQl .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux8oxnzeQl .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux8oxnzeQl .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux8oxnzeQl .list {
  color: #08323C;
}
.cid-ux8oxnzeQl label {
  color: #08323C;
}
.cid-ux8oxnzeQl H3 {
  color: #000000;
}
.cid-ux8oxnzeQl P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux8p0rCFHX {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8p0rCFHX H1 {
  text-align: center;
}
.cid-uDmMFCsVi6 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmMFCsVi6 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmMFCsVi6 .video-block {
    width: 100% !important;
  }
}
.cid-ux8p0rR7Rb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8p0s2vrC {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-ux8p0s2vrC .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8p0s2vrC .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8p0s2vrC .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8p0s2vrC .box {
  left: 20%;
}
.cid-ux8p0s2vrC .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux8p0s2vrC .mbr-section-text,
.cid-ux8p0s2vrC .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux8p0s2vrC .text-box {
    display: none;
  }
  .cid-ux8p0s2vrC .mbr-section-title,
  .cid-ux8p0s2vrC .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8p0s2vrC .box {
    display: none;
  }
  .cid-ux8p0s2vrC .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8p0s2vrC .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8p0s2vrC .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8p0s2vrC .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8p0s2vrC .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8p0s2vrC .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8p0sf64F {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8p0sf64F H1 {
  text-align: center;
}
.cid-ux8p0sphPk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8p0syIbA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8p0syIbA h2 {
  text-align: left;
}
.cid-ux8p0syIbA h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8p0syIbA p {
  color: #767676;
  text-align: left;
}
.cid-ux8p0syIbA .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8p0syIbA .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8p0syIbA .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8p0syIbA .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8p0syIbA .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8p0syIbA .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8p0syIbA .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8p0syIbA .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8p0syIbA .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8p0syIbA H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux8p0syIbA P {
  color: #ffffff;
  text-align: left;
}
.cid-ux8p0syIbA H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkM8iLLFy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkM8iLLFy H1 {
  color: #000000;
}
.cid-uxkM9v8a2O {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkM9v8a2O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkM9v8a2O .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkM9v8a2O .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkM9v8a2O .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkM9v8a2O .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkM9v8a2O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkM9v8a2O .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkM9v8a2O .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkM9v8a2O .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkM9v8a2O .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkM9v8a2O .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-uxkM9v8a2O .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkM9v8a2O .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkM9v8a2O .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkM9v8a2O .mbr-text,
.cid-uxkM9v8a2O .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8p0tjgqD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8p0twQPz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux8p0twQPz H1 {
  color: #000000;
}
.cid-uxkMagLPMQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkMagLPMQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkMagLPMQ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkMagLPMQ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkMagLPMQ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkMagLPMQ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkMagLPMQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkMagLPMQ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkMagLPMQ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkMagLPMQ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkMagLPMQ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkMagLPMQ .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-uxkMagLPMQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkMagLPMQ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkMagLPMQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkMagLPMQ .mbr-text,
.cid-uxkMagLPMQ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkMb1iMmk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkMb1iMmk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkMb1iMmk .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkMb1iMmk .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkMb1iMmk .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkMb1iMmk .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkMb1iMmk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkMb1iMmk .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkMb1iMmk .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkMb1iMmk .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkMb1iMmk .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkMb1iMmk .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-uxkMb1iMmk .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkMb1iMmk .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkMb1iMmk .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkMb1iMmk .mbr-text,
.cid-uxkMb1iMmk .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8p0use8h {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8p0use8h H1 {
  color: #000000;
}
.cid-ux8p0uKHeo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux8p0uKHeo h2 {
  text-align: left;
}
.cid-ux8p0uKHeo h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8p0uKHeo p {
  color: #767676;
  text-align: left;
}
.cid-ux8p0uKHeo .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8p0uKHeo .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8p0uKHeo .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8p0uKHeo .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8p0uKHeo .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8p0uKHeo .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8p0uKHeo .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux8p0uKHeo .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux8p0uKHeo .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux8p0uKHeo .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux8p0uKHeo .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8p0v0VU9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8p0v0VU9 H1 {
  color: #000000;
}
.cid-ux8p0vdqKL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux8p0vdqKL .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8p0vdqKL .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8p0vdqKL .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8p0vdqKL .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux8p0vdqKL .box {
  right: 20%;
}
.cid-ux8p0vdqKL .text-box {
  right: 0;
}
.cid-ux8p0vdqKL .mbr-section-title,
.cid-ux8p0vdqKL .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux8p0vdqKL .text-box {
    display: none;
  }
  .cid-ux8p0vdqKL .mbr-section-title,
  .cid-ux8p0vdqKL .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8p0vdqKL .box {
    display: none;
  }
  .cid-ux8p0vdqKL .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8p0vdqKL .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8p0vdqKL .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8p0vdqKL .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8p0vdqKL .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8p0vdqKL .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8p0vqH2D {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8p0vETgr {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux8p0vETgr h2 {
  text-align: left;
}
.cid-ux8p0vETgr h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8p0vETgr p {
  color: #767676;
  text-align: left;
}
.cid-ux8p0vETgr .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8p0vETgr .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8p0vETgr .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8p0vETgr .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8p0vETgr .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8p0vETgr .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8p0vETgr .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8p0vETgr .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8p0vETgr .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8p0vETgr .mbr-text {
  color: #232323;
}
.cid-ux8p0vTHZl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8p0vTHZl H1 {
  color: #000000;
}
.cid-ux8p0w5qmR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux8p0w5qmR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8p0w5qmR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux8p0w5qmR .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux8p0w5qmR .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux8p0w5qmR .container {
    padding: 0 26px;
  }
}
.cid-ux8p0w5qmR .row {
  justify-content: center;
}
.cid-ux8p0w5qmR .item {
  margin-bottom: 32px;
}
.cid-ux8p0w5qmR .item a {
  display: block;
}
.cid-ux8p0w5qmR .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux8p0w5qmR .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux8p0w5qmR .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux8p0w5qmR .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-ux8p0w5qmR .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux8p0w5qmR .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux8p0w5qmR .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-ux8p0w5qmR .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux8p0w5qmR .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux8p0w5qmR .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux8p0w5qmR .item-title {
  color: #ffffff;
}
.cid-ux8p0w5qmR .mbr-date {
  color: #cacaca;
}
.cid-ux8p0w5qmR .mbr-desc {
  color: #cacaca;
}
.cid-ux8p0wmJ4x {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux8p0wmJ4x .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8p0wmJ4x .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-ux8p0wmJ4x .container {
    padding: 0 16px;
  }
}
.cid-ux8p0wmJ4x .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux8p0wmJ4x .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8p0wmJ4x .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux8p0wmJ4x .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8p0wmJ4x .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux8p0wmJ4x .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux8p0wmJ4x .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux8p0wmJ4x .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux8p0wmJ4x .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux8p0wmJ4x .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-ux8p0wmJ4x .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux8p0wmJ4x .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux8p0wmJ4x .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux8p0wmJ4x .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux8p0wmJ4x .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux8p0wmJ4x .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux8p0wmJ4x .dragArea.row .form-group .form-control:hover,
.cid-ux8p0wmJ4x .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux8p0wmJ4x .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux8p0wmJ4x .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux8p0wmJ4x .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux8p0wmJ4x .mbr-title {
  color: #ffffff;
}
.cid-ux8p0wmJ4x .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux8p0wmJ4x .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux8p0wmJ4x .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux8p0wmJ4x .list {
  color: #08323C;
}
.cid-ux8p0wmJ4x label {
  color: #08323C;
}
.cid-ux8p0wmJ4x H3 {
  color: #000000;
}
.cid-ux8p0wmJ4x P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux8pnayQAY {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8pnayQAY H1 {
  text-align: center;
}
.cid-uDmMIwTNG3 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmMIwTNG3 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmMIwTNG3 .video-block {
    width: 100% !important;
  }
}
.cid-ux8pnaWziJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8pnbaOuk {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-ux8pnbaOuk .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8pnbaOuk .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8pnbaOuk .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8pnbaOuk .box {
  left: 20%;
}
.cid-ux8pnbaOuk .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux8pnbaOuk .mbr-section-text,
.cid-ux8pnbaOuk .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux8pnbaOuk .text-box {
    display: none;
  }
  .cid-ux8pnbaOuk .mbr-section-title,
  .cid-ux8pnbaOuk .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8pnbaOuk .box {
    display: none;
  }
  .cid-ux8pnbaOuk .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8pnbaOuk .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8pnbaOuk .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8pnbaOuk .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8pnbaOuk .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8pnbaOuk .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8pnbkvEu {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8pnbkvEu H1 {
  text-align: center;
}
.cid-ux8pnbv3pu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8pnbFX4b {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8pnbFX4b h2 {
  text-align: left;
}
.cid-ux8pnbFX4b h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8pnbFX4b p {
  color: #767676;
  text-align: left;
}
.cid-ux8pnbFX4b .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8pnbFX4b .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8pnbFX4b .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8pnbFX4b .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8pnbFX4b .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8pnbFX4b .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8pnbFX4b .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8pnbFX4b .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8pnbFX4b .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8pnbFX4b H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux8pnbFX4b P {
  color: #ffffff;
  text-align: left;
}
.cid-ux8pnbFX4b H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkMizzTnj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkMizzTnj H1 {
  color: #000000;
}
.cid-uxkMjFmFco {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkMjFmFco .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkMjFmFco .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkMjFmFco .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkMjFmFco .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkMjFmFco .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkMjFmFco .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkMjFmFco .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkMjFmFco .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkMjFmFco .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkMjFmFco .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkMjFmFco .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-uxkMjFmFco .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkMjFmFco .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkMjFmFco .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkMjFmFco .mbr-text,
.cid-uxkMjFmFco .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8pncmoco {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8pncAO0t {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux8pncAO0t H1 {
  color: #000000;
}
.cid-uxkMkuKQ9F {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkMkuKQ9F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkMkuKQ9F .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkMkuKQ9F .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkMkuKQ9F .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkMkuKQ9F .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkMkuKQ9F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkMkuKQ9F .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkMkuKQ9F .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkMkuKQ9F .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkMkuKQ9F .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkMkuKQ9F .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-uxkMkuKQ9F .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkMkuKQ9F .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkMkuKQ9F .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkMkuKQ9F .mbr-text,
.cid-uxkMkuKQ9F .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkMlcQjJ5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkMlcQjJ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkMlcQjJ5 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkMlcQjJ5 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkMlcQjJ5 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkMlcQjJ5 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkMlcQjJ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkMlcQjJ5 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkMlcQjJ5 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkMlcQjJ5 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkMlcQjJ5 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkMlcQjJ5 .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-uxkMlcQjJ5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkMlcQjJ5 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkMlcQjJ5 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkMlcQjJ5 .mbr-text,
.cid-uxkMlcQjJ5 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8pndthXf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8pndthXf H1 {
  color: #000000;
}
.cid-ux8pndGToE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux8pndGToE h2 {
  text-align: left;
}
.cid-ux8pndGToE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8pndGToE p {
  color: #767676;
  text-align: left;
}
.cid-ux8pndGToE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8pndGToE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8pndGToE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8pndGToE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8pndGToE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8pndGToE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8pndGToE .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux8pndGToE .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux8pndGToE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux8pndGToE .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux8pndGToE .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8pndV9eN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8pndV9eN H1 {
  color: #000000;
}
.cid-ux8pne8T60 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux8pne8T60 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8pne8T60 .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8pne8T60 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8pne8T60 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux8pne8T60 .box {
  right: 20%;
}
.cid-ux8pne8T60 .text-box {
  right: 0;
}
.cid-ux8pne8T60 .mbr-section-title,
.cid-ux8pne8T60 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux8pne8T60 .text-box {
    display: none;
  }
  .cid-ux8pne8T60 .mbr-section-title,
  .cid-ux8pne8T60 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8pne8T60 .box {
    display: none;
  }
  .cid-ux8pne8T60 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8pne8T60 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8pne8T60 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8pne8T60 .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8pne8T60 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8pne8T60 .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8pnemjKC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8pneAn8D {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux8pneAn8D h2 {
  text-align: left;
}
.cid-ux8pneAn8D h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8pneAn8D p {
  color: #767676;
  text-align: left;
}
.cid-ux8pneAn8D .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8pneAn8D .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8pneAn8D .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8pneAn8D .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8pneAn8D .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8pneAn8D .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8pneAn8D .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8pneAn8D .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8pneAn8D .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8pneAn8D .mbr-text {
  color: #232323;
}
.cid-ux8pnePgtf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8pnePgtf H1 {
  color: #000000;
}
.cid-ux8pnf3HAi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux8pnf3HAi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8pnf3HAi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux8pnf3HAi .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux8pnf3HAi .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux8pnf3HAi .container {
    padding: 0 26px;
  }
}
.cid-ux8pnf3HAi .row {
  justify-content: center;
}
.cid-ux8pnf3HAi .item {
  margin-bottom: 32px;
}
.cid-ux8pnf3HAi .item a {
  display: block;
}
.cid-ux8pnf3HAi .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux8pnf3HAi .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux8pnf3HAi .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux8pnf3HAi .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-ux8pnf3HAi .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux8pnf3HAi .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux8pnf3HAi .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-ux8pnf3HAi .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux8pnf3HAi .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux8pnf3HAi .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux8pnf3HAi .item-title {
  color: #ffffff;
}
.cid-ux8pnf3HAi .mbr-date {
  color: #cacaca;
}
.cid-ux8pnf3HAi .mbr-desc {
  color: #cacaca;
}
.cid-ux8pnfkGcY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux8pnfkGcY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8pnfkGcY .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-ux8pnfkGcY .container {
    padding: 0 16px;
  }
}
.cid-ux8pnfkGcY .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux8pnfkGcY .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8pnfkGcY .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux8pnfkGcY .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8pnfkGcY .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux8pnfkGcY .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux8pnfkGcY .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux8pnfkGcY .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux8pnfkGcY .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux8pnfkGcY .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-ux8pnfkGcY .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux8pnfkGcY .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux8pnfkGcY .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux8pnfkGcY .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux8pnfkGcY .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux8pnfkGcY .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux8pnfkGcY .dragArea.row .form-group .form-control:hover,
.cid-ux8pnfkGcY .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux8pnfkGcY .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux8pnfkGcY .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux8pnfkGcY .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux8pnfkGcY .mbr-title {
  color: #ffffff;
}
.cid-ux8pnfkGcY .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux8pnfkGcY .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux8pnfkGcY .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux8pnfkGcY .list {
  color: #08323C;
}
.cid-ux8pnfkGcY label {
  color: #08323C;
}
.cid-ux8pnfkGcY H3 {
  color: #000000;
}
.cid-ux8pnfkGcY P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux8EuiaH1V {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8EuiaH1V H1 {
  text-align: center;
}
.cid-uDmwPIKYxk {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmwPIKYxk .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmwPIKYxk .video-block {
    width: 100% !important;
  }
}
.cid-ux8Euiwnkv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8EuiKznb {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ux8EuiKznb .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8EuiKznb .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8EuiKznb .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8EuiKznb .box {
  left: 20%;
}
.cid-ux8EuiKznb .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux8EuiKznb .mbr-section-text,
.cid-ux8EuiKznb .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux8EuiKznb .text-box {
    display: none;
  }
  .cid-ux8EuiKznb .mbr-section-title,
  .cid-ux8EuiKznb .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8EuiKznb .box {
    display: none;
  }
  .cid-ux8EuiKznb .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8EuiKznb .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8EuiKznb .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8EuiKznb .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8EuiKznb .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8EuiKznb .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8Euj1VJC {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8Euj1VJC H1 {
  text-align: center;
}
.cid-ux8EujfrnM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8EujsB9M {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8EujsB9M h2 {
  text-align: left;
}
.cid-ux8EujsB9M h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8EujsB9M p {
  color: #767676;
  text-align: left;
}
.cid-ux8EujsB9M .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8EujsB9M .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8EujsB9M .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8EujsB9M .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8EujsB9M .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8EujsB9M .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8EujsB9M .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8EujsB9M .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8EujsB9M .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8EujsB9M H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux8EujsB9M P {
  color: #ffffff;
  text-align: left;
}
.cid-ux8EujsB9M H2 {
  color: #ffffff;
  text-align: center;
}
.cid-ux8H88uC08 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux8H88uC08 H1 {
  color: #000000;
}
.cid-uxf3WcMgTM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxf3WcMgTM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxf3WcMgTM .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxf3WcMgTM .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxf3WcMgTM .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxf3WcMgTM .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxf3WcMgTM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxf3WcMgTM .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxf3WcMgTM .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxf3WcMgTM .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxf3WcMgTM .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxf3WcMgTM .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-uxf3WcMgTM .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxf3WcMgTM .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxf3WcMgTM .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxf3WcMgTM .mbr-text,
.cid-uxf3WcMgTM .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8EukoRu4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux8EukoRu4 H1 {
  color: #000000;
}
.cid-uxf3ZDYeJS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxf3ZDYeJS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxf3ZDYeJS .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxf3ZDYeJS .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxf3ZDYeJS .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxf3ZDYeJS .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxf3ZDYeJS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxf3ZDYeJS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxf3ZDYeJS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxf3ZDYeJS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxf3ZDYeJS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxf3ZDYeJS .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-uxf3ZDYeJS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxf3ZDYeJS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxf3ZDYeJS .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxf3ZDYeJS .mbr-text,
.cid-uxf3ZDYeJS .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxf40jjfhd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxf40jjfhd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxf40jjfhd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxf40jjfhd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxf40jjfhd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxf40jjfhd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxf40jjfhd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxf40jjfhd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxf40jjfhd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxf40jjfhd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxf40jjfhd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxf40jjfhd .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-uxf40jjfhd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxf40jjfhd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxf40jjfhd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxf40jjfhd .mbr-text,
.cid-uxf40jjfhd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8Eulm21D {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8Eulm21D H1 {
  color: #000000;
}
.cid-ux8EulB50C {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux8EulB50C h2 {
  text-align: left;
}
.cid-ux8EulB50C h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8EulB50C p {
  color: #767676;
  text-align: left;
}
.cid-ux8EulB50C .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8EulB50C .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8EulB50C .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8EulB50C .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8EulB50C .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8EulB50C .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8EulB50C .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux8EulB50C .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux8EulB50C .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux8EulB50C .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux8EulB50C .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8EulXWEd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8EulXWEd H1 {
  color: #000000;
}
.cid-ux8EumdTwl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux8EumdTwl .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8EumdTwl .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8EumdTwl .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8EumdTwl .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux8EumdTwl .box {
  right: 20%;
}
.cid-ux8EumdTwl .text-box {
  right: 0;
}
.cid-ux8EumdTwl .mbr-section-title,
.cid-ux8EumdTwl .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux8EumdTwl .text-box {
    display: none;
  }
  .cid-ux8EumdTwl .mbr-section-title,
  .cid-ux8EumdTwl .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8EumdTwl .box {
    display: none;
  }
  .cid-ux8EumdTwl .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8EumdTwl .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8EumdTwl .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8EumdTwl .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8EumdTwl .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8EumdTwl .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8EumtPzn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8EumMJsU {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux8EumMJsU h2 {
  text-align: left;
}
.cid-ux8EumMJsU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8EumMJsU p {
  color: #767676;
  text-align: left;
}
.cid-ux8EumMJsU .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8EumMJsU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8EumMJsU .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8EumMJsU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8EumMJsU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8EumMJsU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8EumMJsU .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8EumMJsU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8EumMJsU .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8EumMJsU .mbr-text {
  color: #232323;
}
.cid-ux8Eun31TC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8Eun31TC H1 {
  color: #000000;
}
.cid-ux8EunhGYh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux8EunhGYh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8EunhGYh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux8EunhGYh .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux8EunhGYh .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux8EunhGYh .container {
    padding: 0 26px;
  }
}
.cid-ux8EunhGYh .row {
  justify-content: center;
}
.cid-ux8EunhGYh .item {
  margin-bottom: 32px;
}
.cid-ux8EunhGYh .item a {
  display: block;
}
.cid-ux8EunhGYh .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux8EunhGYh .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux8EunhGYh .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux8EunhGYh .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-ux8EunhGYh .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux8EunhGYh .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux8EunhGYh .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-ux8EunhGYh .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux8EunhGYh .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux8EunhGYh .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux8EunhGYh .item-title {
  color: #ffffff;
}
.cid-ux8EunhGYh .mbr-date {
  color: #cacaca;
}
.cid-ux8EunhGYh .mbr-desc {
  color: #cacaca;
}
.cid-ux8EunAnSB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux8EunAnSB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8EunAnSB .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-ux8EunAnSB .container {
    padding: 0 16px;
  }
}
.cid-ux8EunAnSB .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux8EunAnSB .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8EunAnSB .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux8EunAnSB .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8EunAnSB .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux8EunAnSB .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux8EunAnSB .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux8EunAnSB .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux8EunAnSB .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux8EunAnSB .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-ux8EunAnSB .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux8EunAnSB .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux8EunAnSB .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux8EunAnSB .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux8EunAnSB .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux8EunAnSB .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux8EunAnSB .dragArea.row .form-group .form-control:hover,
.cid-ux8EunAnSB .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux8EunAnSB .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux8EunAnSB .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux8EunAnSB .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux8EunAnSB .mbr-title {
  color: #ffffff;
}
.cid-ux8EunAnSB .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux8EunAnSB .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux8EunAnSB .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux8EunAnSB .list {
  color: #08323C;
}
.cid-ux8EunAnSB label {
  color: #08323C;
}
.cid-ux8EunAnSB H3 {
  color: #000000;
}
.cid-ux8EunAnSB P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux8ERRgD8J {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8ERRgD8J H1 {
  text-align: center;
}
.cid-uDmwStKD4T {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmwStKD4T .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmwStKD4T .video-block {
    width: 100% !important;
  }
}
.cid-ux8ERRz21z {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8ERRMV8T {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ux8ERRMV8T .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8ERRMV8T .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8ERRMV8T .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8ERRMV8T .box {
  left: 20%;
}
.cid-ux8ERRMV8T .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux8ERRMV8T .mbr-section-text,
.cid-ux8ERRMV8T .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux8ERRMV8T .text-box {
    display: none;
  }
  .cid-ux8ERRMV8T .mbr-section-title,
  .cid-ux8ERRMV8T .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8ERRMV8T .box {
    display: none;
  }
  .cid-ux8ERRMV8T .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8ERRMV8T .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8ERRMV8T .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8ERRMV8T .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8ERRMV8T .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8ERRMV8T .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8ERS2k1G {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8ERS2k1G H1 {
  text-align: center;
}
.cid-ux8ERSeqIv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8ERSr0qq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8ERSr0qq h2 {
  text-align: left;
}
.cid-ux8ERSr0qq h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8ERSr0qq p {
  color: #767676;
  text-align: left;
}
.cid-ux8ERSr0qq .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8ERSr0qq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8ERSr0qq .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8ERSr0qq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8ERSr0qq .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8ERSr0qq .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8ERSr0qq .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8ERSr0qq .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8ERSr0qq .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8ERSr0qq H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux8ERSr0qq P {
  color: #ffffff;
  text-align: left;
}
.cid-ux8ERSr0qq H2 {
  color: #ffffff;
  text-align: center;
}
.cid-ux8H0FALOk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux8H0FALOk H1 {
  color: #000000;
}
.cid-uxfeINq1fB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfeINq1fB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfeINq1fB .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfeINq1fB .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfeINq1fB .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfeINq1fB .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfeINq1fB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfeINq1fB .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfeINq1fB .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfeINq1fB .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfeINq1fB .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfeINq1fB .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-uxfeINq1fB .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfeINq1fB .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfeINq1fB .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfeINq1fB .mbr-text,
.cid-uxfeINq1fB .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8ERTm6n3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux8ERTm6n3 H1 {
  color: #000000;
}
.cid-uxfeMwFU5z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfeMwFU5z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfeMwFU5z .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfeMwFU5z .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfeMwFU5z .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfeMwFU5z .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfeMwFU5z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfeMwFU5z .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfeMwFU5z .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfeMwFU5z .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfeMwFU5z .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfeMwFU5z .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-uxfeMwFU5z .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfeMwFU5z .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfeMwFU5z .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfeMwFU5z .mbr-text,
.cid-uxfeMwFU5z .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfeNbV2Pn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfeNbV2Pn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfeNbV2Pn .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfeNbV2Pn .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfeNbV2Pn .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfeNbV2Pn .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfeNbV2Pn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfeNbV2Pn .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfeNbV2Pn .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfeNbV2Pn .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfeNbV2Pn .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfeNbV2Pn .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-uxfeNbV2Pn .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfeNbV2Pn .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfeNbV2Pn .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfeNbV2Pn .mbr-text,
.cid-uxfeNbV2Pn .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8ERUrvNd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8ERUrvNd H1 {
  color: #000000;
}
.cid-ux8ERUPRev {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux8ERUPRev h2 {
  text-align: left;
}
.cid-ux8ERUPRev h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8ERUPRev p {
  color: #767676;
  text-align: left;
}
.cid-ux8ERUPRev .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8ERUPRev .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8ERUPRev .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8ERUPRev .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8ERUPRev .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8ERUPRev .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8ERUPRev .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux8ERUPRev .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux8ERUPRev .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux8ERUPRev .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux8ERUPRev .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8ERV6RZc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8ERV6RZc H1 {
  color: #000000;
}
.cid-ux8ERVkZRa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux8ERVkZRa .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8ERVkZRa .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8ERVkZRa .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8ERVkZRa .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux8ERVkZRa .box {
  right: 20%;
}
.cid-ux8ERVkZRa .text-box {
  right: 0;
}
.cid-ux8ERVkZRa .mbr-section-title,
.cid-ux8ERVkZRa .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux8ERVkZRa .text-box {
    display: none;
  }
  .cid-ux8ERVkZRa .mbr-section-title,
  .cid-ux8ERVkZRa .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8ERVkZRa .box {
    display: none;
  }
  .cid-ux8ERVkZRa .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8ERVkZRa .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8ERVkZRa .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8ERVkZRa .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8ERVkZRa .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8ERVkZRa .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8ERVDVY6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8ERVRjxq {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux8ERVRjxq h2 {
  text-align: left;
}
.cid-ux8ERVRjxq h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8ERVRjxq p {
  color: #767676;
  text-align: left;
}
.cid-ux8ERVRjxq .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8ERVRjxq .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8ERVRjxq .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8ERVRjxq .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8ERVRjxq .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8ERVRjxq .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8ERVRjxq .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8ERVRjxq .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8ERVRjxq .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8ERVRjxq .mbr-text {
  color: #232323;
}
.cid-ux8ERW94Qn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8ERW94Qn H1 {
  color: #000000;
}
.cid-ux8ERWoO3s {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux8ERWoO3s .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8ERWoO3s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux8ERWoO3s .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux8ERWoO3s .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux8ERWoO3s .container {
    padding: 0 26px;
  }
}
.cid-ux8ERWoO3s .row {
  justify-content: center;
}
.cid-ux8ERWoO3s .item {
  margin-bottom: 32px;
}
.cid-ux8ERWoO3s .item a {
  display: block;
}
.cid-ux8ERWoO3s .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux8ERWoO3s .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux8ERWoO3s .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux8ERWoO3s .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-ux8ERWoO3s .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux8ERWoO3s .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux8ERWoO3s .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-ux8ERWoO3s .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux8ERWoO3s .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux8ERWoO3s .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux8ERWoO3s .item-title {
  color: #ffffff;
}
.cid-ux8ERWoO3s .mbr-date {
  color: #cacaca;
}
.cid-ux8ERWoO3s .mbr-desc {
  color: #cacaca;
}
.cid-ux8ERWGZFL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux8ERWGZFL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8ERWGZFL .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-ux8ERWGZFL .container {
    padding: 0 16px;
  }
}
.cid-ux8ERWGZFL .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux8ERWGZFL .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8ERWGZFL .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux8ERWGZFL .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8ERWGZFL .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux8ERWGZFL .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux8ERWGZFL .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux8ERWGZFL .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux8ERWGZFL .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux8ERWGZFL .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-ux8ERWGZFL .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux8ERWGZFL .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux8ERWGZFL .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux8ERWGZFL .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux8ERWGZFL .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux8ERWGZFL .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux8ERWGZFL .dragArea.row .form-group .form-control:hover,
.cid-ux8ERWGZFL .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux8ERWGZFL .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux8ERWGZFL .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux8ERWGZFL .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux8ERWGZFL .mbr-title {
  color: #ffffff;
}
.cid-ux8ERWGZFL .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux8ERWGZFL .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux8ERWGZFL .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux8ERWGZFL .list {
  color: #08323C;
}
.cid-ux8ERWGZFL label {
  color: #08323C;
}
.cid-ux8ERWGZFL H3 {
  color: #000000;
}
.cid-ux8ERWGZFL P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux8Fg4Vru0 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8Fg4Vru0 H1 {
  text-align: center;
}
.cid-uDmwWr4ios {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmwWr4ios .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmwWr4ios .video-block {
    width: 100% !important;
  }
}
.cid-ux8Fg5fNCL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8Fg5uNea {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ux8Fg5uNea .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8Fg5uNea .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8Fg5uNea .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8Fg5uNea .box {
  left: 20%;
}
.cid-ux8Fg5uNea .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux8Fg5uNea .mbr-section-text,
.cid-ux8Fg5uNea .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux8Fg5uNea .text-box {
    display: none;
  }
  .cid-ux8Fg5uNea .mbr-section-title,
  .cid-ux8Fg5uNea .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8Fg5uNea .box {
    display: none;
  }
  .cid-ux8Fg5uNea .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8Fg5uNea .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8Fg5uNea .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8Fg5uNea .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8Fg5uNea .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8Fg5uNea .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8Fg5H3kG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8Fg5H3kG H1 {
  text-align: center;
}
.cid-ux8Fg5VLe5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8Fg6g5D4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8Fg6g5D4 h2 {
  text-align: left;
}
.cid-ux8Fg6g5D4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8Fg6g5D4 p {
  color: #767676;
  text-align: left;
}
.cid-ux8Fg6g5D4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8Fg6g5D4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8Fg6g5D4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8Fg6g5D4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8Fg6g5D4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8Fg6g5D4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8Fg6g5D4 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8Fg6g5D4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8Fg6g5D4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8Fg6g5D4 H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux8Fg6g5D4 P {
  color: #ffffff;
  text-align: left;
}
.cid-ux8Fg6g5D4 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-ux8Fg6DaZX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux8Fg6DaZX H1 {
  color: #000000;
}
.cid-uxfeXB50Vt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfeXB50Vt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfeXB50Vt .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfeXB50Vt .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfeXB50Vt .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfeXB50Vt .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfeXB50Vt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfeXB50Vt .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfeXB50Vt .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfeXB50Vt .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfeXB50Vt .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfeXB50Vt .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-uxfeXB50Vt .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfeXB50Vt .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfeXB50Vt .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfeXB50Vt .mbr-text,
.cid-uxfeXB50Vt .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8Fg7mVMs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux8Fg7mVMs H1 {
  color: #000000;
}
.cid-uxfeYlfjaW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfeYlfjaW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfeYlfjaW .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfeYlfjaW .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfeYlfjaW .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfeYlfjaW .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfeYlfjaW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfeYlfjaW .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfeYlfjaW .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfeYlfjaW .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfeYlfjaW .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfeYlfjaW .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-uxfeYlfjaW .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfeYlfjaW .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfeYlfjaW .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfeYlfjaW .mbr-text,
.cid-uxfeYlfjaW .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxfeYU3kZ5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxfeYU3kZ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxfeYU3kZ5 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxfeYU3kZ5 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxfeYU3kZ5 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxfeYU3kZ5 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxfeYU3kZ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxfeYU3kZ5 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxfeYU3kZ5 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxfeYU3kZ5 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxfeYU3kZ5 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxfeYU3kZ5 .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-uxfeYU3kZ5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxfeYU3kZ5 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxfeYU3kZ5 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxfeYU3kZ5 .mbr-text,
.cid-uxfeYU3kZ5 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8Fg8xS3j {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8Fg8xS3j H1 {
  color: #000000;
}
.cid-ux8Fg8Pdd5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux8Fg8Pdd5 h2 {
  text-align: left;
}
.cid-ux8Fg8Pdd5 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8Fg8Pdd5 p {
  color: #767676;
  text-align: left;
}
.cid-ux8Fg8Pdd5 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8Fg8Pdd5 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8Fg8Pdd5 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8Fg8Pdd5 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8Fg8Pdd5 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8Fg8Pdd5 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8Fg8Pdd5 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux8Fg8Pdd5 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux8Fg8Pdd5 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux8Fg8Pdd5 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux8Fg8Pdd5 .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8Fg9eDps {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8Fg9eDps H1 {
  color: #000000;
}
.cid-ux8Fg9z4N1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux8Fg9z4N1 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8Fg9z4N1 .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8Fg9z4N1 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8Fg9z4N1 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux8Fg9z4N1 .box {
  right: 20%;
}
.cid-ux8Fg9z4N1 .text-box {
  right: 0;
}
.cid-ux8Fg9z4N1 .mbr-section-title,
.cid-ux8Fg9z4N1 .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux8Fg9z4N1 .text-box {
    display: none;
  }
  .cid-ux8Fg9z4N1 .mbr-section-title,
  .cid-ux8Fg9z4N1 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8Fg9z4N1 .box {
    display: none;
  }
  .cid-ux8Fg9z4N1 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8Fg9z4N1 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8Fg9z4N1 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8Fg9z4N1 .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8Fg9z4N1 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8Fg9z4N1 .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8Fg9RZKV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8Fga77fw {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux8Fga77fw h2 {
  text-align: left;
}
.cid-ux8Fga77fw h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8Fga77fw p {
  color: #767676;
  text-align: left;
}
.cid-ux8Fga77fw .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8Fga77fw .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8Fga77fw .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8Fga77fw .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8Fga77fw .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8Fga77fw .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8Fga77fw .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8Fga77fw .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8Fga77fw .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8Fga77fw .mbr-text {
  color: #232323;
}
.cid-ux8FgapD51 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8FgapD51 H1 {
  color: #000000;
}
.cid-ux8FgaGqxj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux8FgaGqxj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8FgaGqxj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux8FgaGqxj .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux8FgaGqxj .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux8FgaGqxj .container {
    padding: 0 26px;
  }
}
.cid-ux8FgaGqxj .row {
  justify-content: center;
}
.cid-ux8FgaGqxj .item {
  margin-bottom: 32px;
}
.cid-ux8FgaGqxj .item a {
  display: block;
}
.cid-ux8FgaGqxj .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux8FgaGqxj .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux8FgaGqxj .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux8FgaGqxj .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-ux8FgaGqxj .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux8FgaGqxj .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux8FgaGqxj .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-ux8FgaGqxj .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux8FgaGqxj .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux8FgaGqxj .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux8FgaGqxj .item-title {
  color: #ffffff;
}
.cid-ux8FgaGqxj .mbr-date {
  color: #cacaca;
}
.cid-ux8FgaGqxj .mbr-desc {
  color: #cacaca;
}
.cid-ux8FgaXsuh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux8FgaXsuh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8FgaXsuh .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-ux8FgaXsuh .container {
    padding: 0 16px;
  }
}
.cid-ux8FgaXsuh .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux8FgaXsuh .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8FgaXsuh .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux8FgaXsuh .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8FgaXsuh .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux8FgaXsuh .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux8FgaXsuh .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux8FgaXsuh .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux8FgaXsuh .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux8FgaXsuh .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-ux8FgaXsuh .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux8FgaXsuh .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux8FgaXsuh .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux8FgaXsuh .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux8FgaXsuh .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux8FgaXsuh .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux8FgaXsuh .dragArea.row .form-group .form-control:hover,
.cid-ux8FgaXsuh .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux8FgaXsuh .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux8FgaXsuh .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux8FgaXsuh .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux8FgaXsuh .mbr-title {
  color: #ffffff;
}
.cid-ux8FgaXsuh .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux8FgaXsuh .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux8FgaXsuh .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux8FgaXsuh .list {
  color: #08323C;
}
.cid-ux8FgaXsuh label {
  color: #08323C;
}
.cid-ux8FgaXsuh H3 {
  color: #000000;
}
.cid-ux8FgaXsuh P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-ux8HG8oyhK {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8HG8oyhK H1 {
  text-align: center;
}
.cid-uDmwZhC6l1 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmwZhC6l1 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmwZhC6l1 .video-block {
    width: 100% !important;
  }
}
.cid-ux8HG8IqL4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8HG90XWm {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ux8HG90XWm .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8HG90XWm .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8HG90XWm .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8HG90XWm .box {
  left: 20%;
}
.cid-ux8HG90XWm .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-ux8HG90XWm .mbr-section-text,
.cid-ux8HG90XWm .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-ux8HG90XWm .text-box {
    display: none;
  }
  .cid-ux8HG90XWm .mbr-section-title,
  .cid-ux8HG90XWm .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8HG90XWm .box {
    display: none;
  }
  .cid-ux8HG90XWm .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8HG90XWm .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8HG90XWm .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8HG90XWm .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8HG90XWm .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8HG90XWm .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8HG9fT7d {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8HG9fT7d H1 {
  text-align: center;
}
.cid-ux8HG9twMQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8HG9HXvB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ux8HG9HXvB h2 {
  text-align: left;
}
.cid-ux8HG9HXvB h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8HG9HXvB p {
  color: #767676;
  text-align: left;
}
.cid-ux8HG9HXvB .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8HG9HXvB .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8HG9HXvB .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8HG9HXvB .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8HG9HXvB .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8HG9HXvB .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8HG9HXvB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8HG9HXvB .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8HG9HXvB .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8HG9HXvB H4 {
  color: #fa8706;
  text-align: left;
}
.cid-ux8HG9HXvB P {
  color: #ffffff;
  text-align: left;
}
.cid-ux8HG9HXvB H2 {
  color: #ffffff;
  text-align: center;
}
.cid-ux8HGa2ZHU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux8HGa2ZHU H1 {
  color: #000000;
}
.cid-uxff6Pg008 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxff6Pg008 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxff6Pg008 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxff6Pg008 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxff6Pg008 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxff6Pg008 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxff6Pg008 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxff6Pg008 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxff6Pg008 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxff6Pg008 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxff6Pg008 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxff6Pg008 .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-uxff6Pg008 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxff6Pg008 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxff6Pg008 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxff6Pg008 .mbr-text,
.cid-uxff6Pg008 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8HGaFLI6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ux8HGaFLI6 H1 {
  color: #000000;
}
.cid-uxff9YMzC7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxff9YMzC7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxff9YMzC7 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxff9YMzC7 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxff9YMzC7 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxff9YMzC7 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxff9YMzC7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxff9YMzC7 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxff9YMzC7 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxff9YMzC7 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxff9YMzC7 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxff9YMzC7 .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-uxff9YMzC7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxff9YMzC7 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxff9YMzC7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxff9YMzC7 .mbr-text,
.cid-uxff9YMzC7 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxffaHzvyK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxffaHzvyK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxffaHzvyK .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxffaHzvyK .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxffaHzvyK .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxffaHzvyK .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxffaHzvyK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxffaHzvyK .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxffaHzvyK .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxffaHzvyK .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxffaHzvyK .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxffaHzvyK .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-uxffaHzvyK .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxffaHzvyK .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxffaHzvyK .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxffaHzvyK .mbr-text,
.cid-uxffaHzvyK .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-ux8HGbPwUg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8HGbPwUg H1 {
  color: #000000;
}
.cid-ux8HGc6FJl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ux8HGc6FJl h2 {
  text-align: left;
}
.cid-ux8HGc6FJl h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8HGc6FJl p {
  color: #767676;
  text-align: left;
}
.cid-ux8HGc6FJl .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8HGc6FJl .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8HGc6FJl .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8HGc6FJl .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8HGc6FJl .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8HGc6FJl .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8HGc6FJl .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-ux8HGc6FJl .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-ux8HGc6FJl .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-ux8HGc6FJl .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-ux8HGc6FJl .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8HGcpwG7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8HGcpwG7 H1 {
  color: #000000;
}
.cid-ux8HGcIGrq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ux8HGcIGrq .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-ux8HGcIGrq .text-block {
  position: relative;
  z-index: 0;
}
.cid-ux8HGcIGrq .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-ux8HGcIGrq .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ux8HGcIGrq .box {
  right: 20%;
}
.cid-ux8HGcIGrq .text-box {
  right: 0;
}
.cid-ux8HGcIGrq .mbr-section-title,
.cid-ux8HGcIGrq .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-ux8HGcIGrq .text-box {
    display: none;
  }
  .cid-ux8HGcIGrq .mbr-section-title,
  .cid-ux8HGcIGrq .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-ux8HGcIGrq .box {
    display: none;
  }
  .cid-ux8HGcIGrq .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-ux8HGcIGrq .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ux8HGcIGrq .text-box {
    writing-mode: bt-rl;
  }
}
.cid-ux8HGcIGrq .mbr-section-text {
  color: #c1c1c1;
}
.cid-ux8HGcIGrq .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-ux8HGcIGrq .mbr-section-text DIV {
  text-align: center;
}
.cid-ux8HGd27PV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-ux8HGdjQOT {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ux8HGdjQOT h2 {
  text-align: left;
}
.cid-ux8HGdjQOT h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ux8HGdjQOT p {
  color: #767676;
  text-align: left;
}
.cid-ux8HGdjQOT .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ux8HGdjQOT .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-ux8HGdjQOT .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ux8HGdjQOT .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ux8HGdjQOT .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ux8HGdjQOT .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-ux8HGdjQOT .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8HGdjQOT .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ux8HGdjQOT .card-img span {
    font-size: 40px !important;
  }
}
.cid-ux8HGdjQOT .mbr-text {
  color: #232323;
}
.cid-ux8HGdGewz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-ux8HGdGewz H1 {
  color: #000000;
}
.cid-ux8HGdYwtq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ux8HGdYwtq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8HGdYwtq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux8HGdYwtq .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-ux8HGdYwtq .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ux8HGdYwtq .container {
    padding: 0 26px;
  }
}
.cid-ux8HGdYwtq .row {
  justify-content: center;
}
.cid-ux8HGdYwtq .item {
  margin-bottom: 32px;
}
.cid-ux8HGdYwtq .item a {
  display: block;
}
.cid-ux8HGdYwtq .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-ux8HGdYwtq .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-ux8HGdYwtq .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-ux8HGdYwtq .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-ux8HGdYwtq .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-ux8HGdYwtq .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ux8HGdYwtq .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-ux8HGdYwtq .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-ux8HGdYwtq .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-ux8HGdYwtq .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-ux8HGdYwtq .item-title {
  color: #ffffff;
}
.cid-ux8HGdYwtq .mbr-date {
  color: #cacaca;
}
.cid-ux8HGdYwtq .mbr-desc {
  color: #cacaca;
}
.cid-ux8HGeiRZg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ux8HGeiRZg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8HGeiRZg .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-ux8HGeiRZg .container {
    padding: 0 16px;
  }
}
.cid-ux8HGeiRZg .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-ux8HGeiRZg .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8HGeiRZg .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-ux8HGeiRZg .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ux8HGeiRZg .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-ux8HGeiRZg .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-ux8HGeiRZg .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-ux8HGeiRZg .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-ux8HGeiRZg .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-ux8HGeiRZg .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-ux8HGeiRZg .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-ux8HGeiRZg .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-ux8HGeiRZg .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ux8HGeiRZg .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ux8HGeiRZg .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-ux8HGeiRZg .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-ux8HGeiRZg .dragArea.row .form-group .form-control:hover,
.cid-ux8HGeiRZg .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-ux8HGeiRZg .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-ux8HGeiRZg .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-ux8HGeiRZg .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-ux8HGeiRZg .mbr-title {
  color: #ffffff;
}
.cid-ux8HGeiRZg .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ux8HGeiRZg .mbr-section-subtitle {
  color: #08323C;
}
.cid-ux8HGeiRZg .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-ux8HGeiRZg .list {
  color: #08323C;
}
.cid-ux8HGeiRZg label {
  color: #08323C;
}
.cid-ux8HGeiRZg H3 {
  color: #000000;
}
.cid-ux8HGeiRZg P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwQxPRXMYR {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQxPRXMYR H1 {
  text-align: center;
}
.cid-uDmU585tFG {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmU585tFG .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmU585tFG .video-block {
    width: 100% !important;
  }
}
.cid-uwQxPSglwd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQxPSt90G {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQxPSt90G .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQxPSt90G .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQxPSt90G .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQxPSt90G .box {
  left: 20%;
}
.cid-uwQxPSt90G .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwQxPSt90G .mbr-section-text,
.cid-uwQxPSt90G .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwQxPSt90G .text-box {
    display: none;
  }
  .cid-uwQxPSt90G .mbr-section-title,
  .cid-uwQxPSt90G .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQxPSt90G .box {
    display: none;
  }
  .cid-uwQxPSt90G .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQxPSt90G .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQxPSt90G .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQxPSt90G .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQxPSt90G .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQxPSt90G .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQxPSGgnp {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQxPSGgnp H1 {
  text-align: center;
}
.cid-uwQxPSUIfc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQxPT6VCV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwQxPT6VCV h2 {
  text-align: left;
}
.cid-uwQxPT6VCV h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQxPT6VCV p {
  color: #767676;
  text-align: left;
}
.cid-uwQxPT6VCV .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQxPT6VCV .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQxPT6VCV .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQxPT6VCV .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQxPT6VCV .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQxPT6VCV .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQxPT6VCV .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQxPT6VCV .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQxPT6VCV .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQxPT6VCV H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwQxPT6VCV P {
  color: #ffffff;
  text-align: left;
}
.cid-uwQxPT6VCV H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxl3BIJlMl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxl3BIJlMl H1 {
  color: #000000;
}
.cid-uxl3CITl7f {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl3CITl7f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl3CITl7f .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl3CITl7f .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl3CITl7f .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl3CITl7f .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl3CITl7f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl3CITl7f .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl3CITl7f .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl3CITl7f .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl3CITl7f .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl3CITl7f .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-uxl3CITl7f .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl3CITl7f .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl3CITl7f .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl3CITl7f .mbr-text,
.cid-uxl3CITl7f .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQxPTYyJa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQxPUc9QJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwQxPUc9QJ H1 {
  color: #000000;
}
.cid-uxl3Dyntvr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl3Dyntvr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl3Dyntvr .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl3Dyntvr .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl3Dyntvr .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl3Dyntvr .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl3Dyntvr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl3Dyntvr .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl3Dyntvr .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl3Dyntvr .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl3Dyntvr .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl3Dyntvr .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-uxl3Dyntvr .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl3Dyntvr .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl3Dyntvr .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl3Dyntvr .mbr-text,
.cid-uxl3Dyntvr .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxl3EBkwSm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxl3EBkwSm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxl3EBkwSm .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxl3EBkwSm .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxl3EBkwSm .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxl3EBkwSm .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxl3EBkwSm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxl3EBkwSm .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxl3EBkwSm .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxl3EBkwSm .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxl3EBkwSm .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxl3EBkwSm .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-uxl3EBkwSm .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxl3EBkwSm .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxl3EBkwSm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxl3EBkwSm .mbr-text,
.cid-uxl3EBkwSm .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwQxPVcwD6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQxPVcwD6 H1 {
  color: #000000;
}
.cid-uwQxPVsA63 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwQxPVsA63 h2 {
  text-align: left;
}
.cid-uwQxPVsA63 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQxPVsA63 p {
  color: #767676;
  text-align: left;
}
.cid-uwQxPVsA63 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQxPVsA63 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQxPVsA63 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQxPVsA63 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQxPVsA63 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQxPVsA63 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQxPVsA63 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwQxPVsA63 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwQxPVsA63 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwQxPVsA63 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwQxPVsA63 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQxPVNcVN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwQxPVNcVN H1 {
  color: #000000;
}
.cid-uwQxPW1G5k {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwQxPW1G5k .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwQxPW1G5k .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwQxPW1G5k .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwQxPW1G5k .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwQxPW1G5k .box {
  right: 20%;
}
.cid-uwQxPW1G5k .text-box {
  right: 0;
}
.cid-uwQxPW1G5k .mbr-section-title,
.cid-uwQxPW1G5k .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwQxPW1G5k .text-box {
    display: none;
  }
  .cid-uwQxPW1G5k .mbr-section-title,
  .cid-uwQxPW1G5k .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwQxPW1G5k .box {
    display: none;
  }
  .cid-uwQxPW1G5k .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwQxPW1G5k .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwQxPW1G5k .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwQxPW1G5k .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwQxPW1G5k .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwQxPW1G5k .mbr-section-text DIV {
  text-align: center;
}
.cid-uwQxPWhpKW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwQxPWw8xy {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwQxPWw8xy h2 {
  text-align: left;
}
.cid-uwQxPWw8xy h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwQxPWw8xy p {
  color: #767676;
  text-align: left;
}
.cid-uwQxPWw8xy .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwQxPWw8xy .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwQxPWw8xy .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwQxPWw8xy .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwQxPWw8xy .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwQxPWw8xy .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwQxPWw8xy .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwQxPWw8xy .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwQxPWw8xy .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwQxPWw8xy .mbr-text {
  color: #232323;
}
.cid-uwQxPWMfid {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwQxPWMfid .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQxPWMfid .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQxPWMfid .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwQxPWMfid .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwQxPWMfid .container {
    padding: 0 26px;
  }
}
.cid-uwQxPWMfid .row {
  justify-content: center;
}
.cid-uwQxPWMfid .item {
  margin-bottom: 32px;
}
.cid-uwQxPWMfid .item a {
  display: block;
}
.cid-uwQxPWMfid .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwQxPWMfid .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwQxPWMfid .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwQxPWMfid .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-uwQxPWMfid .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwQxPWMfid .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwQxPWMfid .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-uwQxPWMfid .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwQxPWMfid .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwQxPWMfid .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwQxPWMfid .item-title {
  color: #ffffff;
}
.cid-uwQxPWMfid .mbr-date {
  color: #cacaca;
}
.cid-uwQxPWMfid .mbr-desc {
  color: #cacaca;
}
.cid-uwQxPX5qIy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwQxPX5qIy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQxPX5qIy .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-uwQxPX5qIy .container {
    padding: 0 16px;
  }
}
.cid-uwQxPX5qIy .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwQxPX5qIy .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQxPX5qIy .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwQxPX5qIy .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwQxPX5qIy .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwQxPX5qIy .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwQxPX5qIy .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwQxPX5qIy .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwQxPX5qIy .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwQxPX5qIy .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-uwQxPX5qIy .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwQxPX5qIy .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwQxPX5qIy .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwQxPX5qIy .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwQxPX5qIy .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwQxPX5qIy .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwQxPX5qIy .dragArea.row .form-group .form-control:hover,
.cid-uwQxPX5qIy .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwQxPX5qIy .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwQxPX5qIy .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwQxPX5qIy .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwQxPX5qIy .mbr-title {
  color: #ffffff;
}
.cid-uwQxPX5qIy .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwQxPX5qIy .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwQxPX5qIy .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwQxPX5qIy .list {
  color: #08323C;
}
.cid-uwQxPX5qIy label {
  color: #08323C;
}
.cid-uwQxPX5qIy H3 {
  color: #000000;
}
.cid-uwQxPX5qIy P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwEKVTNGjK {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwEKVTNGjK H1 {
  text-align: center;
}
.cid-uDmMgukapc {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmMgukapc .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmMgukapc .video-block {
    width: 100% !important;
  }
}
.cid-uwEKVU2h48 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwEKVUffzo {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwEKVUffzo .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwEKVUffzo .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwEKVUffzo .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwEKVUffzo .box {
  left: 20%;
}
.cid-uwEKVUffzo .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwEKVUffzo .mbr-section-text,
.cid-uwEKVUffzo .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwEKVUffzo .text-box {
    display: none;
  }
  .cid-uwEKVUffzo .mbr-section-title,
  .cid-uwEKVUffzo .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwEKVUffzo .box {
    display: none;
  }
  .cid-uwEKVUffzo .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwEKVUffzo .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwEKVUffzo .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwEKVUffzo .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwEKVUffzo .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwEKVUffzo .mbr-section-text DIV {
  text-align: center;
}
.cid-uwEKVUrVJq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwEKVUrVJq H1 {
  text-align: center;
}
.cid-uwEKVUCtMZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwEKVUKMJg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwEKVUKMJg h2 {
  text-align: left;
}
.cid-uwEKVUKMJg h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwEKVUKMJg p {
  color: #767676;
  text-align: left;
}
.cid-uwEKVUKMJg .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwEKVUKMJg .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwEKVUKMJg .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwEKVUKMJg .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwEKVUKMJg .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwEKVUKMJg .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwEKVUKMJg .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwEKVUKMJg .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwEKVUKMJg .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwEKVUKMJg H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwEKVUKMJg P {
  color: #ffffff;
  text-align: left;
}
.cid-uwEKVUKMJg H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkIos2wnB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkIos2wnB H1 {
  color: #000000;
}
.cid-uxkIpv1ln0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkIpv1ln0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkIpv1ln0 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkIpv1ln0 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkIpv1ln0 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkIpv1ln0 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkIpv1ln0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkIpv1ln0 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkIpv1ln0 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkIpv1ln0 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkIpv1ln0 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkIpv1ln0 .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-uxkIpv1ln0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkIpv1ln0 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkIpv1ln0 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkIpv1ln0 .mbr-text,
.cid-uxkIpv1ln0 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwEKVVuh1a {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwEKVVuh1a H1 {
  color: #000000;
}
.cid-uxkIqgDQ8X {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkIqgDQ8X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkIqgDQ8X .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkIqgDQ8X .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkIqgDQ8X .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkIqgDQ8X .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkIqgDQ8X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkIqgDQ8X .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkIqgDQ8X .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkIqgDQ8X .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkIqgDQ8X .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkIqgDQ8X .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-uxkIqgDQ8X .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkIqgDQ8X .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkIqgDQ8X .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkIqgDQ8X .mbr-text,
.cid-uxkIqgDQ8X .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkIrfInn7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkIrfInn7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkIrfInn7 .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkIrfInn7 .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkIrfInn7 .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkIrfInn7 .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkIrfInn7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkIrfInn7 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkIrfInn7 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkIrfInn7 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkIrfInn7 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkIrfInn7 .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-uxkIrfInn7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkIrfInn7 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkIrfInn7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkIrfInn7 .mbr-text,
.cid-uxkIrfInn7 .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwEKVWtxKl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwEKVWtxKl H1 {
  color: #000000;
}
.cid-uwEKVWLfUL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwEKVWLfUL h2 {
  text-align: left;
}
.cid-uwEKVWLfUL h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwEKVWLfUL p {
  color: #767676;
  text-align: left;
}
.cid-uwEKVWLfUL .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwEKVWLfUL .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwEKVWLfUL .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwEKVWLfUL .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwEKVWLfUL .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwEKVWLfUL .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwEKVWLfUL .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwEKVWLfUL .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwEKVWLfUL .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwEKVWLfUL .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwEKVWLfUL .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwEKVX2SLn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwEKVX2SLn H1 {
  color: #000000;
}
.cid-uwEKVXerBy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwEKVXerBy .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwEKVXerBy .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwEKVXerBy .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwEKVXerBy .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwEKVXerBy .box {
  right: 20%;
}
.cid-uwEKVXerBy .text-box {
  right: 0;
}
.cid-uwEKVXerBy .mbr-section-title,
.cid-uwEKVXerBy .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwEKVXerBy .text-box {
    display: none;
  }
  .cid-uwEKVXerBy .mbr-section-title,
  .cid-uwEKVXerBy .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwEKVXerBy .box {
    display: none;
  }
  .cid-uwEKVXerBy .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwEKVXerBy .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwEKVXerBy .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwEKVXerBy .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwEKVXerBy .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwEKVXerBy .mbr-section-text DIV {
  text-align: center;
}
.cid-uwEKVXsRZp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwEKVXEBBW {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwEKVXEBBW h2 {
  text-align: left;
}
.cid-uwEKVXEBBW h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwEKVXEBBW p {
  color: #767676;
  text-align: left;
}
.cid-uwEKVXEBBW .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwEKVXEBBW .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwEKVXEBBW .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwEKVXEBBW .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwEKVXEBBW .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwEKVXEBBW .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwEKVXEBBW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwEKVXEBBW .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwEKVXEBBW .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwEKVXEBBW .mbr-text {
  color: #232323;
}
.cid-uwEKVXTgZn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwEKVXTgZn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwEKVXTgZn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwEKVXTgZn .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwEKVXTgZn .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwEKVXTgZn .container {
    padding: 0 26px;
  }
}
.cid-uwEKVXTgZn .row {
  justify-content: center;
}
.cid-uwEKVXTgZn .item {
  margin-bottom: 32px;
}
.cid-uwEKVXTgZn .item a {
  display: block;
}
.cid-uwEKVXTgZn .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwEKVXTgZn .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwEKVXTgZn .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwEKVXTgZn .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-uwEKVXTgZn .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwEKVXTgZn .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwEKVXTgZn .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-uwEKVXTgZn .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwEKVXTgZn .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwEKVXTgZn .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwEKVXTgZn .item-title {
  color: #ffffff;
}
.cid-uwEKVXTgZn .mbr-date {
  color: #cacaca;
}
.cid-uwEKVXTgZn .mbr-desc {
  color: #cacaca;
}
.cid-uwEKVY7z9j {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwEKVY7z9j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwEKVY7z9j .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-uwEKVY7z9j .container {
    padding: 0 16px;
  }
}
.cid-uwEKVY7z9j .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwEKVY7z9j .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwEKVY7z9j .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwEKVY7z9j .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwEKVY7z9j .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwEKVY7z9j .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwEKVY7z9j .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwEKVY7z9j .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwEKVY7z9j .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwEKVY7z9j .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-uwEKVY7z9j .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwEKVY7z9j .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwEKVY7z9j .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwEKVY7z9j .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwEKVY7z9j .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwEKVY7z9j .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwEKVY7z9j .dragArea.row .form-group .form-control:hover,
.cid-uwEKVY7z9j .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwEKVY7z9j .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwEKVY7z9j .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwEKVY7z9j .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwEKVY7z9j .mbr-title {
  color: #ffffff;
}
.cid-uwEKVY7z9j .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwEKVY7z9j .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwEKVY7z9j .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwEKVY7z9j .list {
  color: #08323C;
}
.cid-uwEKVY7z9j label {
  color: #08323C;
}
.cid-uwEKVY7z9j H3 {
  color: #000000;
}
.cid-uwEKVY7z9j P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uwELgpGAsv {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwELgpGAsv H1 {
  text-align: center;
}
.cid-uDmMj0LuEb {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmMj0LuEb .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmMj0LuEb .video-block {
    width: 100% !important;
  }
}
.cid-uwELgpZEL7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwELgqcfH2 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uwELgqcfH2 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwELgqcfH2 .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwELgqcfH2 .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwELgqcfH2 .box {
  left: 20%;
}
.cid-uwELgqcfH2 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uwELgqcfH2 .mbr-section-text,
.cid-uwELgqcfH2 .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uwELgqcfH2 .text-box {
    display: none;
  }
  .cid-uwELgqcfH2 .mbr-section-title,
  .cid-uwELgqcfH2 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwELgqcfH2 .box {
    display: none;
  }
  .cid-uwELgqcfH2 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwELgqcfH2 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwELgqcfH2 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwELgqcfH2 .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwELgqcfH2 .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwELgqcfH2 .mbr-section-text DIV {
  text-align: center;
}
.cid-uwELgqnq2S {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwELgqnq2S H1 {
  text-align: center;
}
.cid-uwELgqxKX9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwELgqHBLr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwELgqHBLr h2 {
  text-align: left;
}
.cid-uwELgqHBLr h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwELgqHBLr p {
  color: #767676;
  text-align: left;
}
.cid-uwELgqHBLr .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwELgqHBLr .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwELgqHBLr .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwELgqHBLr .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwELgqHBLr .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwELgqHBLr .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwELgqHBLr .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwELgqHBLr .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwELgqHBLr .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwELgqHBLr H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uwELgqHBLr P {
  color: #ffffff;
  text-align: left;
}
.cid-uwELgqHBLr H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uxkIRRLKRB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uxkIRRLKRB H1 {
  color: #000000;
}
.cid-uxkIVmipoX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkIVmipoX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkIVmipoX .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkIVmipoX .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkIVmipoX .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkIVmipoX .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkIVmipoX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkIVmipoX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkIVmipoX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkIVmipoX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkIVmipoX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkIVmipoX .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-uxkIVmipoX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkIVmipoX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkIVmipoX .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkIVmipoX .mbr-text,
.cid-uxkIVmipoX .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwELgrzYBx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwELgrzYBx H1 {
  color: #000000;
}
.cid-uxkITqE6XQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkITqE6XQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkITqE6XQ .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkITqE6XQ .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkITqE6XQ .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkITqE6XQ .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkITqE6XQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkITqE6XQ .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkITqE6XQ .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkITqE6XQ .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkITqE6XQ .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkITqE6XQ .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-uxkITqE6XQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkITqE6XQ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkITqE6XQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkITqE6XQ .mbr-text,
.cid-uxkITqE6XQ .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxkIU8Irry {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxkIU8Irry .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxkIU8Irry .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxkIU8Irry .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxkIU8Irry .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxkIU8Irry .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxkIU8Irry .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxkIU8Irry .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxkIU8Irry .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxkIU8Irry .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxkIU8Irry .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxkIU8Irry .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-uxkIU8Irry .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxkIU8Irry .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxkIU8Irry .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxkIU8Irry .mbr-text,
.cid-uxkIU8Irry .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uwELgsBg2h {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwELgsBg2h H1 {
  color: #000000;
}
.cid-uwELgsUltw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uwELgsUltw h2 {
  text-align: left;
}
.cid-uwELgsUltw h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwELgsUltw p {
  color: #767676;
  text-align: left;
}
.cid-uwELgsUltw .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwELgsUltw .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwELgsUltw .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwELgsUltw .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwELgsUltw .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwELgsUltw .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwELgsUltw .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uwELgsUltw .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uwELgsUltw .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uwELgsUltw .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uwELgsUltw .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwELgtd4u8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uwELgtd4u8 H1 {
  color: #000000;
}
.cid-uwELgtv0wD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwELgtv0wD .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uwELgtv0wD .text-block {
  position: relative;
  z-index: 0;
}
.cid-uwELgtv0wD .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uwELgtv0wD .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uwELgtv0wD .box {
  right: 20%;
}
.cid-uwELgtv0wD .text-box {
  right: 0;
}
.cid-uwELgtv0wD .mbr-section-title,
.cid-uwELgtv0wD .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uwELgtv0wD .text-box {
    display: none;
  }
  .cid-uwELgtv0wD .mbr-section-title,
  .cid-uwELgtv0wD .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uwELgtv0wD .box {
    display: none;
  }
  .cid-uwELgtv0wD .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uwELgtv0wD .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwELgtv0wD .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uwELgtv0wD .mbr-section-text {
  color: #c1c1c1;
}
.cid-uwELgtv0wD .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uwELgtv0wD .mbr-section-text DIV {
  text-align: center;
}
.cid-uwELgtMP4k {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uwELgu2eLz {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwELgu2eLz h2 {
  text-align: left;
}
.cid-uwELgu2eLz h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uwELgu2eLz p {
  color: #767676;
  text-align: left;
}
.cid-uwELgu2eLz .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uwELgu2eLz .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uwELgu2eLz .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwELgu2eLz .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uwELgu2eLz .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uwELgu2eLz .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uwELgu2eLz .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uwELgu2eLz .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uwELgu2eLz .card-img span {
    font-size: 40px !important;
  }
}
.cid-uwELgu2eLz .mbr-text {
  color: #232323;
}
.cid-uwELgukOfI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwELgukOfI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwELgukOfI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwELgukOfI .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uwELgukOfI .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uwELgukOfI .container {
    padding: 0 26px;
  }
}
.cid-uwELgukOfI .row {
  justify-content: center;
}
.cid-uwELgukOfI .item {
  margin-bottom: 32px;
}
.cid-uwELgukOfI .item a {
  display: block;
}
.cid-uwELgukOfI .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uwELgukOfI .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uwELgukOfI .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uwELgukOfI .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-uwELgukOfI .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uwELgukOfI .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uwELgukOfI .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-uwELgukOfI .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uwELgukOfI .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uwELgukOfI .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uwELgukOfI .item-title {
  color: #ffffff;
}
.cid-uwELgukOfI .mbr-date {
  color: #cacaca;
}
.cid-uwELgukOfI .mbr-desc {
  color: #cacaca;
}
.cid-uwELguCw85 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uwELguCw85 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwELguCw85 .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-uwELguCw85 .container {
    padding: 0 16px;
  }
}
.cid-uwELguCw85 .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uwELguCw85 .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwELguCw85 .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uwELguCw85 .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwELguCw85 .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwELguCw85 .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwELguCw85 .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uwELguCw85 .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uwELguCw85 .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwELguCw85 .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-uwELguCw85 .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uwELguCw85 .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uwELguCw85 .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uwELguCw85 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uwELguCw85 .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uwELguCw85 .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uwELguCw85 .dragArea.row .form-group .form-control:hover,
.cid-uwELguCw85 .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uwELguCw85 .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uwELguCw85 .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uwELguCw85 .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uwELguCw85 .mbr-title {
  color: #ffffff;
}
.cid-uwELguCw85 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uwELguCw85 .mbr-section-subtitle {
  color: #08323C;
}
.cid-uwELguCw85 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwELguCw85 .list {
  color: #08323C;
}
.cid-uwELguCw85 label {
  color: #08323C;
}
.cid-uwELguCw85 H3 {
  color: #000000;
}
.cid-uwELguCw85 P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
.cid-v3GufliGxP .navbar {
  padding: .5rem 0;
  background: #333333;
  transition: none;
  min-height: 77px;
}
.cid-v3GufliGxP .navbar-dropdown.bg-color.transparent.opened {
  background: #333333;
}
.cid-v3GufliGxP a {
  font-style: normal;
}
.cid-v3GufliGxP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v3GufliGxP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v3GufliGxP .nav-item:focus,
.cid-v3GufliGxP .nav-link:focus {
  outline: none;
}
.cid-v3GufliGxP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v3GufliGxP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v3GufliGxP .menu-logo {
  margin-right: auto;
}
.cid-v3GufliGxP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3GufliGxP .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-v3GufliGxP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3GufliGxP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v3GufliGxP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3GufliGxP .dropdown .dropdown-menu {
  background: #333333;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3GufliGxP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3GufliGxP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3GufliGxP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3GufliGxP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v3GufliGxP button.navbar-toggler:focus {
  outline: none;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v3GufliGxP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v3GufliGxP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v3GufliGxP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v3GufliGxP .collapsed .btn {
  display: flex;
}
.cid-v3GufliGxP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing,
.cid-v3GufliGxP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v3GufliGxP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3GufliGxP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v3GufliGxP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3GufliGxP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v3GufliGxP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v3GufliGxP .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-v3GufliGxP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3GufliGxP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3GufliGxP .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-v3GufliGxP .navbar-expand {
    flex-direction: column;
  }
  .cid-v3GufliGxP img {
    height: 3.8rem !important;
  }
  .cid-v3GufliGxP .btn {
    display: flex;
  }
  .cid-v3GufliGxP button.navbar-toggler {
    display: block;
  }
  .cid-v3GufliGxP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v3GufliGxP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v3GufliGxP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing,
  .cid-v3GufliGxP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v3GufliGxP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3GufliGxP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3GufliGxP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3GufliGxP .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-v3GufliGxP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v3GufliGxP .navbar-collapse {
  flex-basis: auto;
}
.cid-v3GufliGxP .nav-link:hover,
.cid-v3GufliGxP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uvU1DTvur7 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU1DTvur7 H1 {
  text-align: center;
}
.cid-uDmArafiQi {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uDmArafiQi .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uDmArafiQi .video-block {
    width: 100% !important;
  }
}
.cid-uvU1DTSOI3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU1DUcX9j {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uvU1DUcX9j .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU1DUcX9j .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU1DUcX9j .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU1DUcX9j .box {
  left: 20%;
}
.cid-uvU1DUcX9j .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-uvU1DUcX9j .mbr-section-text,
.cid-uvU1DUcX9j .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-uvU1DUcX9j .text-box {
    display: none;
  }
  .cid-uvU1DUcX9j .mbr-section-title,
  .cid-uvU1DUcX9j .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU1DUcX9j .box {
    display: none;
  }
  .cid-uvU1DUcX9j .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU1DUcX9j .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU1DUcX9j .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU1DUcX9j .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU1DUcX9j .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU1DUcX9j .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU1DUxVYv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU1DUxVYv H1 {
  text-align: center;
}
.cid-uvU1DUT8a7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU1DVa1kQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uvU1DVa1kQ h2 {
  text-align: left;
}
.cid-uvU1DVa1kQ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU1DVa1kQ p {
  color: #767676;
  text-align: left;
}
.cid-uvU1DVa1kQ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU1DVa1kQ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU1DVa1kQ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU1DVa1kQ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU1DVa1kQ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU1DVa1kQ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU1DVa1kQ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU1DVa1kQ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU1DVa1kQ .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU1DVa1kQ H4 {
  color: #fa8706;
  text-align: left;
}
.cid-uvU1DVa1kQ P {
  color: #ffffff;
  text-align: left;
}
.cid-uvU1DVa1kQ H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uvUmIVTUEG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvUmIVTUEG H1 {
  color: #000000;
}
.cid-uzkx1szeDd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzkx1szeDd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzkx1szeDd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uzkx1szeDd .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uzkx1szeDd .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uzkx1szeDd .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uzkx1szeDd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzkx1szeDd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uzkx1szeDd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uzkx1szeDd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uzkx1szeDd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uzkx1szeDd .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-uzkx1szeDd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzkx1szeDd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uzkx1szeDd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uzkx1szeDd .mbr-text,
.cid-uzkx1szeDd .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvU1DWifaB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvU1DWifaB H1 {
  color: #000000;
}
.cid-uxgkZlMSSk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgkZlMSSk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgkZlMSSk .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgkZlMSSk .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgkZlMSSk .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgkZlMSSk .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgkZlMSSk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgkZlMSSk .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgkZlMSSk .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgkZlMSSk .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgkZlMSSk .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgkZlMSSk .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-uxgkZlMSSk .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgkZlMSSk .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgkZlMSSk .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgkZlMSSk .mbr-text,
.cid-uxgkZlMSSk .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uxgl01vF5d {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxgl01vF5d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxgl01vF5d .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uxgl01vF5d .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uxgl01vF5d .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uxgl01vF5d .item {
  border-bottom: 1px solid #b1a374;
  max-width: 300px;
}
.cid-uxgl01vF5d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxgl01vF5d .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uxgl01vF5d .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uxgl01vF5d .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uxgl01vF5d .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uxgl01vF5d .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-uxgl01vF5d .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxgl01vF5d .image-wrapper {
    padding: 1rem;
  }
}
.cid-uxgl01vF5d .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uxgl01vF5d .mbr-text,
.cid-uxgl01vF5d .mbr-section-btn {
  color: #221b35;
  text-align: left;
}
.cid-uvUmHyuDP5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvUmHyuDP5 H1 {
  color: #000000;
}
.cid-uvU1DY9lpK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvU1DY9lpK h2 {
  text-align: left;
}
.cid-uvU1DY9lpK h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU1DY9lpK p {
  color: #767676;
  text-align: left;
}
.cid-uvU1DY9lpK .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU1DY9lpK .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU1DY9lpK .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU1DY9lpK .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU1DY9lpK .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU1DY9lpK .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU1DY9lpK .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-uvU1DY9lpK .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-uvU1DY9lpK .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-uvU1DY9lpK .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-uvU1DY9lpK .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU1DYzF1Y {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #dfc979;
}
.cid-uvU1DYzF1Y H1 {
  color: #000000;
}
.cid-uvU1DZ7ICQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uvU1DZ7ICQ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  color: #767676;
}
.cid-uvU1DZ7ICQ .text-block {
  position: relative;
  z-index: 0;
}
.cid-uvU1DZ7ICQ .box {
  width: 25%;
  height: 40%;
  background: #dfc979;
  position: absolute;
  top: 4%;
}
.cid-uvU1DZ7ICQ .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uvU1DZ7ICQ .box {
  right: 20%;
}
.cid-uvU1DZ7ICQ .text-box {
  right: 0;
}
.cid-uvU1DZ7ICQ .mbr-section-title,
.cid-uvU1DZ7ICQ .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-uvU1DZ7ICQ .text-box {
    display: none;
  }
  .cid-uvU1DZ7ICQ .mbr-section-title,
  .cid-uvU1DZ7ICQ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-uvU1DZ7ICQ .box {
    display: none;
  }
  .cid-uvU1DZ7ICQ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uvU1DZ7ICQ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU1DZ7ICQ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-uvU1DZ7ICQ .mbr-section-text {
  color: #c1c1c1;
}
.cid-uvU1DZ7ICQ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-uvU1DZ7ICQ .mbr-section-text DIV {
  text-align: center;
}
.cid-uvU1DZvrkd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #4f4943;
}
.cid-uvU1DZUQSz {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uvU1DZUQSz h2 {
  text-align: left;
}
.cid-uvU1DZUQSz h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uvU1DZUQSz p {
  color: #767676;
  text-align: left;
}
.cid-uvU1DZUQSz .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uvU1DZUQSz .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uvU1DZUQSz .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uvU1DZUQSz .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uvU1DZUQSz .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uvU1DZUQSz .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uvU1DZUQSz .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU1DZUQSz .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uvU1DZUQSz .card-img span {
    font-size: 40px !important;
  }
}
.cid-uvU1DZUQSz .mbr-text {
  color: #232323;
}
.cid-uvU1E0pLx9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvU1E0pLx9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU1E0pLx9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU1E0pLx9 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cid-uvU1E0pLx9 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uvU1E0pLx9 .container {
    padding: 0 26px;
  }
}
.cid-uvU1E0pLx9 .row {
  justify-content: center;
}
.cid-uvU1E0pLx9 .item {
  margin-bottom: 32px;
}
.cid-uvU1E0pLx9 .item a {
  display: block;
}
.cid-uvU1E0pLx9 .item a:hover .item-wrapper .item-img::before {
  opacity: .65;
}
.cid-uvU1E0pLx9 .item a:hover .item-wrapper .item-img .item-content {
  opacity: 1;
  transform: translateX(0);
}
.cid-uvU1E0pLx9 .item a .item-wrapper .item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}
.cid-uvU1E0pLx9 .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-uvU1E0pLx9 .item a .item-wrapper .item-img::before {
    opacity: .65;
  }
}
.cid-uvU1E0pLx9 .item a .item-wrapper .item-img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uvU1E0pLx9 .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-uvU1E0pLx9 .item a .item-wrapper .item-img .item-content {
    opacity: 1;
    transform: translateX(0);
  }
}
.cid-uvU1E0pLx9 .item a .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uvU1E0pLx9 .item a .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uvU1E0pLx9 .item-title {
  color: #ffffff;
}
.cid-uvU1E0pLx9 .mbr-date {
  color: #cacaca;
}
.cid-uvU1E0pLx9 .mbr-desc {
  color: #cacaca;
}
.cid-uvU1E0WVwu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvU1E0WVwu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU1E0WVwu .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-uvU1E0WVwu .container {
    padding: 0 16px;
  }
}
.cid-uvU1E0WVwu .list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-uvU1E0WVwu .list-wrapper .text-wrap .mbr-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU1E0WVwu .list-wrapper .text-wrap .mbr-title {
    margin-bottom: 20px;
  }
}
.cid-uvU1E0WVwu .list-wrapper .text-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uvU1E0WVwu .list-wrapper .text-wrap .mbr-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .cid-uvU1E0WVwu .list-wrapper .list-wrap {
    margin-bottom: 40px;
  }
}
.cid-uvU1E0WVwu .list-wrapper .list-wrap .list {
  margin: 0;
  list-style: none;
  padding-left: 32px;
}
.cid-uvU1E0WVwu .list-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 30px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .cid-uvU1E0WVwu .list-wrapper .list-wrap .list .item-wrap {
    margin-bottom: 20px;
  }
}
.cid-uvU1E0WVwu .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-uvU1E0WVwu .dragArea.row {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uvU1E0WVwu .dragArea.row {
    padding: 20px 16px;
    margin: 0;
  }
}
.cid-uvU1E0WVwu .dragArea.row .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uvU1E0WVwu .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uvU1E0WVwu .dragArea.row .form-group .form-control-label {
  padding-left: 8px;
  margin-bottom: 6px;
}
.cid-uvU1E0WVwu .dragArea.row .form-group .form-control {
  padding: 14px;
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uvU1E0WVwu .dragArea.row .form-group .form-control:hover,
.cid-uvU1E0WVwu .dragArea.row .form-group .form-control:focus {
  border: 1px solid #bbbbbb !important;
  box-shadow: none;
}
.cid-uvU1E0WVwu .dragArea.row .form-group .form-check {
  padding-left: 2rem;
}
.cid-uvU1E0WVwu .dragArea.row .form-group .form-check .form-check-input:checked {
  background-color: #ff3366;
  border-color: #ff3366;
}
.cid-uvU1E0WVwu .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-uvU1E0WVwu .mbr-title {
  color: #ffffff;
}
.cid-uvU1E0WVwu .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uvU1E0WVwu .mbr-section-subtitle {
  color: #08323C;
}
.cid-uvU1E0WVwu .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvU1E0WVwu .list {
  color: #08323C;
}
.cid-uvU1E0WVwu label {
  color: #08323C;
}
.cid-uvU1E0WVwu H3 {
  color: #000000;
}
.cid-uvU1E0WVwu P {
  text-align: right;
}
.cid-v3GqZgyCTg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #465052;
}
.cid-v3GqZgyCTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3GqZgyCTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3GqZgyCTg .row {
  justify-content: space-between;
}
.cid-v3GqZgyCTg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v3GqZgyCTg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:hover,
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v3GqZgyCTg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3GqZgyCTg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v3GqZgyCTg .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-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3GqZgyCTg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v3GqZgyCTg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v3GqZgyCTg .mbr-section-title {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-text {
  color: #ffffff;
}
.cid-v3GqZgyCTg .list {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-copy {
  color: #000000;
}
.cid-v3GqZgyCTg .mbr-desc,
.cid-v3GqZgyCTg .social-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-copy,
.cid-v3GqZgyCTg .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-v3GqZgyCTg .mbr-section-title,
.cid-v3GqZgyCTg .mbr-section-btn {
  color: #efefef;
}
.cid-v3GqZgyCTg .list,
.cid-v3GqZgyCTg .item-wrap {
  color: #ffffff;
}
